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
..
2007-07-15 16:51:54 -07:00
2007-07-15 16:51:54 -07:00
2006-06-30 19:25:36 +02:00
2007-07-11 16:02:10 -07:00
2007-07-15 16:51:54 -07:00
2007-05-11 17:19:02 +01:00
2007-04-01 10:10:04 -05:00
2007-07-15 10:05:33 -05:00
2007-07-17 10:23:02 -07:00
2007-07-19 10:04:50 -07:00
2007-07-19 10:04:50 -07:00
2007-07-19 10:04:50 -07:00
2007-07-15 16:51:54 -07:00
2007-07-14 19:11:38 -05:00
2007-07-15 10:00:32 -05:00
2007-07-19 10:04:50 -07:00
2006-11-09 14:27:57 +09:00
2007-05-30 23:29:32 -05:00
2007-01-06 09:18:00 -06:00
2007-07-14 19:12:43 -05:00
2007-06-17 16:15:56 -05:00
2007-06-17 16:09:29 -05:00
2007-06-17 16:09:29 -05:00
2007-02-14 08:09:54 -08:00
2006-09-12 17:12:31 -05:00
2007-02-14 08:09:54 -08:00
2006-09-12 17:12:31 -05:00
2007-06-19 19:53:35 -07:00
2007-05-27 15:05:10 -05:00
2007-05-22 10:50:19 -05:00
2006-02-28 11:20:45 -06:00
2007-05-02 19:02:35 -07:00
2007-05-26 19:12:56 -05:00
2007-07-15 09:34:45 -05:00
2006-10-05 15:10:12 +01:00
2007-06-04 09:55:15 -05:00
2007-05-04 17:59:05 -07:00
2007-05-04 17:59:05 -07:00
2006-10-05 15:10:12 +01:00
2007-02-09 16:23:17 +00:00
2007-02-09 16:23:17 +00:00
2007-05-26 19:21:37 -05:00
2007-02-07 18:32:29 -05:00
2007-06-19 19:53:35 -07:00
2007-05-06 09:33:11 -05:00
2007-03-11 11:21:25 -05:00
2007-02-09 16:23:17 +00:00
2007-02-09 16:23:17 +00:00
2007-07-15 10:04:49 -05:00
2007-02-09 16:23:17 +00:00
2006-09-26 11:35:32 -07:00
2007-05-31 12:25:27 -05:00
2006-10-05 15:10:12 +01:00
2007-02-14 08:09:54 -08:00
2007-03-20 11:27:03 -05:00
2007-02-14 08:09:54 -08:00
2007-05-26 19:13:55 -05:00
2007-07-15 16:51:54 -07:00
2007-05-31 17:30:04 -04:00
2007-02-09 16:23:17 +00:00
2006-08-06 15:59:26 -05:00
2006-11-15 16:41:27 -06:00
2007-05-27 12:59:28 -05:00
2007-02-07 18:32:29 -05:00
2007-02-14 08:09:54 -08:00
2006-06-30 19:25:36 +02:00
2006-06-10 10:24:40 -05:00
2006-06-10 10:24:40 -05:00
2006-06-10 10:24:40 -05:00
2007-05-30 08:39:52 -05:00
2006-09-26 11:35:16 -07:00
2007-02-14 08:09:54 -08:00
2006-09-12 17:12:31 -05:00
2007-04-27 10:57:30 -07:00
2007-06-17 18:35:14 -05:00
2006-06-10 10:36:13 -05:00
2007-05-26 16:30:17 -05:00
2007-06-16 02:24:44 +02:00
2007-07-19 10:04:50 -07:00
2006-10-04 03:38:54 -04:00
2006-10-05 15:10:12 +01:00
2007-05-26 19:13:27 -05:00
2007-05-22 11:08:56 -05:00
2007-07-15 16:51:54 -07:00
2007-05-08 11:54:40 -05:00
2007-07-19 10:04:50 -07:00
2007-05-24 09:14:41 -05:00
2007-06-17 16:01:55 -05:00
2007-06-02 15:35:10 -04:00
2007-05-31 17:30:04 -04:00
2007-07-16 09:05:42 -07:00
2007-07-19 10:04:50 -07:00
2007-06-17 16:01:55 -05:00
2007-05-16 12:45:17 -04:00
2007-05-26 19:07:50 -05:00
2007-02-09 16:23:17 +00:00
2007-02-14 08:09:54 -08:00
2007-07-14 19:28:10 -05:00
2007-02-09 16:23:17 +00:00
2007-05-31 18:11:21 -04:00
2007-05-08 11:15:08 -05:00
2007-06-07 08:49:10 -05:00
2007-06-17 16:17:40 -05:00
2007-02-14 08:09:54 -08:00
2006-09-12 17:12:31 -05:00
2007-07-15 10:03:03 -05:00
2006-11-30 05:24:39 +01:00
2007-05-26 19:08:20 -05:00
2007-07-19 10:04:50 -07:00
2007-02-09 16:23:17 +00:00
2007-07-15 16:51:54 -07:00
2007-05-24 09:13:25 -05:00
2007-07-19 10:04:50 -07:00
2007-07-19 10:04:50 -07:00
2007-07-15 16:51:54 -07:00
2006-09-26 10:39:00 -07:00
2007-02-09 16:23:17 +00:00
2006-06-30 19:25:36 +02:00
2007-04-17 18:15:04 -04:00
2007-02-09 09:14:07 -08:00
2007-02-14 08:09:54 -08:00
2007-05-29 02:49:05 -07:00
2007-07-19 10:04:50 -07:00
2006-10-04 03:38:54 -04:00
2006-11-10 10:01:42 +09:00
2006-10-25 15:12:38 -07:00
2007-05-06 09:33:11 -05:00
2007-05-26 19:21:09 -05:00
2006-10-25 15:11:55 -07:00
2006-10-17 19:28:51 -07:00
2007-04-26 01:54:27 -07:00
2006-10-04 13:27:26 -05:00
2007-06-17 14:56:07 -05:00
2007-07-14 18:58:37 -05:00
2007-07-17 10:23:02 -07:00
2006-07-28 09:04:09 +02:00
2007-07-14 19:28:10 -05:00
2007-07-14 19:28:10 -05:00
2006-06-30 19:25:36 +02:00
2007-04-25 22:29:03 -07:00
2007-01-27 10:06:34 -06:00
2007-02-16 11:12:07 -06:00
2006-06-28 12:40:54 -04:00
2007-07-15 16:51:54 -07:00
2007-02-14 08:09:59 -08:00
2007-05-22 10:41:12 -05:00
2007-03-11 11:39:27 -05:00
2007-03-20 10:52:59 -05:00
2007-03-11 11:39:27 -05:00
2006-05-20 00:39:08 -04:00
2007-06-17 16:03:11 -05:00
2007-06-02 15:38:04 -04:00
2007-02-17 19:23:03 +01:00
2007-02-02 20:44:25 -06:00
2006-06-10 16:24:40 -05:00
2006-10-11 13:44:25 -05:00
2007-07-14 18:57:54 -05:00
2006-08-19 13:39:11 -07:00
2006-06-26 16:33:10 -05:00
2007-07-16 08:52:45 +02:00
2007-01-03 16:57:38 -06:00
2007-05-28 09:08:32 -05:00
2007-05-11 17:00:29 +01:00
2007-07-19 10:04:50 -07:00
2007-07-14 19:12:15 -05:00
2007-02-14 08:09:54 -08:00
2006-12-13 09:05:58 -08:00
2007-07-14 18:54:34 -05:00
2006-03-23 07:38:09 -08:00
2007-07-16 08:52:45 +02:00
2007-02-03 08:05:47 -06:00
2007-07-14 18:59:10 -05:00
2006-12-17 10:21:53 -08:00
2007-02-14 08:09:54 -08:00
2007-02-14 08:09:54 -08:00
2006-12-09 09:41:18 -08:00
2007-02-09 16:23:17 +00:00
2007-05-31 17:30:04 -04:00
2007-05-26 19:08:50 -05:00
2007-02-14 08:09:54 -08:00
2006-11-15 16:43:50 -06:00
2007-07-19 10:04:50 -07:00
2007-07-14 18:56:33 -05:00
2007-05-26 19:19:04 -05:00
2007-05-26 19:18:38 -05:00
2006-09-07 12:39:34 -05:00
2007-02-16 09:22:11 -06:00
2007-02-16 09:22:11 -06:00
2007-05-26 19:18:10 -05:00
2006-07-02 13:58:53 -07:00
2007-06-19 19:53:35 -07:00