diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-20 17:59:07 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-20 17:59:07 -0300 |
commit | 09de97070903fecead7c3b0283a0234b28e28223 (patch) | |
tree | e88fc40c942de6b407374c123741e6e08166eeaf /linux/drivers/media/dvb/dvb-usb/dibusb-common.c | |
parent | 22889562b8d60f4db73f82d376f0baf581a98051 (diff) | |
download | mediapointer-dvb-s2-09de97070903fecead7c3b0283a0234b28e28223.tar.gz mediapointer-dvb-s2-09de97070903fecead7c3b0283a0234b28e28223.tar.bz2 |
Backport changeset from kernel mainstream
From: Mauro Carvalho Chehab <mchehab@infradead.org>
kernel-sync:
The original patch from Yoann Padioleau <padator@wanadoo.fr>:
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)
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb/dibusb-common.c')
0 files changed, 0 insertions, 0 deletions