diff options
author | Wanlong Gao <wanlong.gao@gmail.com> | 2016-10-07 20:01:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-07 21:46:29 -0400 |
commit | 914a051654c5401cb216a939e214e17ec018b6a9 (patch) | |
tree | 0a4415bbe49e60da7fb4a0f508e6d311c250bdcd | |
parent | 19938e350adc60f3b9381ae6fc68da40f7d1a9f6 (diff) |
mm: nobootmem: move the comment of free_all_bootmem
Commit b4def3509d18 ("mm, nobootmem: clean-up of free_low_memory_core_early()")
removed the unnecessary nodeid argument, after that, this comment
becomes more confused. We should move it to the right place.
Fixes: b4def3509d18c1db9 ("mm, nobootmem: clean-up of free_low_memory_core_early()")
Link: http://lkml.kernel.org/r/1473996082-14603-1-git-send-email-wanlong.gao@gmail.com
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/nobootmem.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/nobootmem.c b/mm/nobootmem.c index 490d46abddad..ba609b684d7a 100644 --- a/mm/nobootmem.c +++ b/mm/nobootmem.c | |||
@@ -137,6 +137,11 @@ static unsigned long __init free_low_memory_core_early(void) | |||
137 | for_each_reserved_mem_region(i, &start, &end) | 137 | for_each_reserved_mem_region(i, &start, &end) |
138 | reserve_bootmem_region(start, end); | 138 | reserve_bootmem_region(start, end); |
139 | 139 | ||
140 | /* | ||
141 | * We need to use NUMA_NO_NODE instead of NODE_DATA(0)->node_id | ||
142 | * because in some case like Node0 doesn't have RAM installed | ||
143 | * low ram will be on Node1 | ||
144 | */ | ||
140 | for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &start, &end, | 145 | for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &start, &end, |
141 | NULL) | 146 | NULL) |
142 | count += __free_memory_core(start, end); | 147 | count += __free_memory_core(start, end); |
@@ -194,11 +199,6 @@ unsigned long __init free_all_bootmem(void) | |||
194 | 199 | ||
195 | reset_all_zones_managed_pages(); | 200 | reset_all_zones_managed_pages(); |
196 | 201 | ||
197 | /* | ||
198 | * We need to use NUMA_NO_NODE instead of NODE_DATA(0)->node_id | ||
199 | * because in some case like Node0 doesn't have RAM installed | ||
200 | * low ram will be on Node1 | ||
201 | */ | ||
202 | pages = free_low_memory_core_early(); | 202 | pages = free_low_memory_core_early(); |
203 | totalram_pages += pages; | 203 | totalram_pages += pages; |
204 | 204 | ||