aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mthca
diff options
context:
space:
mode:
authorEli Cohen <eli@dev.mellanox.co.il>2008-04-17 00:09:27 -0400
committerRoland Dreier <rolandd@cisco.com>2008-04-17 00:09:27 -0400
commitb846f25aa2a353355aec5202fe4dbdc6674dfc64 (patch)
tree2daf137a2974c1ced5363020e88057c802cea5a5 /drivers/infiniband/hw/mthca
parentd84e0b28d3a0b41fc574ea50d60522ae0fba75f4 (diff)
IB/core: Add creation flags to struct ib_qp_init_attr
Add a create_flags member to struct ib_qp_init_attr that will allow a kernel verbs consumer to create a pass special flags when creating a QP. Add a flag value for telling low-level drivers that a QP will be used for IPoIB UD LSO. The create_flags member will also be useful for XRC and ehca low-latency QP support. Since no create_flags handling is implemented yet, add code to all low-level drivers to return -EINVAL if create_flags is non-zero. Signed-off-by: Eli Cohen <eli@mellanox.co.il> Signed-off-by: Roland Dreier <rolandd@cisco.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 ee9bc1456226..81b257e18bb6 100644
--- a/drivers/infiniband/hw/mthca/mthca_provider.c
+++ b/drivers/infiniband/hw/mthca/mthca_provider.c
@@ -540,6 +540,9 @@ static struct ib_qp *mthca_create_qp(struct ib_pd *pd,
540 struct mthca_qp *qp; 540 struct mthca_qp *qp;
541 int err; 541 int err;
542 542
543 if (init_attr->create_flags)
544 return ERR_PTR(-EINVAL);
545
543 switch (init_attr->qp_type) { 546 switch (init_attr->qp_type) {
544 case IB_QPT_RC: 547 case IB_QPT_RC:
545 case IB_QPT_UC: 548 case IB_QPT_UC: