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/)

// <smpl>
@@
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);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Sage Weil <sage@newdream.net>

authored by Julia Lawall and committed by Sage Weil 61413c2f 85b5aaa6

+1 -2
+1 -2
fs/ceph/xattr.c
··· 716 716 717 717 /* preallocate memory for xattr name, value, index node */ 718 718 err = -ENOMEM; 719 - newname = kmalloc(name_len + 1, GFP_NOFS); 719 + newname = kmemdup(name, name_len + 1, GFP_NOFS); 720 720 if (!newname) 721 721 goto out; 722 - memcpy(newname, name, name_len + 1); 723 722 724 723 if (val_len) { 725 724 newval = kmalloc(val_len + 1, GFP_NOFS);