aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorAmitoj Kaur Chawla <[email protected]>2016-06-23 10:22:01 +0530
committerDavid Teigland <[email protected]>2016-06-23 11:55:58 -0500
commit5c93f56f770e69c4cf2dbaebecd6bcca205949f9 (patch)
tree895b867b6fd3d05c9a72fd28c052423921f4521c /tools/perf/scripts/python
parent505ee5283c3d23220dfbf7630bfc4efdc391e743 (diff)
dlm: Use kmemdup instead of kmalloc and memcpy
Replace calls to kmalloc followed by a memcpy with a direct call to kmemdup. The Coccinelle semantic patch used to make this change is as follows: @@ 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); Signed-off-by: Amitoj Kaur Chawla <[email protected]> Signed-off-by: David Teigland <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions