aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb4/cm.c
diff options
context:
space:
mode:
authorKumar Sanghvi <kumaras@chelsio.com>2012-02-25 17:45:02 -0800
committerRoland Dreier <roland@purestorage.com>2012-02-25 17:45:02 -0800
commit91018f8632e09e3a617c9fc2efbbdaa2922d2fe7 (patch)
tree8b886b9a607ba59b2d8d3162e8a97722c31d8f25 /drivers/infiniband/hw/cxgb4/cm.c
parentLinux 3.3-rc5 (diff)
downloadlinux-dev-91018f8632e09e3a617c9fc2efbbdaa2922d2fe7.tar.xz
linux-dev-91018f8632e09e3a617c9fc2efbbdaa2922d2fe7.zip
RDMA/cxgb4: Add missing peer2peer check in MPAv2 code
Don't worry about p2p_type if peer2peer itself is not requested in the first place. Signed-off-by: Kumar Sanghvi <kumaras@chelsio.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c
index 0668bb3472d0..006a35372b7a 100644
--- a/drivers/infiniband/hw/cxgb4/cm.c
+++ b/drivers/infiniband/hw/cxgb4/cm.c
@@ -1114,7 +1114,7 @@ static void process_mpa_reply(struct c4iw_ep *ep, struct sk_buff *skb)
* generated when moving QP to RTS state.
* A TERM message will be sent after QP has moved to RTS state
*/
- if ((ep->mpa_attr.version == 2) &&
+ if ((ep->mpa_attr.version == 2) && peer2peer &&
(ep->mpa_attr.p2p_type != p2p_type)) {
ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
rtr_mismatch = 1;