From: Julia Lawall Date: Sun, 17 Oct 2010 19:55:21 +0000 (+0200) Subject: fs/ceph/xattr.c: Use kmemdup X-Git-Tag: v2.6.37-rc1~221^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61413c2f594e6b63db2b14c70c2e7d8cf02f9c00;p=pandora-kernel.git fs/ceph/xattr.c: Use kmemdup Convert a sequence of kmalloc and memcpy to use kmemdup. The semantic patch that performs this transformation is: (http://coccinelle.lip6.fr/) // @@ expression a,flag,len; expression arg,e1,e2; statement S; @@ a = - \(kmalloc\|kzalloc\)(len,flag) + kmemdup(arg,len,flag) <... when != a if (a == NULL || ...) S ...> - memcpy(a,arg,len+1); // Signed-off-by: Julia Lawall Signed-off-by: Sage Weil --- Reading git-diff-tree failed