diff options
| author | David S. Miller <[email protected]> | 2008-05-14 23:10:33 -0700 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-05-16 13:34:35 -0700 |
| commit | 7047901ec7d6eca97cf66f54b8a4197bb0754f40 (patch) | |
| tree | be3a09bf6d9943bbbe8ecee55bcd4d3de55a228c | |
| parent | f26a3988917913b3d11b2bd741601a2c64ab9204 (diff) | |
sparc64: Fix lmb_reserve() args in find_ramdisk().
This fixes the missing ram regression reported by
Mikael Pettersson <[email protected]>, much thanks for
all of this help in diagnosing this.
The second argument to lmb_reserve() is a size,
not an end address bounds.
Tested-by: Mikael Pettersson <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | arch/sparc64/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c index a9828d748e2c..3c7b9471eafb 100644 --- a/arch/sparc64/mm/init.c +++ b/arch/sparc64/mm/init.c @@ -768,7 +768,7 @@ static void __init find_ramdisk(unsigned long phys_base) initrd_start = ramdisk_image; initrd_end = ramdisk_image + sparc_ramdisk_size; - lmb_reserve(initrd_start, initrd_end); + lmb_reserve(initrd_start, sparc_ramdisk_size); initrd_start += PAGE_OFFSET; initrd_end += PAGE_OFFSET; |