From 23b97e408eae5389cf0dc6cc343e20a54a226b62 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Mon, 29 Apr 2013 15:08:08 -0700 Subject: [PATCH] --- yaml --- r: 365429 b: refs/heads/master c: 3c743a7f7b682dedef188664514c0ea82e232742 h: refs/heads/master i: 365427: 2ebebbf3b13ace417222222763126b504688c630 v: v3 --- [refs] | 2 +- trunk/fs/proc/kcore.c | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 873221edd1ad..19585e3b2276 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 6e259e7dc482d4d5e2701259ddc85ffebd957502 +refs/heads/master: 3c743a7f7b682dedef188664514c0ea82e232742 diff --git a/trunk/fs/proc/kcore.c b/trunk/fs/proc/kcore.c index eda6f017f272..f6a13f489e30 100644 --- a/trunk/fs/proc/kcore.c +++ b/trunk/fs/proc/kcore.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -564,7 +565,6 @@ static const struct file_operations proc_kcore_operations = { .llseek = default_llseek, }; -#ifdef CONFIG_MEMORY_HOTPLUG /* just remember that we have to update kcore */ static int __meminit kcore_callback(struct notifier_block *self, unsigned long action, void *arg) @@ -578,8 +578,11 @@ static int __meminit kcore_callback(struct notifier_block *self, } return NOTIFY_OK; } -#endif +static struct notifier_block kcore_callback_nb __meminitdata = { + .notifier_call = kcore_callback, + .priority = 0, +}; static struct kcore_list kcore_vmalloc; @@ -631,7 +634,7 @@ static int __init proc_kcore_init(void) add_modules_range(); /* Store direct-map area from physical memory map */ kcore_update_ram(); - hotplug_memory_notifier(kcore_callback, 0); + register_hotmemory_notifier(&kcore_callback_nb); return 0; }