diff options
| author | Vivek Goyal <[email protected]> | 2006-04-10 22:54:10 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-04-11 06:18:42 -0700 |
| commit | 80e8ff634169be3fc2ac48f258cc7638e898cd46 (patch) | |
| tree | 481b805fedc77b28183ae2be0f114d50d4163bdb /include/linux | |
| parent | 4c416ab71164dc8d3f800a942fb18c4e67f67897 (diff) | |
[PATCH] kdump proc vmcore size oveflow fix
A couple of /proc/vmcore data structures overflow with 32bit systems having
memory more than 4G. This patch fixes those.
Signed-off-by: Ken'ichi Ohmichi <[email protected]>
Signed-off-by: Vivek Goyal <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/proc_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 135871df9911..4b47a0253425 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -79,7 +79,7 @@ struct kcore_list { struct vmcore { struct list_head list; unsigned long long paddr; - unsigned long size; + unsigned long long size; loff_t offset; }; |