diff options
author | Steve Wise <swise@opengridcomputing.com> | 2011-03-11 17:30:01 -0500 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2011-03-14 15:09:09 -0400 |
commit | b52fe09e3309c3d7069cd0e5a3bdb5b4ba45e01f (patch) | |
tree | a8b5beeed11f6c7bbe0ee09f1607619e10a54627 /drivers/infiniband/hw/cxgb4/cm.c | |
parent | a5bbef0b2deb7b943f095181309ecc9e1fc91c0f (diff) |
RDMA/cxgb4: Turn on delayed ACK
Set the default to on.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4/cm.c')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index 8b00e6c46f0..65d3fe6cfd5 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c | |||
@@ -61,9 +61,9 @@ static char *states[] = { | |||
61 | NULL, | 61 | NULL, |
62 | }; | 62 | }; |
63 | 63 | ||
64 | static int dack_mode; | 64 | static int dack_mode = 1; |
65 | module_param(dack_mode, int, 0644); | 65 | module_param(dack_mode, int, 0644); |
66 | MODULE_PARM_DESC(dack_mode, "Delayed ack mode (default=0)"); | 66 | MODULE_PARM_DESC(dack_mode, "Delayed ack mode (default=1)"); |
67 | 67 | ||
68 | int c4iw_max_read_depth = 8; | 68 | int c4iw_max_read_depth = 8; |
69 | module_param(c4iw_max_read_depth, int, 0644); | 69 | module_param(c4iw_max_read_depth, int, 0644); |