cxgb4: allocate enough data in t4_memory_rw()
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 8 Oct 2012 07:12:11 +0000 (10:12 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Oct 2012 07:13:16 +0000 (03:13 -0400)
MEMWIN0_APERTURE is the size in bytes.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/t4_hw.c

index 137a244..e914c41 100644 (file)
@@ -417,7 +417,7 @@ static int t4_memory_rw(struct adapter *adap, int mtype, u32 addr, u32 len,
        if ((addr & 0x3) || (len & 0x3))
                return -EINVAL;
 
-       data = vmalloc(MEMWIN0_APERTURE/sizeof(__be32));
+       data = vmalloc(MEMWIN0_APERTURE);
        if (!data)
                return -ENOMEM;