diff options
author | Jiang Liu <liuj97@gmail.com> | 2013-07-03 18:04:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:38 -0400 |
commit | 1895418189e08c1d1eec4fbdb5fb41d793f57ba5 (patch) | |
tree | 43db8d2e00758e6ad3de06db3832986b4575c312 | |
parent | 808c2c3745975714ecd4da4d68c915de9048b12f (diff) |
mm: kill global variable num_physpages
Now all references to num_physpages have been removed, so kill it.
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Michel Lespinasse <walken@google.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Konstantin Khlebnikov <khlebnikov@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/mm.h | 1 | ||||
-rw-r--r-- | mm/memory.c | 2 | ||||
-rw-r--r-- | mm/nommu.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 09c235301dbb..e550a1773a9e 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -29,7 +29,6 @@ struct writeback_control; | |||
29 | extern unsigned long max_mapnr; | 29 | extern unsigned long max_mapnr; |
30 | #endif | 30 | #endif |
31 | 31 | ||
32 | extern unsigned long num_physpages; | ||
33 | extern unsigned long totalram_pages; | 32 | extern unsigned long totalram_pages; |
34 | extern void * high_memory; | 33 | extern void * high_memory; |
35 | extern int page_cluster; | 34 | extern int page_cluster; |
diff --git a/mm/memory.c b/mm/memory.c index 407533219673..b68812d682b6 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -82,7 +82,6 @@ EXPORT_SYMBOL(max_mapnr); | |||
82 | EXPORT_SYMBOL(mem_map); | 82 | EXPORT_SYMBOL(mem_map); |
83 | #endif | 83 | #endif |
84 | 84 | ||
85 | unsigned long num_physpages; | ||
86 | /* | 85 | /* |
87 | * A number of key systems in x86 including ioremap() rely on the assumption | 86 | * A number of key systems in x86 including ioremap() rely on the assumption |
88 | * that high_memory defines the upper bound on direct map memory, then end | 87 | * that high_memory defines the upper bound on direct map memory, then end |
@@ -92,7 +91,6 @@ unsigned long num_physpages; | |||
92 | */ | 91 | */ |
93 | void * high_memory; | 92 | void * high_memory; |
94 | 93 | ||
95 | EXPORT_SYMBOL(num_physpages); | ||
96 | EXPORT_SYMBOL(high_memory); | 94 | EXPORT_SYMBOL(high_memory); |
97 | 95 | ||
98 | /* | 96 | /* |
diff --git a/mm/nommu.c b/mm/nommu.c index 1898b2fe9da5..e44e6e0a125c 100644 --- a/mm/nommu.c +++ b/mm/nommu.c | |||
@@ -56,7 +56,6 @@ | |||
56 | void *high_memory; | 56 | void *high_memory; |
57 | struct page *mem_map; | 57 | struct page *mem_map; |
58 | unsigned long max_mapnr; | 58 | unsigned long max_mapnr; |
59 | unsigned long num_physpages; | ||
60 | unsigned long highest_memmap_pfn; | 59 | unsigned long highest_memmap_pfn; |
61 | struct percpu_counter vm_committed_as; | 60 | struct percpu_counter vm_committed_as; |
62 | int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */ | 61 | int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */ |
@@ -85,7 +84,6 @@ unsigned long vm_memory_committed(void) | |||
85 | EXPORT_SYMBOL_GPL(vm_memory_committed); | 84 | EXPORT_SYMBOL_GPL(vm_memory_committed); |
86 | 85 | ||
87 | EXPORT_SYMBOL(mem_map); | 86 | EXPORT_SYMBOL(mem_map); |
88 | EXPORT_SYMBOL(num_physpages); | ||
89 | 87 | ||
90 | /* list of mapped, potentially shareable regions */ | 88 | /* list of mapped, potentially shareable regions */ |
91 | static struct kmem_cache *vm_region_jar; | 89 | static struct kmem_cache *vm_region_jar; |