diff options
author | Julia Lawall <[email protected]> | 2010-05-13 21:58:56 +0200 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-05-18 15:57:05 +1000 |
commit | 6ebc22e6d06760466859b79d7b3b3edad264a230 (patch) | |
tree | c55bcec8359e666a625b9108a7375f18c7f5c4b7 /fs/jbd/commit.c | |
parent | 96525a2f7448c427bb8d99240907a6bd2d9e818c (diff) |
drivers/gpu/drm: Use kzalloc
Use kzalloc rather than the combination of kmalloc and memset.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression x,size,flags;
statement S;
@@
-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(x, 0, size);
// </smpl>
Signed-off-by: Julia Lawall <[email protected]>
Reviewed-by: Corbin Simpson <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'fs/jbd/commit.c')
0 files changed, 0 insertions, 0 deletions