]> git.karo-electronics.de Git - linux-beck.git/commit
dlm: Use kmemdup instead of kmalloc and memcpy
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Thu, 23 Jun 2016 04:52:01 +0000 (10:22 +0530)
committerDavid Teigland <teigland@redhat.com>
Thu, 23 Jun 2016 16:55:58 +0000 (11:55 -0500)
commit5c93f56f770e69c4cf2dbaebecd6bcca205949f9
tree895b867b6fd3d05c9a72fd28c052423921f4521c
parent505ee5283c3d23220dfbf7630bfc4efdc391e743
dlm: Use kmemdup instead of kmalloc and memcpy

Replace calls to kmalloc followed by a memcpy with a direct call to
kmemdup.

The Coccinelle semantic patch used to make this change is as follows:
@@
expression from,to,size,flag;
statement S;
@@

-  to = \(kmalloc\|kzalloc\)(size,flag);
+  to = kmemdup(from,size,flag);
   if (to==NULL || ...) S
-  memcpy(to, from, size);

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lowcomms.c