diff options
-rw-r--r-- | fs/proc/kcore.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c index e5e69aff6c69..86c67eee439f 100644 --- a/fs/proc/kcore.c +++ b/fs/proc/kcore.c | |||
@@ -157,7 +157,8 @@ static int kcore_update_ram(void) | |||
157 | 157 | ||
158 | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 158 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
159 | /* calculate vmemmap's address from given system ram pfn and register it */ | 159 | /* calculate vmemmap's address from given system ram pfn and register it */ |
160 | int get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) | 160 | static int |
161 | get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) | ||
161 | { | 162 | { |
162 | unsigned long pfn = __pa(ent->addr) >> PAGE_SHIFT; | 163 | unsigned long pfn = __pa(ent->addr) >> PAGE_SHIFT; |
163 | unsigned long nr_pages = ent->size >> PAGE_SHIFT; | 164 | unsigned long nr_pages = ent->size >> PAGE_SHIFT; |
@@ -189,7 +190,8 @@ int get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) | |||
189 | 190 | ||
190 | } | 191 | } |
191 | #else | 192 | #else |
192 | int get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) | 193 | static int |
194 | get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) | ||
193 | { | 195 | { |
194 | return 1; | 196 | return 1; |
195 | } | 197 | } |