public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/5] drivers/infiniband: correct size computation
@ 2009-12-06  9:16 Julia Lawall
  2009-12-07 16:17 ` Tung, Chien Tin
  0 siblings, 1 reply; 8+ messages in thread
From: Julia Lawall @ 2009-12-06  9:16 UTC (permalink / raw)
  To: Faisal Latif, Chien Tung, Roland Dreier, Sean Hefty,
	Hal Rosenstock, linux-rdma, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

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

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

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

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

Signed-off-by: Julia Lawall <julia@diku.dk>

---
 drivers/infiniband/hw/nes/nes.c     |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/infiniband/hw/nes/nes.c b/drivers/infiniband/hw/nes/nes.c
index cbde0cf..b8c5372 100644
--- a/drivers/infiniband/hw/nes/nes.c
+++ b/drivers/infiniband/hw/nes/nes.c
@@ -521,7 +521,8 @@ static int __devinit nes_probe(struct pci_dev *pcidev, const struct pci_device_i
 	spin_lock_init(&nesdev->indexed_regs_lock);
 
 	/* Remap the PCI registers in adapter BAR0 to kernel VA space */
-	mmio_regs = ioremap_nocache(pci_resource_start(pcidev, BAR_0), sizeof(mmio_regs));
+	mmio_regs = ioremap_nocache(pci_resource_start(pcidev, BAR_0),
+				    sizeof(*mmio_regs));
 	if (mmio_regs == NULL) {
 		printk(KERN_ERR PFX "Unable to remap BAR0\n");
 		ret = -EIO;

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-12-09 22:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-06  9:16 [PATCH 3/5] drivers/infiniband: correct size computation Julia Lawall
2009-12-07 16:17 ` Tung, Chien Tin
2009-12-07 16:22   ` Julia Lawall
2009-12-07 16:38     ` Tung, Chien Tin
2009-12-07 16:42       ` Julia Lawall
2009-12-07 19:57       ` Julia Lawall
2009-12-07 20:09         ` Tung, Chien Tin
2009-12-09 22:32         ` Roland Dreier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox