diff options
author | Sean Hefty <sean.hefty@intel.com> | 2013-05-29 10:09:23 -0700 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2013-06-20 23:35:37 -0700 |
commit | 5c438135adf90b33cb00e5351becf1e557bbdd9d (patch) | |
tree | abf0d3ed1ba29fffe24a5d14735ba571b4e8e43d /include/rdma | |
parent | e8160e15930969de709ba9b46df9571448b78ce5 (diff) | |
download | talos-obmc-linux-5c438135adf90b33cb00e5351becf1e557bbdd9d.tar.gz talos-obmc-linux-5c438135adf90b33cb00e5351becf1e557bbdd9d.zip |
RDMA/cma: Set qkey for AF_IB
Allow the user to specify the qkey when using AF_IB. The qkey is
added to struct rdma_ucm_conn_param in place of a reserved field, but
for backwards compatability, is only accessed if the associated
rdma_cm_id is using AF_IB.
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/rdma_cm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h index 1e6c3c7af898..966f90ba8d8a 100644 --- a/include/rdma/rdma_cm.h +++ b/include/rdma/rdma_cm.h @@ -98,6 +98,7 @@ struct rdma_conn_param { /* Fields below ignored if a QP is created on the rdma_cm_id. */ u8 srq; u32 qp_num; + u32 qkey; }; struct rdma_ud_param { |