]> git.openfabrics.org - ~shefty/libibverbs.git/commitdiff
refresh (create temporary patch)
authorSean Hefty <sean.hefty@intel.com>
Wed, 19 Sep 2012 16:36:46 +0000 (09:36 -0700)
committerSean Hefty <sean.hefty@intel.com>
Wed, 19 Sep 2012 16:36:46 +0000 (09:36 -0700)
meta
patches/refresh-temp [new file with mode: 0644]

diff --git a/meta b/meta
index d619c63bac9712498cb35d42f5106f2fa551442b..a4d370b37d4b212a842a6da97215aae1cfcbea45 100644 (file)
--- a/meta
+++ b/meta
@@ -1,6 +1,6 @@
 Version: 1
-Previous: bff47473a5d2716377b1ad06f305f2b7bbf96a50
-Head: 67050b19bd2041a3f0612c7038acd1ea939f1d02
+Previous: 83aa17b3da4493c689b9ab833091ee8123e88ba8
+Head: 7710e0bce4a6e19d14196f5667b9a4251de2a30c
 Applied:
   verbs-ext: 6fbf2b29ca68fc10b7ee47dc0c09f54db0b32320
   compat-ex: fb8aa3e0b8ed628564d7d774907fd17a72a23522
@@ -8,5 +8,6 @@ Applied:
   srq_ex: 4533085cc46f8b356d9f1ade0e737acfe744471b
   xrc_qp: 72c00c4918a57f1a1fb058097d015f0d8fb60308
   open_qp: 67050b19bd2041a3f0612c7038acd1ea939f1d02
+  refresh-temp: 7710e0bce4a6e19d14196f5667b9a4251de2a30c
 Unapplied:
 Hidden:
