aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mthca
diff options
context:
space:
mode:
authorSean Hefty <sean.hefty@intel.com>2011-05-23 19:31:36 -0400
committerRoland Dreier <roland@purestorage.com>2011-10-13 12:13:26 -0400
commit96104eda01695a26da2c8f7423ec0ba3509c8c97 (patch)
tree04e38bfe564245ebd9a62738d54a111b2d24da4a /drivers/infiniband/hw/mthca
parent59991f94eb32e954aa767f659eb642461e9e8b37 (diff)
RDMA/core: Add SRQ type field
Currently, there is only a single ("basic") type of SRQ, but with XRC support we will add a second. Prepare for this by defining an SRQ type and setting all current users to IB_SRQT_BASIC. Signed-off-by: Sean Hefty <sean.hefty@intel.com> Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca')
-rw-r--r--drivers/infiniband/hw/mthca/mthca_provider.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c
index 365fe0e1419..cb9a0b97680 100644
--- a/drivers/infiniband/hw/mthca/mthca_provider.c
+++ b/drivers/infiniband/hw/mthca/mthca_provider.c
@@ -438,6 +438,9 @@ static struct ib_srq *mthca_create_srq(struct ib_pd *pd,
438 struct mthca_srq *srq; 438 struct mthca_srq *srq;
439 int err; 439 int err;
440 440
441 if (init_attr->srq_type != IB_SRQT_BASIC)
442 return ERR_PTR(-ENOSYS);
443
441 srq = kmalloc(sizeof *srq, GFP_KERNEL); 444 srq = kmalloc(sizeof *srq, GFP_KERNEL);
442 if (!srq) 445 if (!srq)
443 return ERR_PTR(-ENOMEM); 446 return ERR_PTR(-ENOMEM);