diff options
author | Julia Lawall <julia@diku.dk> | 2010-10-17 23:56:15 +0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-10-25 04:33:15 +0400 |
commit | 04aadf36de625647c72ec24c7e901896dd2a99e6 (patch) | |
tree | ea18c6ebb29229e9412748b16b438cefd28590c0 /arch/s390 | |
parent | 334e5f56f176e19f7a85c23152bd7901d2991380 (diff) | |
download | linux-04aadf36de625647c72ec24c7e901896dd2a99e6.tar.xz |
jffs2: 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: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'arch/s390')
0 files changed, 0 insertions, 0 deletions