diff options
author | Julia Lawall <julia@diku.dk> | 2010-05-15 23:22:18 +0200 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-05-20 15:26:13 +0200 |
commit | 2c6719a3ef2f7da59a622ba1176ad41d553f8f43 (patch) | |
tree | d685f2939ff90182458fd5173df0f7871f93cb81 /drivers/block | |
parent | drivers/platform/x86: Use kzalloc (diff) | |
download | linux-2c6719a3ef2f7da59a622ba1176ad41d553f8f43.tar.xz linux-2c6719a3ef2f7da59a622ba1176ad41d553f8f43.zip |
drivers/platform/x86: Use kmemdup
Use kmemdup when some other buffer is immediately copied into the
allocated region.
A simplified version of the semantic patch that makes this change is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
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);
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Diffstat (limited to 'drivers/block')
0 files changed, 0 insertions, 0 deletions