diff options
author | Vladislav Zolotarov <vladz@broadcom.com> | 2008-08-13 18:50:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-13 19:02:04 -0400 |
commit | da5a662a2326931bef25f0e534c9c1702f862399 (patch) | |
tree | 53bd5af8f3c24cdbb01959a3f3feca3af0bad655 /drivers/net/bnx2x.h | |
parent | 471de716b782fb55ae0fdc040cf2722caffeeb94 (diff) |
bnx2x: Load/Unload under traffic
Load/Unload under traffic
Few issues were found when loading and unloading under traffic:
- When receiving Tx interrupt call netif_wake_queue if the queue is
stopped but the state is open
- Check that interrupts are enabled before doing anything else on the
msix_fp_int function
- In nic_load, enable the interrupts only when needed and ready for it
- Function stop_leading returns status since it can fail
- Add 1ms delay when unloading the driver to validate that there are no
open transactions that already started by the FW
- Splitting the "has work" function into Tx and Rx so the same function
will be used on unload and interrupts
- Do not request for WoL if only resetting the device (save the time
that it takes the FW to set the link after reset)
- Fixing the device reset after iSCSI boot and before driver load - all
internal buffers must be cleared before the driver is loaded
Signed-off-by: Vladislav Zolotarov <vladz@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x.h')
-rw-r--r-- | drivers/net/bnx2x.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/bnx2x.h b/drivers/net/bnx2x.h index 9cbf0e82ef38..b9aa6f48ae2e 100644 --- a/drivers/net/bnx2x.h +++ b/drivers/net/bnx2x.h | |||
@@ -274,6 +274,15 @@ struct bnx2x_fastpath { | |||
274 | 274 | ||
275 | #define bnx2x_fp(bp, nr, var) (bp->fp[nr].var) | 275 | #define bnx2x_fp(bp, nr, var) (bp->fp[nr].var) |
276 | 276 | ||
277 | #define BNX2X_HAS_TX_WORK(fp) \ | ||
278 | ((fp->tx_pkt_prod != le16_to_cpu(*fp->tx_cons_sb)) || \ | ||
279 | (fp->tx_pkt_prod != fp->tx_pkt_cons)) | ||
280 | |||
281 | #define BNX2X_HAS_RX_WORK(fp) \ | ||
282 | (fp->rx_comp_cons != le16_to_cpu(*fp->rx_cons_sb)) | ||
283 | |||
284 | #define BNX2X_HAS_WORK(fp) (BNX2X_HAS_RX_WORK(fp) || BNX2X_HAS_TX_WORK(fp)) | ||
285 | |||
277 | 286 | ||
278 | /* MC hsi */ | 287 | /* MC hsi */ |
279 | #define MAX_FETCH_BD 13 /* HW max BDs per packet */ | 288 | #define MAX_FETCH_BD 13 /* HW max BDs per packet */ |