diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-03-15 22:36:53 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 04:55:34 -0400 |
commit | 3996465392fd1632b671707d16bbc96a9481cfe2 (patch) | |
tree | e280c76bde2ac8cdc66b90171d774901aa408744 /arch/sparc64/mm | |
parent | b93f2620231d4641bdbaaa952d3e8890687124bb (diff) |
[SPARC64]: Use bootmem_bootmap_pages() in choose_bootmap_pfn().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/mm')
-rw-r--r-- | arch/sparc64/mm/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c index df4e37e0b0fc..40276189c107 100644 --- a/arch/sparc64/mm/init.c +++ b/arch/sparc64/mm/init.c | |||
@@ -770,8 +770,8 @@ static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn, | |||
770 | unsigned long avoid_start, avoid_end, bootmap_size; | 770 | unsigned long avoid_start, avoid_end, bootmap_size; |
771 | int i; | 771 | int i; |
772 | 772 | ||
773 | bootmap_size = ((end_pfn - start_pfn) + 7) / 8; | 773 | bootmap_size = bootmem_bootmap_pages(end_pfn - start_pfn); |
774 | bootmap_size = ALIGN(bootmap_size, sizeof(long)); | 774 | bootmap_size <<= PAGE_SHIFT; |
775 | 775 | ||
776 | avoid_start = avoid_end = 0; | 776 | avoid_start = avoid_end = 0; |
777 | #ifdef CONFIG_BLK_DEV_INITRD | 777 | #ifdef CONFIG_BLK_DEV_INITRD |