Julia Lawall 2db4e42eac 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>
2010-05-18 02:04:10 +02:00
..
2010-05-18 02:04:10 +02:00
2010-04-20 01:17:13 +01:00
2010-04-19 11:53:17 -07:00
2010-04-23 07:08:28 +10:00
2010-04-24 11:31:26 -07:00
2010-04-22 07:20:00 -07:00
2010-04-24 11:31:25 -07:00
2010-03-06 11:26:28 -08:00