]> bbs.cooldavid.org Git - net-next-2.6.git/commit
drivers/scsi/aic94xx/aic94xx_init.c: correct the size argument to kmalloc
authorJulia Lawall <julia@diku.dk>
Wed, 11 Aug 2010 01:01:18 +0000 (18:01 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Aug 2010 15:59:00 +0000 (08:59 -0700)
commit85bc081f44d53e3ac268c59275cc3b9b5afae04a
tree5f0ff66195736ed6b383828b9e21370e8801a42c
parentd8187b945aa4ed9ea298518e3dac691ea09724e5
drivers/scsi/aic94xx/aic94xx_init.c: correct the size argument to kmalloc

In each case, the destination of the allocation has type struct **, so the
elements of the array should have pointer type, not structure type.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@disable sizeof_type_expr@
type T;
T **x;
@@

  x =
  <+...sizeof(
- T
+ *x
  )...+>
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Cc: Rolf Eike Beer <eike-kernel@sf-tec.de>
Cc: Joe Perches <joe@perches.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/scsi/aic94xx/aic94xx_init.c
drivers/scsi/ch.c