diff options
author | Julia Lawall <julia@diku.dk> | 2010-10-17 19:55:21 (GMT) |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-10-20 22:38:26 (GMT) |
commit | 61413c2f594e6b63db2b14c70c2e7d8cf02f9c00 (patch) | |
tree | 2201b24eafc589067890a681a5e4e3431f8decdc /fs/freevxfs | |
parent | 85b5aaa624aac568b8a3a88dbe4de6628c7cc527 (diff) | |
download | linux-61413c2f594e6b63db2b14c70c2e7d8cf02f9c00.tar.xz |
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>
Diffstat (limited to 'fs/freevxfs')
0 files changed, 0 insertions, 0 deletions