Tag: 7a6cb0d5497418599d2125b670926b75e673861c

Staging: Use kcalloc or kzalloc

Author: Julia Lawall <julia@diku.dk> Use kcalloc or kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression x,y,flags; statement S; type T; @@ x = – kmalloc + kcalloc ( – y * sizeof(T), + y, sizeof(T), flags); if (x == NULL) …

Continue reading