diff --git a/patches/refresh-temp b/patches/refresh-temp
new file mode 100644 (file)
index 0000000..55cd4a3
--- /dev/null
@@ -0,0 +1,218 @@
+Bottom: 2f0964be7f5ced89346f12c4ed6190a5af029461
+Top:    8108d1a32d2fb1da2879984d74deff21ebf9e2c3
+Author: Sean Hefty <sean.hefty@intel.com>
+Date:   2012-09-19 09:36:46 -0700
+
+Refresh of open_qp
+
+---
+
+diff --git a/include/infiniband/driver.h b/include/infiniband/driver.h
+index c86109d..968888f 100644
+--- a/include/infiniband/driver.h
++++ b/include/infiniband/driver.h
+@@ -126,6 +126,10 @@ int ibv_cmd_create_qp_ex(struct ibv_pd *pd,
+                        struct ibv_qp *qp, struct ibv_qp_init_attr_ex *attr_ex,
+                        struct ibv_create_qp *cmd, size_t cmd_size,
+                        struct ibv_create_qp_resp *resp, size_t resp_size);
++int ibv_cmd_open_qp(struct ibv_xrcd *xrcd,
++                  struct ibv_qp *qp, struct ibv_qp_open_attr *attr,
++                  struct ibv_open_qp *cmd, size_t cmd_size,
++                  struct ibv_create_qp_resp *resp, size_t resp_size);
+ int ibv_cmd_query_qp(struct ibv_qp *qp, struct ibv_qp_attr *qp_attr,
+                    int attr_mask,
+                    struct ibv_qp_init_attr *qp_init_attr,
+diff --git a/include/infiniband/kern-abi.h b/include/infiniband/kern-abi.h
+index b6d5ce9..e24fa4f 100644
+--- a/include/infiniband/kern-abi.h
++++ b/include/infiniband/kern-abi.h
+@@ -88,7 +88,8 @@ enum {
+       IB_USER_VERBS_CMD_POST_SRQ_RECV,
+       IB_USER_VERBS_CMD_OPEN_XRCD,
+       IB_USER_VERBS_CMD_CLOSE_XRCD,
+-      IB_USER_VERBS_CMD_CREATE_XSRQ
++      IB_USER_VERBS_CMD_CREATE_XSRQ,
++      IB_USER_VERBS_CMD_OPEN_QP
+ };
+ /*
+@@ -476,6 +477,20 @@ struct ibv_create_qp {
+       __u64 driver_data[0];
+ };
++struct ibv_open_qp {
++      __u32 command;
++      __u16 in_words;
++      __u16 out_words;
++      __u64 response;
++      __u64 user_handle;
++      __u32 pd_handle;
++      __u32 qpn;
++      __u8  qp_type;
++      __u8  reserved[7];
++      __u64 driver_data[0];
++};
++
++/* also used for open response */
+ struct ibv_create_qp_resp {
+       __u32 qp_handle;
+       __u32 qpn;
+@@ -852,7 +867,8 @@ enum {
+       IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL_V2 = -1,
+       IB_USER_VERBS_CMD_OPEN_XRCD_V2 = -1,
+       IB_USER_VERBS_CMD_CLOSE_XRCD_V2 = -1,
+-      IB_USER_VERBS_CMD_CREATE_XSRQ_V2 = -1
++      IB_USER_VERBS_CMD_CREATE_XSRQ_V2 = -1,
++      IB_USER_VERBS_CMD_OPEN_QP_V2 = -1
+ };
+ struct ibv_destroy_cq_v1 {
+diff --git a/include/infiniband/verbs.h b/include/infiniband/verbs.h
+index 68ea657..347b49e 100644
+--- a/include/infiniband/verbs.h
++++ b/include/infiniband/verbs.h
+@@ -504,6 +504,20 @@ struct ibv_qp_init_attr_ex {
+       struct ibv_xrcd        *xrcd;
+ };
++enum ibv_qp_open_attr_mask {
++      IBV_QP_OPEN_ATTR_CONTEXT        = 1 << 0,
++      IBV_QP_OPEN_ATTR_NUM            = 1 << 1,
++      IBV_QP_OPEN_ATTR_TYPE           = 1 << 2,
++      IBV_QP_OPEN_ATTR_RESERVED       = 1 << 3
++ };
++
++struct ibv_qp_open_attr {
++      uint32_t                comp_mask;
++      uint32_t                qp_num;
++      void                   *qp_context;
++      enum ibv_qp_type        qp_type;
++};
++
+ enum ibv_qp_attr_mask {
+       IBV_QP_STATE                    = 1 <<  0,
+       IBV_QP_CUR_STATE                = 1 <<  1,
+@@ -535,7 +549,8 @@ enum ibv_qp_state {
+       IBV_QPS_RTS,
+       IBV_QPS_SQD,
+       IBV_QPS_SQE,
+-      IBV_QPS_ERR
++      IBV_QPS_ERR,
++      IBV_QPS_UNKNOWN
+ };
+ enum ibv_mig_state {
+@@ -848,6 +863,8 @@ struct verbs_context {
+       int (*drv_new_func1) ();        new corresponding provider call of func1
+       int (*lib_new_func1) ();        New library call func1
+       */
++      struct ibv_qp *         (*open_qp)(struct ibv_xrc *xrcd,
++                                         struct ibv_qp_open_attr *attr);
+       struct ibv_qp *         (*create_qp_ex)(struct ibv_pd *pd,
+                                               struct ibv_qp_init_attr_ex *qp_init_attr_ex);
+       struct ibv_srq *        (*create_srq_ex)(struct ibv_pd *pd,
+@@ -1171,6 +1188,12 @@ struct ibv_qp *ibv_create_qp_ex(struct ibv_pd *pd,
+                               struct ibv_qp_init_attr_ex *qp_init_attr_ex);
+ /**
++ * ibv_open_qp - Open a shareable queue pair.
++ */
++struct ibv_qp *ibv_open_qp(struct ibv_xrcd *xrcd,
++                         struct ibv_qp_open_attr *qp_open_attr);
++
++/**
+  * ibv_modify_qp - Modify a queue pair.
+  */
+ int ibv_modify_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,
+diff --git a/src/cmd.c b/src/cmd.c
+index b9d96f9..d0950da 100644
+--- a/src/cmd.c
++++ b/src/cmd.c
+@@ -716,6 +716,28 @@ int ibv_cmd_create_qp(struct ibv_pd *pd,
+       return ret;
+ }
++int ibv_cmd_open_qp(struct ibv_xrcd *xrcd, struct ibv_qp *qp,
++                  struct ibv_qp_open_attr *attr,
++                  struct ibv_open_qp *cmd, size_t cmd_size,
++                  struct ibv_create_qp_resp *resp, size_t resp_size)
++{
++      IBV_INIT_CMD_RESP(cmd, cmd_size, OPEN_QP, resp, resp_size);
++
++      cmd->user_handle = (uintptr_t) qp;
++      cmd->pd_handle   = xrcd->handle;
++      cmd->qpn         = attr->qp_num;
++      cmd->qp_type     = attr->qp_type;
++
++      if (write(xrcd->context->cmd_fd, cmd, cmd_size) != cmd_size)
++              return errno;
++
++      VALGRIND_MAKE_MEM_DEFINED(resp, resp_size);
++
++      qp->handle     = resp->qp_handle;
++
++      return 0;
++}
++
+ int ibv_cmd_query_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,
+                    int attr_mask,
+                    struct ibv_qp_init_attr *init_attr,
+diff --git a/src/libibverbs.map b/src/libibverbs.map
+index 9ee1cf2..93903c2 100644
+--- a/src/libibverbs.map
++++ b/src/libibverbs.map
+@@ -106,5 +106,7 @@ IBVERBS_1.1 {
+               ibv_cmd_create_srq_ex;
+               ibv_create_qp_ex;
+               ibv_cmd_create_qp_ex;
++              ibv_open_qp;
++              ibv_cmd_open_qp;
+               
+ } IBVERBS_1.0;
+diff --git a/src/verbs.c b/src/verbs.c
+index 9c63917..7d55127 100644
+--- a/src/verbs.c
++++ b/src/verbs.c
+@@ -527,6 +527,42 @@ struct ibv_qp *__ibv_create_qp(struct ibv_pd *pd,
+ }
+ default_symver(__ibv_create_qp, ibv_create_qp);
++struct ibv_qp *__ibv_open_qp(struct ibv_xrcd *xrcd,
++                           struct ibv_qp_open_attr *qp_open_attr)
++{
++      struct verbs_context *context_ex;
++      struct ibv_qp *qp;
++
++      context_ex = verbs_get_ctx(xrcd->context);
++      if (!context_ex->open_qp ||
++          qp_open_attr->comp_mask >= IBV_QP_OPEN_ATTR_RESERVED) {
++              errno = ENOSYS;
++              return NULL;
++      }
++
++      qp = context_ex->open_qp(xrcd, qp_open_attr);
++      if (qp) {
++              qp->context    = xrcd->context;
++              qp->qp_context = qp_open_attr->qp_context;
++
++              qp->pd = NULL;
++              qp->send_cq = qp->recv_cq = NULL;
++              qp->srq = NULL;
++              qp->comp_mask |= IBV_QP_XRCD;
++              qp->xrcd = xrcd;
++
++              qp->qp_num  = qp_open_attr->qp_num;
++              qp->qp_type = qp_open_attr->qp_type;
++              qp->state   = IBV_QPS_UNKNOWN;
++              qp->events_completed = 0;
++              pthread_mutex_init(&qp->mutex, NULL);
++              pthread_cond_init(&qp->cond, NULL);
++      }
++
++      return qp;
++}
++default_symver(__ibv_open_qp, ibv_open_qp);
++
+ int __ibv_query_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,
+                  int attr_mask,
+                  struct ibv_qp_init_attr *init_attr)