diff options
| author | Julia Lawall <julia@diku.dk> | 2010-05-16 01:19:15 +0400 |
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2010-07-21 21:39:06 +0400 |
| commit | 5ee283c063a236b19e4582c675a2d8d615d5809c (patch) | |
| tree | 68a26906d9e25bbd5963c5feae54fbe29dc81fee /tools/perf/scripts/python | |
| parent | d1d10d783089cc26a14be92fc12fccda9aa6593a (diff) | |
| download | linux-5ee283c063a236b19e4582c675a2d8d615d5809c.tar.xz | |
Bluetooth: Use kmemdup for drivers
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>
Acked-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions
