diff options
| -rw-r--r-- | fs/proc/vmcore.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index 5edcc3f92ba7..0872afa58d39 100644 --- a/fs/proc/vmcore.c +++ b/fs/proc/vmcore.c | |||
| @@ -166,12 +166,7 @@ static const struct file_operations proc_vmcore_operations = { | |||
| 166 | 166 | ||
| 167 | static struct vmcore* __init get_new_element(void) | 167 | static struct vmcore* __init get_new_element(void) |
| 168 | { | 168 | { |
| 169 | struct vmcore *p; | 169 | return kzalloc(sizeof(struct vmcore), GFP_KERNEL); |
| 170 | |||
| 171 | p = kmalloc(sizeof(*p), GFP_KERNEL); | ||
| 172 | if (p) | ||
| 173 | memset(p, 0, sizeof(*p)); | ||
| 174 | return p; | ||
| 175 | } | 170 | } |
| 176 | 171 | ||
| 177 | static u64 __init get_vmcore_size_elf64(char *elfptr) | 172 | static u64 __init get_vmcore_size_elf64(char *elfptr) |
