Commit eeb65d9c authored by Alexandru Gheorghiu's avatar Alexandru Gheorghiu Committed by Tony Luck

fs: pstore: Replaced calls to kmalloc and memcpy with kmemdup

Replaced calls to kmalloc and memcpy with a single call to kmemdup.
This patch was found using coccicheck.
Signed-off-by: default avatarAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent f6161aa1
...@@ -156,10 +156,9 @@ static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type, ...@@ -156,10 +156,9 @@ static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
time->tv_nsec = 0; time->tv_nsec = 0;
size = persistent_ram_old_size(prz); size = persistent_ram_old_size(prz);
*buf = kmalloc(size, GFP_KERNEL); *buf = kmemdup(persistent_ram_old(prz), size, GFP_KERNEL);
if (*buf == NULL) if (*buf == NULL)
return -ENOMEM; return -ENOMEM;
memcpy(*buf, persistent_ram_old(prz), size);
return size; return size;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment