diff options
-rw-r--r-- | mm/sparse.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index db6bf3c97ea2..6903c8fc3085 100644 --- a/mm/sparse.c +++ b/mm/sparse.c | |||
@@ -248,10 +248,7 @@ static int __meminit sparse_init_one_section(struct mem_section *ms, | |||
248 | 248 | ||
249 | unsigned long usemap_size(void) | 249 | unsigned long usemap_size(void) |
250 | { | 250 | { |
251 | unsigned long size_bytes; | 251 | return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long); |
252 | size_bytes = roundup(SECTION_BLOCKFLAGS_BITS, 8) / 8; | ||
253 | size_bytes = roundup(size_bytes, sizeof(unsigned long)); | ||
254 | return size_bytes; | ||
255 | } | 252 | } |
256 | 253 | ||
257 | #ifdef CONFIG_MEMORY_HOTPLUG | 254 | #ifdef CONFIG_MEMORY_HOTPLUG |