diff options
author | Steve Wise <swise@opengridcomputing.com> | 2014-03-27 21:03:47 +0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-04-02 19:53:54 +0400 |
commit | 96bb2706c883a21d7da6a261d7e60d3bab4cf6bd (patch) | |
tree | e7a7841cdf3368fdece772031d05eb1348db023d /drivers/infiniband | |
parent | c529fb50463992982c246155e095577aa0485f57 (diff) | |
download | linux-96bb2706c883a21d7da6a261d7e60d3bab4cf6bd.tar.xz |
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>
Diffstat (limited to 'drivers/infiniband')
-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 @@ #include "iw_cxgb4.h" -int use_dsgl = 1; +int use_dsgl = 0; module_param(use_dsgl, int, 0644); -MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=1)"); +MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=0)"); #define T4_ULPTX_MIN_IO 32 #define C4IW_MAX_INLINE_SIZE 96 |