diff options
author | Amerigo Wang <xiyou.wangcong@gmail.com> | 2009-09-22 19:45:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:40 -0400 |
commit | acef82b873b6899d80e639317228f2104dae79a2 (patch) | |
tree | 840a9cdb4629f5be3f10d8f507e6785e447d8500 /fs/proc | |
parent | 9b4d1cbef8f41aff2b3e4ca31f566c071fe601de (diff) |
kcore: fix /proc/kcore's stat.st_size
In 9063c61fd5cbd ("x86, 64-bit: Clean up user address masking") Linus
fixed the wrong size of /proc/kcore problem.
But its size still looks insane, since it never equals the size of
physical memory.
Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Tao Ma <tao.ma@oracle.com>
Cc: <mtk.manpages@gmail.com>
Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c index f06f45b42181..0cf8a24cf6c3 100644 --- a/fs/proc/kcore.c +++ b/fs/proc/kcore.c | |||
@@ -374,9 +374,6 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos) | |||
374 | static int __init proc_kcore_init(void) | 374 | static int __init proc_kcore_init(void) |
375 | { | 375 | { |
376 | proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations); | 376 | proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations); |
377 | if (proc_root_kcore) | ||
378 | proc_root_kcore->size = | ||
379 | (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE; | ||
380 | return 0; | 377 | return 0; |
381 | } | 378 | } |
382 | module_init(proc_kcore_init); | 379 | module_init(proc_kcore_init); |