diff options
author | Julia Lawall <julia@diku.dk> | 2010-05-13 22:02:21 +0200 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2010-05-18 02:04:10 +0200 |
commit | 2db4e42eaceabec42f738f3895300632cd375e67 (patch) | |
tree | b0ea75fc16a8a6d20ef9ba218eefaa3afc865887 /fs | |
parent | 0c3f34516e8c5a1a0ba3585a7777d32bbbdf4ecb (diff) | |
download | linux-3.10-2db4e42eaceabec42f738f3895300632cd375e67.tar.gz linux-3.10-2db4e42eaceabec42f738f3895300632cd375e67.tar.bz2 linux-3.10-2db4e42eaceabec42f738f3895300632cd375e67.zip |
drivers/block/drbd: 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 <julia@diku.dk>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'fs')
0 files changed, 0 insertions, 0 deletions