diff options
author | Divy Le Ray <divy@chelsio.com> | 2007-09-05 18:58:25 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:05 -0400 |
commit | 1c17ae8af93bed203d9760702882e9f747a51912 (patch) | |
tree | 622a2d32f794e0e97beda261bc05301fa3c0d8ae /drivers/net/cxgb3/sge_defs.h | |
parent | b4687ff753c2c5c330989efed7cdf1a6bc6b512e (diff) |
cxgb3 - Set the CQ_ERR bit in CQ contexts.
The cxgb3 driver is incorrectly configuring the HW CQ context for CQ's
that use overflow-avoidance. Namely the RDMA control CQ. This results
in a bad DMA from the device to bus address 0. The solution is to set
the CQ_ERR bit in the context for these types of CQs.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/cxgb3/sge_defs.h')
-rw-r--r-- | drivers/net/cxgb3/sge_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/cxgb3/sge_defs.h b/drivers/net/cxgb3/sge_defs.h index 514869e26a76..29b6c800b238 100644 --- a/drivers/net/cxgb3/sge_defs.h +++ b/drivers/net/cxgb3/sge_defs.h | |||
@@ -106,6 +106,10 @@ | |||
106 | #define V_CQ_GEN(x) ((x) << S_CQ_GEN) | 106 | #define V_CQ_GEN(x) ((x) << S_CQ_GEN) |
107 | #define F_CQ_GEN V_CQ_GEN(1U) | 107 | #define F_CQ_GEN V_CQ_GEN(1U) |
108 | 108 | ||
109 | #define S_CQ_ERR 30 | ||
110 | #define V_CQ_ERR(x) ((x) << S_CQ_ERR) | ||
111 | #define F_CQ_ERR V_CQ_ERR(1U) | ||
112 | |||
109 | #define S_CQ_OVERFLOW_MODE 31 | 113 | #define S_CQ_OVERFLOW_MODE 31 |
110 | #define V_CQ_OVERFLOW_MODE(x) ((x) << S_CQ_OVERFLOW_MODE) | 114 | #define V_CQ_OVERFLOW_MODE(x) ((x) << S_CQ_OVERFLOW_MODE) |
111 | #define F_CQ_OVERFLOW_MODE V_CQ_OVERFLOW_MODE(1U) | 115 | #define F_CQ_OVERFLOW_MODE V_CQ_OVERFLOW_MODE(1U) |