diff options
author | Steve Wise <swise@opengridcomputing.com> | 2010-01-27 12:03:34 -0500 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2010-02-24 13:40:28 -0500 |
commit | e998f245c4b2d36ae2c35446e54ccbf1fb29d9de (patch) | |
tree | 9a0232f2d99d37f8d47ca1f7b4dbe5e9bcde5642 /drivers/net/cxgb3/t3_hw.c | |
parent | 2542322485be45853cc72d542d8ed84fae82c981 (diff) |
RDMA/cxgb3: Doorbell overflow avoidance and recovery
T3 hardware doorbell FIFO overflows can cause application stalls due
to lost doorbell ring events. This has been seen when running large
NP IMB alltoall MPI jobs. The T3 hardware supports an xon/xoff-type
flow control mechanism to help avoid overflowing the HW doorbell FIFO.
This patch uses these interrupts to disable RDMA QP doorbell rings
when we near an overflow condition, and then turn them back on (and
ring all the active QP doorbells) when when the doorbell FIFO empties
out. In addition if an doorbell ring is dropped by the hardware, the
code will now recover.
Design:
cxgb3:
- enable these DB interrupts
- in the interrupt handler, schedule work tasks to call the ULPs event
handlers with the new events.
- ring all the qset txqs when an overflow is detected.
iw_cxgb3:
- disable db ringing on all active qps when we get the DB_FULL event
- enable db ringing on all active qps and ring all active dbs when we get
the DB_EMPTY event
- On DB_DROP event:
- disable db rings in the event handler
- delay-schedule a work task which rings and enables the dbs on
all active qps.
- in post_send and post_recv logic, don't ring the db if it's disabled.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/net/cxgb3/t3_hw.c')
-rw-r--r-- | drivers/net/cxgb3/t3_hw.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c index 032cfe065570..c38fc717a0d1 100644 --- a/drivers/net/cxgb3/t3_hw.c +++ b/drivers/net/cxgb3/t3_hw.c | |||
@@ -1432,7 +1432,10 @@ static int t3_handle_intr_status(struct adapter *adapter, unsigned int reg, | |||
1432 | F_IRPARITYERROR | V_ITPARITYERROR(M_ITPARITYERROR) | \ | 1432 | F_IRPARITYERROR | V_ITPARITYERROR(M_ITPARITYERROR) | \ |
1433 | V_FLPARITYERROR(M_FLPARITYERROR) | F_LODRBPARITYERROR | \ | 1433 | V_FLPARITYERROR(M_FLPARITYERROR) | F_LODRBPARITYERROR | \ |
1434 | F_HIDRBPARITYERROR | F_LORCQPARITYERROR | \ | 1434 | F_HIDRBPARITYERROR | F_LORCQPARITYERROR | \ |
1435 | F_HIRCQPARITYERROR) | 1435 | F_HIRCQPARITYERROR | F_LOPRIORITYDBFULL | \ |
1436 | F_HIPRIORITYDBFULL | F_LOPRIORITYDBEMPTY | \ | ||
1437 | F_HIPRIORITYDBEMPTY | F_HIPIODRBDROPERR | \ | ||
1438 | F_LOPIODRBDROPERR) | ||
1436 | #define MC5_INTR_MASK (F_PARITYERR | F_ACTRGNFULL | F_UNKNOWNCMD | \ | 1439 | #define MC5_INTR_MASK (F_PARITYERR | F_ACTRGNFULL | F_UNKNOWNCMD | \ |
1437 | F_REQQPARERR | F_DISPQPARERR | F_DELACTEMPTY | \ | 1440 | F_REQQPARERR | F_DISPQPARERR | F_DELACTEMPTY | \ |
1438 | F_NFASRCHFAIL) | 1441 | F_NFASRCHFAIL) |