diff options
author | Dean Nelson <dcn@sgi.com> | 2008-04-25 16:22:19 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-04-29 16:49:01 -0400 |
commit | e4a064dfa2b242519a9f06f9a1e58c27bf0c371b (patch) | |
tree | 671214b5b256e4b397ce321346d58a551845fe68 | |
parent | e617fce64e5faea149fcf3bffc1b42e4ba29e7e5 (diff) |
[IA64] allocate multiple contiguous pages via uncached allocator
Enable the uncached allocator to allocate multiple pages of contiguous
uncached memory.
Signed-off-by: Dean Nelson <dcn@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | arch/ia64/kernel/uncached.c | 23 | ||||
-rw-r--r-- | drivers/char/mspec.c | 12 | ||||
-rw-r--r-- | drivers/misc/sgi-xp/xpc_partition.c | 4 | ||||
-rw-r--r-- | include/asm-ia64/uncached.h | 6 |
4 files changed, 24 insertions, 21 deletions
diff --git a/arch/ia64/kernel/uncached.c b/arch/ia64/kernel/uncached.c index 2a90c32024f4..e77995a6e3ed 100644 --- a/arch/ia64/kernel/uncached.c +++ b/arch/ia64/kernel/uncached.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001-2006 Silicon Graphics, Inc. All rights reserved. | 2 | * Copyright (C) 2001-2008 Silicon Graphics, Inc. All rights reserved. |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or modify it | 4 | * This program is free software; you can redistribute it and/or modify it |
5 | * under the terms of version 2 of the GNU General Public License | 5 | * under the terms of version 2 of the GNU General Public License |
@@ -177,12 +177,13 @@ failed: | |||
177 | * uncached_alloc_page | 177 | * uncached_alloc_page |
178 | * | 178 | * |
179 | * @starting_nid: node id of node to start with, or -1 | 179 | * @starting_nid: node id of node to start with, or -1 |
180 | * @n_pages: number of contiguous pages to allocate | ||
180 | * | 181 | * |
181 | * Allocate 1 uncached page. Allocates on the requested node. If no | 182 | * Allocate the specified number of contiguous uncached pages on the |
182 | * uncached pages are available on the requested node, roundrobin starting | 183 | * the requested node. If not enough contiguous uncached pages are available |
183 | * with the next higher node. | 184 | * on the requested node, roundrobin starting with the next higher node. |
184 | */ | 185 | */ |
185 | unsigned long uncached_alloc_page(int starting_nid) | 186 | unsigned long uncached_alloc_page(int starting_nid, int n_pages) |
186 | { | 187 | { |
187 | unsigned long uc_addr; | 188 | unsigned long uc_addr; |
188 | struct uncached_pool *uc_pool; | 189 | struct uncached_pool *uc_pool; |
@@ -202,7 +203,8 @@ unsigned long uncached_alloc_page(int starting_nid) | |||
202 | if (uc_pool->pool == NULL) | 203 | if (uc_pool->pool == NULL) |
203 | continue; | 204 | continue; |
204 | do { | 205 | do { |
205 | uc_addr = gen_pool_alloc(uc_pool->pool, PAGE_SIZE); | 206 | uc_addr = gen_pool_alloc(uc_pool->pool, |
207 | n_pages * PAGE_SIZE); | ||
206 | if (uc_addr != 0) | 208 | if (uc_addr != 0) |
207 | return uc_addr; | 209 | return uc_addr; |
208 | } while (uncached_add_chunk(uc_pool, nid) == 0); | 210 | } while (uncached_add_chunk(uc_pool, nid) == 0); |
@@ -217,11 +219,12 @@ EXPORT_SYMBOL(uncached_alloc_page); | |||
217 | /* | 219 | /* |
218 | * uncached_free_page | 220 | * uncached_free_page |
219 | * | 221 | * |
220 | * @uc_addr: uncached address of page to free | 222 | * @uc_addr: uncached address of first page to free |
223 | * @n_pages: number of contiguous pages to free | ||
221 | * | 224 | * |
222 | * Free a single uncached page. | 225 | * Free the specified number of uncached pages. |
223 | */ | 226 | */ |
224 | void uncached_free_page(unsigned long uc_addr) | 227 | void uncached_free_page(unsigned long uc_addr, int n_pages) |
225 | { | 228 | { |
226 | int nid = paddr_to_nid(uc_addr - __IA64_UNCACHED_OFFSET); | 229 | int nid = paddr_to_nid(uc_addr - __IA64_UNCACHED_OFFSET); |
227 | struct gen_pool *pool = uncached_pools[nid].pool; | 230 | struct gen_pool *pool = uncached_pools[nid].pool; |
@@ -232,7 +235,7 @@ void uncached_free_page(unsigned long uc_addr) | |||
232 | if ((uc_addr & (0XFUL << 60)) != __IA64_UNCACHED_OFFSET) | 235 | if ((uc_addr & (0XFUL << 60)) != __IA64_UNCACHED_OFFSET) |
233 | panic("uncached_free_page invalid address %lx\n", uc_addr); | 236 | panic("uncached_free_page invalid address %lx\n", uc_addr); |
234 | 237 | ||
235 | gen_pool_free(pool, uc_addr, PAGE_SIZE); | 238 | gen_pool_free(pool, uc_addr, n_pages * PAGE_SIZE); |
236 | } | 239 | } |
237 | EXPORT_SYMBOL(uncached_free_page); | 240 | EXPORT_SYMBOL(uncached_free_page); |
238 | 241 | ||
diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c index ff146c2b08fd..fe2a95b5d3c0 100644 --- a/drivers/char/mspec.c +++ b/drivers/char/mspec.c | |||
@@ -180,7 +180,7 @@ mspec_close(struct vm_area_struct *vma) | |||
180 | my_page = vdata->maddr[index]; | 180 | my_page = vdata->maddr[index]; |
181 | vdata->maddr[index] = 0; | 181 | vdata->maddr[index] = 0; |
182 | if (!mspec_zero_block(my_page, PAGE_SIZE)) | 182 | if (!mspec_zero_block(my_page, PAGE_SIZE)) |
183 | uncached_free_page(my_page); | 183 | uncached_free_page(my_page, 1); |
184 | else | 184 | else |
185 | printk(KERN_WARNING "mspec_close(): " | 185 | printk(KERN_WARNING "mspec_close(): " |
186 | "failed to zero page %ld\n", my_page); | 186 | "failed to zero page %ld\n", my_page); |
@@ -209,7 +209,7 @@ mspec_nopfn(struct vm_area_struct *vma, unsigned long address) | |||
209 | index = (address - vdata->vm_start) >> PAGE_SHIFT; | 209 | index = (address - vdata->vm_start) >> PAGE_SHIFT; |
210 | maddr = (volatile unsigned long) vdata->maddr[index]; | 210 | maddr = (volatile unsigned long) vdata->maddr[index]; |
211 | if (maddr == 0) { | 211 | if (maddr == 0) { |
212 | maddr = uncached_alloc_page(numa_node_id()); | 212 | maddr = uncached_alloc_page(numa_node_id(), 1); |
213 | if (maddr == 0) | 213 | if (maddr == 0) |
214 | return NOPFN_OOM; | 214 | return NOPFN_OOM; |
215 | 215 | ||
@@ -218,7 +218,7 @@ mspec_nopfn(struct vm_area_struct *vma, unsigned long address) | |||
218 | vdata->count++; | 218 | vdata->count++; |
219 | vdata->maddr[index] = maddr; | 219 | vdata->maddr[index] = maddr; |
220 | } else { | 220 | } else { |
221 | uncached_free_page(maddr); | 221 | uncached_free_page(maddr, 1); |
222 | maddr = vdata->maddr[index]; | 222 | maddr = vdata->maddr[index]; |
223 | } | 223 | } |
224 | spin_unlock(&vdata->lock); | 224 | spin_unlock(&vdata->lock); |
@@ -367,7 +367,7 @@ mspec_init(void) | |||
367 | int nasid; | 367 | int nasid; |
368 | unsigned long phys; | 368 | unsigned long phys; |
369 | 369 | ||
370 | scratch_page[nid] = uncached_alloc_page(nid); | 370 | scratch_page[nid] = uncached_alloc_page(nid, 1); |
371 | if (scratch_page[nid] == 0) | 371 | if (scratch_page[nid] == 0) |
372 | goto free_scratch_pages; | 372 | goto free_scratch_pages; |
373 | phys = __pa(scratch_page[nid]); | 373 | phys = __pa(scratch_page[nid]); |
@@ -414,7 +414,7 @@ mspec_init(void) | |||
414 | free_scratch_pages: | 414 | free_scratch_pages: |
415 | for_each_node(nid) { | 415 | for_each_node(nid) { |
416 | if (scratch_page[nid] != 0) | 416 | if (scratch_page[nid] != 0) |
417 | uncached_free_page(scratch_page[nid]); | 417 | uncached_free_page(scratch_page[nid], 1); |
418 | } | 418 | } |
419 | return ret; | 419 | return ret; |
420 | } | 420 | } |
@@ -431,7 +431,7 @@ mspec_exit(void) | |||
431 | 431 | ||
432 | for_each_node(nid) { | 432 | for_each_node(nid) { |
433 | if (scratch_page[nid] != 0) | 433 | if (scratch_page[nid] != 0) |
434 | uncached_free_page(scratch_page[nid]); | 434 | uncached_free_page(scratch_page[nid], 1); |
435 | } | 435 | } |
436 | } | 436 | } |
437 | } | 437 | } |
diff --git a/drivers/misc/sgi-xp/xpc_partition.c b/drivers/misc/sgi-xp/xpc_partition.c index 27e200ec5826..acd3fd4285d7 100644 --- a/drivers/misc/sgi-xp/xpc_partition.c +++ b/drivers/misc/sgi-xp/xpc_partition.c | |||
@@ -211,7 +211,7 @@ xpc_rsvd_page_init(void) | |||
211 | */ | 211 | */ |
212 | amos_page = xpc_vars->amos_page; | 212 | amos_page = xpc_vars->amos_page; |
213 | if (amos_page == NULL) { | 213 | if (amos_page == NULL) { |
214 | amos_page = (AMO_t *)TO_AMO(uncached_alloc_page(0)); | 214 | amos_page = (AMO_t *)TO_AMO(uncached_alloc_page(0, 1)); |
215 | if (amos_page == NULL) { | 215 | if (amos_page == NULL) { |
216 | dev_err(xpc_part, "can't allocate page of AMOs\n"); | 216 | dev_err(xpc_part, "can't allocate page of AMOs\n"); |
217 | return NULL; | 217 | return NULL; |
@@ -230,7 +230,7 @@ xpc_rsvd_page_init(void) | |||
230 | dev_err(xpc_part, "can't change memory " | 230 | dev_err(xpc_part, "can't change memory " |
231 | "protections\n"); | 231 | "protections\n"); |
232 | uncached_free_page(__IA64_UNCACHED_OFFSET | | 232 | uncached_free_page(__IA64_UNCACHED_OFFSET | |
233 | TO_PHYS((u64)amos_page)); | 233 | TO_PHYS((u64)amos_page), 1); |
234 | return NULL; | 234 | return NULL; |
235 | } | 235 | } |
236 | } | 236 | } |
diff --git a/include/asm-ia64/uncached.h b/include/asm-ia64/uncached.h index b82d923b73c1..13d7e65ca3cc 100644 --- a/include/asm-ia64/uncached.h +++ b/include/asm-ia64/uncached.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001-2005 Silicon Graphics, Inc. All rights reserved. | 2 | * Copyright (C) 2001-2008 Silicon Graphics, Inc. All rights reserved. |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or modify it | 4 | * This program is free software; you can redistribute it and/or modify it |
5 | * under the terms of version 2 of the GNU General Public License | 5 | * under the terms of version 2 of the GNU General Public License |
@@ -8,5 +8,5 @@ | |||
8 | * Prototypes for the uncached page allocator | 8 | * Prototypes for the uncached page allocator |
9 | */ | 9 | */ |
10 | 10 | ||
11 | extern unsigned long uncached_alloc_page(int nid); | 11 | extern unsigned long uncached_alloc_page(int starting_nid, int n_pages); |
12 | extern void uncached_free_page(unsigned long); | 12 | extern void uncached_free_page(unsigned long uc_addr, int n_pages); |