]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iw_cxgb4: Use dsgl by default
authorGanesh Goudar <ganeshgr@chelsio.com>
Thu, 23 Feb 2017 07:01:43 +0000 (12:31 +0530)
committerDoug Ledford <dledford@redhat.com>
Tue, 25 Apr 2017 18:04:41 +0000 (14:04 -0400)
Enable the use of dsgl by default and determine whether dsgl is
supported from lld info.

Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Bharat Potnuri <bharat@chelsio.com>
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/cxgb4/mem.c

index da9ca88b7855f578a1d4b44b089f5f86d6e997a6..19dc548e1b73baa4e37f1382641ee23c30482102 100644 (file)
@@ -38,9 +38,9 @@
 
 #include "iw_cxgb4.h"
 
-int use_dsgl = 0;
+int use_dsgl = 1;
 module_param(use_dsgl, int, 0644);
-MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=0)");
+MODULE_PARM_DESC(use_dsgl, "Use DSGL for PBL/FastReg (default=1) (DEPRECATED)");
 
 #define T4_ULPTX_MIN_IO 32
 #define C4IW_MAX_INLINE_SIZE 96
@@ -231,7 +231,7 @@ out:
 static int write_adapter_mem(struct c4iw_rdev *rdev, u32 addr, u32 len,
                             void *data, struct sk_buff *skb)
 {
-       if (is_t5(rdev->lldi.adapter_type) && use_dsgl) {
+       if (rdev->lldi.ulptx_memwrite_dsgl && use_dsgl) {
                if (len > inline_threshold) {
                        if (_c4iw_write_mem_dma(rdev, addr, len, data, skb)) {
                                pr_warn_ratelimited("%s: dma map failure (non fatal)\n",