diff options
author | KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> | 2009-09-22 19:45:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:42 -0400 |
commit | 81ac3ad9061dd9cd490ee92f0c5316a14d77ce18 (patch) | |
tree | 1787b8c307b5e70e2763c4e7c0767c2b7e108dc4 /fs/proc | |
parent | 26562c59fa9111ae3ea7b78045889662aac9e5ac (diff) |
kcore: register module area in generic way
Some archs define MODULED_VADDR/MODULES_END which is not in VMALLOC area.
This is handled only in x86-64. This patch make it more generic. And we
can use vread/vwrite to access the area. Fix it.
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/kcore.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c index 78970e6f715c..c6a5ec731972 100644 --- a/fs/proc/kcore.c +++ b/fs/proc/kcore.c | |||
@@ -490,7 +490,7 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos) | |||
490 | if (m == NULL) { | 490 | if (m == NULL) { |
491 | if (clear_user(buffer, tsz)) | 491 | if (clear_user(buffer, tsz)) |
492 | return -EFAULT; | 492 | return -EFAULT; |
493 | } else if (is_vmalloc_addr((void *)start)) { | 493 | } else if (is_vmalloc_or_module_addr((void *)start)) { |
494 | char * elf_buf; | 494 | char * elf_buf; |
495 | 495 | ||
496 | elf_buf = kzalloc(tsz, GFP_KERNEL); | 496 | elf_buf = kzalloc(tsz, GFP_KERNEL); |
@@ -586,6 +586,22 @@ static void __init proc_kcore_text_init(void) | |||
586 | } | 586 | } |
587 | #endif | 587 | #endif |
588 | 588 | ||
589 | #if defined(CONFIG_MODULES) && defined(MODULES_VADDR) | ||
590 | /* | ||
591 | * MODULES_VADDR has no intersection with VMALLOC_ADDR. | ||
592 | */ | ||
593 | struct kcore_list kcore_modules; | ||
594 | static void __init add_modules_range(void) | ||
595 | { | ||
596 | kclist_add(&kcore_modules, (void *)MODULES_VADDR, | ||
597 | MODULES_END - MODULES_VADDR, KCORE_VMALLOC); | ||
598 | } | ||
599 | #else | ||
600 | static void __init add_modules_range(void) | ||
601 | { | ||
602 | } | ||
603 | #endif | ||
604 | |||
589 | static int __init proc_kcore_init(void) | 605 | static int __init proc_kcore_init(void) |
590 | { | 606 | { |
591 | proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, | 607 | proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, |
@@ -595,6 +611,7 @@ static int __init proc_kcore_init(void) | |||
595 | /* Store vmalloc area */ | 611 | /* Store vmalloc area */ |
596 | kclist_add(&kcore_vmalloc, (void *)VMALLOC_START, | 612 | kclist_add(&kcore_vmalloc, (void *)VMALLOC_START, |
597 | VMALLOC_END - VMALLOC_START, KCORE_VMALLOC); | 613 | VMALLOC_END - VMALLOC_START, KCORE_VMALLOC); |
614 | add_modules_range(); | ||
598 | /* Store direct-map area from physical memory map */ | 615 | /* Store direct-map area from physical memory map */ |
599 | kcore_update_ram(); | 616 | kcore_update_ram(); |
600 | hotplug_memory_notifier(kcore_callback, 0); | 617 | hotplug_memory_notifier(kcore_callback, 0); |