aboutsummaryrefslogtreecommitdiffstats
path: root/fs/pstore
diff options
context:
space:
mode:
authorAlexandru Gheorghiu <gheorghiuandru@gmail.com>2013-03-09 06:57:28 -0500
committerAnton Vorontsov <anton@enomsg.org>2013-03-18 22:38:26 -0400
commitc53026722b5e5aaaf434565ddbe4d918c7d2a80d (patch)
tree800f9177c746f5c67bee1c4251fbd9b5c25caaa1 /fs/pstore
parenta937536b868b8369b98967929045f1df54234323 (diff)
pstore: Replace 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: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Acked-by: Kees Cook <keescook@chromium.org> Signed-off-by: Anton Vorontsov <anton@enomsg.org>
Diffstat (limited to 'fs/pstore')
-rw-r--r--fs/pstore/ram.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index 288f068740f6..38babb3a9384 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -156,10 +156,9 @@ static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
156 time->tv_nsec = 0; 156 time->tv_nsec = 0;
157 157
158 size = persistent_ram_old_size(prz); 158 size = persistent_ram_old_size(prz);
159 *buf = kmalloc(size, GFP_KERNEL); 159 *buf = kmemdup(persistent_ram_old(prz), size, GFP_KERNEL);
160 if (*buf == NULL) 160 if (*buf == NULL)
161 return -ENOMEM; 161 return -ENOMEM;
162 memcpy(*buf, persistent_ram_old(prz), size);
163 162
164 return size; 163 return size;
165} 164}