From: "Ismail, Mustafa" <mustafa.ismail@intel.com>
To: linux-rdma@vger.kernel.org, dledford@redhat.com
Cc: swise@opengridcomputing.com, linux-kernel@vger.kernel.org,
stable@vger.kernel.org, e1000-rdma@lists.sourceforge.net,
shiraz.saleem@intel.com, Marcel Apfelbaum <marcel@redhat.com>
Subject: [v2,1/2] RDMA/uverbs: Fix the check for port number
Date: Wed, 19 Jul 2017 23:34:13 +0300 [thread overview]
Message-ID: <1500043291-19768-2-git-send-email-mustafa.ismail@intel.com> (raw)
The port number is only valid if IB_QP_PORT is set in the mask.
So only check port number if it is valid to prevent modify_qp from
failing due to an invalid port number.
Fixes: 5ecce4c9b17b("Check port number supplied by user verbs cmds")
Cc: <stable@vger.kernel.org> # v2.6.14+
Reviewed-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Mustafa Ismail <mustafa.ismail@intel.com>
Tested-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
---
drivers/infiniband/core/uverbs_cmd.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index 8ba9bfb..19de068 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -1935,7 +1935,8 @@ static int modify_qp(struct ib_uverbs_file *file,
goto out;
}
- if (!rdma_is_port_valid(qp->device, cmd->base.port_num)) {
+ if ((cmd->base.attr_mask & IB_QP_PORT) &&
+ !rdma_is_port_valid(qp->device, cmd->base.port_num)) {
FWIW,
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
and/or
Tested-by: Yuval Shaia <yuval.shaia@oracle.com>
ret = -EINVAL;
goto release_qp;
}
next prev reply other threads:[~2017-07-19 20:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-14 14:41 [PATCH v2 0/2] Fix modify_qp failure Mustafa Ismail
2017-07-14 14:41 ` [PATCH v2 2/2] RDMA/core: Initialize port_num in qp_attr Mustafa Ismail
2017-07-17 19:10 ` Marciniszyn, Mike
2017-07-19 8:09 ` Kalderon, Michal
2017-07-19 14:38 ` Ismail, Mustafa
2017-07-19 15:09 ` Kalderon, Michal
2017-07-19 20:34 ` Ismail, Mustafa [this message]
2017-07-17 19:10 ` [PATCH v2 1/2] RDMA/uverbs: Fix the check for port number Marciniszyn, Mike
2017-07-22 18:17 ` [PATCH v2 0/2] Fix modify_qp failure Doug Ledford
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1500043291-19768-2-git-send-email-mustafa.ismail@intel.com \
--to=mustafa.ismail@intel.com \
--cc=dledford@redhat.com \
--cc=e1000-rdma@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=marcel@redhat.com \
--cc=shiraz.saleem@intel.com \
--cc=stable@vger.kernel.org \
--cc=swise@opengridcomputing.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).