aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/bootmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/bootmem.c b/mm/bootmem.c
index 1a77012ecdb..3e6f152f117 100644
--- a/mm/bootmem.c
+++ b/mm/bootmem.c
@@ -56,7 +56,7 @@ early_param("bootmem_debug", bootmem_debug_setup);
56 56
57static unsigned long __init bootmap_bytes(unsigned long pages) 57static unsigned long __init bootmap_bytes(unsigned long pages)
58{ 58{
59 unsigned long bytes = (pages + 7) / 8; 59 unsigned long bytes = DIV_ROUND_UP(pages, 8);
60 60
61 return ALIGN(bytes, sizeof(long)); 61 return ALIGN(bytes, sizeof(long));
62} 62}
@@ -197,7 +197,7 @@ static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
197 idx = start - bdata->node_min_pfn; 197 idx = start - bdata->node_min_pfn;
198 vec = ~map[idx / BITS_PER_LONG]; 198 vec = ~map[idx / BITS_PER_LONG];
199 199
200 if (aligned && vec == ~0UL && start + BITS_PER_LONG < end) { 200 if (aligned && vec == ~0UL && start + BITS_PER_LONG <= end) {
201 int order = ilog2(BITS_PER_LONG); 201 int order = ilog2(BITS_PER_LONG);
202 202
203 __free_pages_bootmem(pfn_to_page(start), order); 203 __free_pages_bootmem(pfn_to_page(start), order);