diff options
author | Steve Wise <swise@opengridcomputing.com> | 2014-03-27 13:03:47 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-04-02 11:53:54 -0400 |
commit | 96bb2706c883a21d7da6a261d7e60d3bab4cf6bd (patch) | |
tree | e7a7841cdf3368fdece772031d05eb1348db023d | |
parent | c529fb50463992982c246155e095577aa0485f57 (diff) |
RDMA/cxgb4: Disable DSGL use by default
Current hardware doesn't correctly support DSGL.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
-rw-r--r-- | drivers/infiniband/hw/cxgb4/mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/cxgb4/mem.c b/drivers/infiniband/hw/cxgb4/mem.c index 22a2e3e4540f..2630838ab1c2 100644 --- a/drivers/infiniband/hw/cxgb4/mem.c +++ b/drivers/infiniband/hw/cxgb4/mem.c | |||
@@ -37,9 +37,9 @@ | |||
37 | 37 | ||
38 | #include "iw_cxgb4.h" | 38 | #include "iw_cxgb4.h" |
39 | 39 | ||
40 | int use_dsgl = 1; | 40 | int use_dsgl = 0; |
41 | module_param(use_dsgl, int, 0644); | 41 | module_param(use_dsgl, int, 0644); |
42 | MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=1)"); | 42 | MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=0)"); |
43 | 43 | ||
44 | #define T4_ULPTX_MIN_IO 32 | 44 | #define T4_ULPTX_MIN_IO 32 |
45 | #define C4IW_MAX_INLINE_SIZE 96 | 45 | #define C4IW_MAX_INLINE_SIZE 96 |