linux/net/tipc
Yoann Padioleau dd00cc486a some kmalloc/memset ->kzalloc (tree wide)
Transform some calls to kmalloc/memset to a single kzalloc (or kcalloc).

Here is a short excerpt of the semantic patch performing
this transformation:

@@
type T2;
expression x;
identifier f,fld;
expression E;
expression E1,E2;
expression e1,e2,e3,y;
statement S;
@@

 x =
- kmalloc
+ kzalloc
  (E1,E2)
  ...  when != \(x->fld=E;\|y=f(...,x,...);\|f(...,x,...);\|x=E;\|while(...) S\|for(e1;e2;e3) S\)
- memset((T2)x,0,E1);

@@
expression E1,E2,E3;
@@

- kzalloc(E1 * E2,E3)
+ kcalloc(E1,E2,E3)

[akpm@linux-foundation.org: get kcalloc args the right way around]
Signed-off-by: Yoann Padioleau <padator@wanadoo.fr>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Cc: Bryan Wu <bryan.wu@analog.com>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Dave Airlie <airlied@linux.ie>
Acked-by: Roland Dreier <rolandd@cisco.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Acked-by: Pierre Ossman <drzeus-list@drzeus.cx>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: "David S. Miller" <davem@davemloft.net>
Acked-by: Greg KH <greg@kroah.com>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-07-19 10:04:50 -07:00
..
Kconfig [TIPC]: Use menuconfig objects. 2007-05-24 16:36:50 -07:00
Makefile [TIPC] Initial merge 2006-01-12 14:06:31 -08:00
addr.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
addr.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
bcast.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
bcast.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
bearer.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
bearer.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
cluster.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
cluster.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
config.c [SK_BUFF]: Convert skb->tail to sk_buff_data_t 2007-04-25 22:26:28 -07:00
config.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
core.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
core.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
dbg.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
dbg.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
discover.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
discover.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
eth_media.c [TIPC]: Improved support for Ethernet traffic filtering 2007-07-10 22:06:02 -07:00
handler.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
link.c [TIPC]: Optimize stream send routine to avoid fragmentation 2007-07-10 22:06:12 -07:00
link.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
msg.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
msg.h [TIPC]: Enhancements to msg_set_bits() routine 2007-04-25 22:29:49 -07:00
name_distr.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
name_distr.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
name_table.c some kmalloc/memset ->kzalloc (tree wide) 2007-07-19 10:04:50 -07:00
name_table.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
net.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
net.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
netlink.c [TIPC]: Fix infinite loop in netlink handler 2007-06-23 22:59:40 -07:00
node.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
node.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
node_subscr.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
node_subscr.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
port.c [TIPC]: Optimize stream send routine to avoid fragmentation 2007-07-10 22:06:12 -07:00
port.h [TIPC]: Optimize stream send routine to avoid fragmentation 2007-07-10 22:06:12 -07:00
ref.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
ref.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
socket.c [TIPC]: Optimize stream send routine to avoid fragmentation 2007-07-10 22:06:12 -07:00
subscr.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
subscr.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
user_reg.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
user_reg.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
zone.c [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00
zone.h [NET] TIPC: Fix whitespace errors. 2007-02-10 23:20:15 -08:00