diff options
author | Hariprasad S <hariprasad@chelsio.com> | 2015-07-27 14:08:52 +0530 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-08-28 22:54:47 -0400 |
commit | b8ac3112462900a55a45df8e6098c67a139d8c2d (patch) | |
tree | bbc141d450b54fdd3b3a2284239ec57dce0682da /drivers/infiniband | |
parent | 7854550ae6d89bb90980b9885c7a71e471820bf2 (diff) | |
download | linux-stable-b8ac3112462900a55a45df8e6098c67a139d8c2d.tar.gz linux-stable-b8ac3112462900a55a45df8e6098c67a139d8c2d.tar.bz2 linux-stable-b8ac3112462900a55a45df8e6098c67a139d8c2d.zip |
iw_cxgb4: set the default MPA version to 2
This enables ORD/IRD negotiation and its about time to enable it by
default
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-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 3ad8dc798f52..75144d90c252 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -115,11 +115,11 @@ module_param(ep_timeout_secs, int, 0644); MODULE_PARM_DESC(ep_timeout_secs, "CM Endpoint operation timeout " "in seconds (default=60)"); -static int mpa_rev = 1; +static int mpa_rev = 2; module_param(mpa_rev, int, 0644); MODULE_PARM_DESC(mpa_rev, "MPA Revision, 0 supports amso1100, " "1 is RFC0544 spec compliant, 2 is IETF MPA Peer Connect Draft" - " compliant (default=1)"); + " compliant (default=2)"); static int markers_enabled; module_param(markers_enabled, int, 0644); |