]> git.baikalelectronics.ru Git - kernel.git/commit
RDMA/nes: Pass correct size to ioremap_nocache()
authorJulia Lawall <julia@diku.dk>
Wed, 9 Dec 2009 23:21:57 +0000 (15:21 -0800)
committerRoland Dreier <rolandd@cisco.com>
Wed, 9 Dec 2009 23:21:57 +0000 (15:21 -0800)
commitfc937f2c37d9906fdb112f1761eee0dc169f0823
tree4fa4951e62be39f9dab7908fd34ed813be0f3cda
parent109843e6a6dbafe5b9d1fb8631e779070ce75a1d
RDMA/nes: Pass correct size to ioremap_nocache()

The size argument to ioremap_nocache should be the size of desired
information, not the pointer to it.

The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@expression@
expression *x;
@@

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

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Chien Tung <chien.tin.tung@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/hw/nes/nes.c