* [PATCH] uncached allocator: Update for new efi_memmap_walk
@ 2005-09-08 17:46 Martin Hicks
0 siblings, 0 replies; only message in thread
From: Martin Hicks @ 2005-09-08 17:46 UTC (permalink / raw)
To: linux-ia64
Hi Tony and Jes,
Here is an update to the uncached allocator to handle the new address
format from efi_memmap_walk_uc().
Boot tested on sn2 and zx1.
This depends on the efi_memmap_init() fixes that I posted to the Linux
IA64 list a couple of hours ago.
mh
--
Martin Hicks || Silicon Graphics Inc. || mort@sgi.com
Clean up the uncached allocator to use the new efi_memmap_walk().
Signed-off-by: Martin Hicks <mort@sgi.com>
---
arch/ia64/kernel/uncached.c | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
Index: linux-2.6.13/arch/ia64/kernel/uncached.c
=================================--- linux-2.6.13.orig/arch/ia64/kernel/uncached.c 2005-09-08 08:33:31.000000000 -0700
+++ linux-2.6.13/arch/ia64/kernel/uncached.c 2005-09-08 10:08:24.000000000 -0700
@@ -205,23 +205,18 @@ EXPORT_SYMBOL(uncached_free_page);
static int __init
uncached_build_memmap(unsigned long start, unsigned long end, void *arg)
{
- long length;
- unsigned long vstart, vend;
+ long length = end - start;
int node;
- length = end - start;
- vstart = start + __IA64_UNCACHED_OFFSET;
- vend = end + __IA64_UNCACHED_OFFSET;
-
dprintk(KERN_ERR "uncached_build_memmap(%lx %lx)\n", start, end);
- memset((char *)vstart, 0, length);
+ memset((char *)start, 0, length);
- node = paddr_to_nid(start);
+ node = paddr_to_nid(start - __IA64_UNCACHED_OFFSET);
- for (; vstart < vend ; vstart += PAGE_SIZE) {
- dprintk(KERN_INFO "sticking %lx into the pool!\n", vstart);
- gen_pool_free(uncached_pool[node], vstart, PAGE_SIZE);
+ for (; start < end ; start += PAGE_SIZE) {
+ dprintk(KERN_INFO "sticking %lx into the pool!\n", start);
+ gen_pool_free(uncached_pool[node], start, PAGE_SIZE);
}
return 0;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-09-08 17:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-08 17:46 [PATCH] uncached allocator: Update for new efi_memmap_walk Martin Hicks
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox