diff options
author | Wanpeng Li <liwanp@linux.vnet.ibm.com> | 2012-10-08 16:32:24 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-09 16:22:47 +0900 |
commit | f2d52fe51c8c0a18cf5fbe583bad51090d12c146 (patch) | |
tree | ab7ffa1804c4d97f6aed88e02cb5fa7a19021e75 /include/linux/memblock.h | |
parent | e9d24ad30fc5c4c601824fb39712350b053ca812 (diff) | |
download | op-kernel-dev-f2d52fe51c8c0a18cf5fbe583bad51090d12c146.zip op-kernel-dev-f2d52fe51c8c0a18cf5fbe583bad51090d12c146.tar.gz |
mm/memblock: cleanup early_node_map[] related comments
Commit 0ee332c14518 ("memblock: Kill early_node_map[]") removed
early_node_map[]. Clean up the comments to comply with that change.
Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Gavin Shan <shangw@linux.vnet.ibm.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/memblock.h')
-rw-r--r-- | include/linux/memblock.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index 19dc455..569d67d 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h @@ -70,8 +70,7 @@ void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn, * @p_end: ptr to ulong for end pfn of the range, can be %NULL * @p_nid: ptr to int for nid of the range, can be %NULL * - * Walks over configured memory ranges. Available after early_node_map is - * populated. + * Walks over configured memory ranges. */ #define for_each_mem_pfn_range(i, nid, p_start, p_end, p_nid) \ for (i = -1, __next_mem_pfn_range(&i, nid, p_start, p_end, p_nid); \ |