diff options
author | Sreenivasa Honnur <Sreenivasa.Honnur@neterion.com> | 2009-07-01 23:16:37 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-06 04:16:34 +0200 |
commit | a5d165b571fcf347e82af6292074d2f0c07de3a6 (patch) | |
tree | 5bd6bf9a4af55d01e62a216c222f2a864df163ee /drivers/net/vxge/vxge-main.h | |
parent | vxge: Removed the code to bounds check the mss value (diff) | |
download | linux-a5d165b571fcf347e82af6292074d2f0c07de3a6.tar.xz linux-a5d165b571fcf347e82af6292074d2f0c07de3a6.zip |
vxge: Fixes in isr routine
- Fixes in isr routine
Fixed crash with INTA mode during driver unload. Pass hldev to request_irq
instead of vdev.
Fixed Traffic failure with GRO in INTA mode. Pass the correct napi
context to gro functions.
Signed-off-by: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
Signed-off-by: Ramkrishna Vepa <ram.vepa@neterion.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/vxge/vxge-main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/vxge/vxge-main.h b/drivers/net/vxge/vxge-main.h index 3386970b7efc..a46f7fe938d2 100644 --- a/drivers/net/vxge/vxge-main.h +++ b/drivers/net/vxge/vxge-main.h @@ -260,6 +260,7 @@ struct vxge_ring { int gro_enable; struct napi_struct napi; + struct napi_struct *napi_p; #define VXGE_MAX_MAC_ADDR_COUNT 30 |