diff options
author | Ram Amrani <Ram.Amrani@cavium.com> | 2016-10-10 12:15:33 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-10-14 21:00:10 +0200 |
commit | a7efd7773e31b60f695816c27393fc717a9df127 (patch) | |
tree | 476259221ef9aaeee0d79d902fefb5c533eba47d /include/uapi/rdma/qedr-abi.h | |
parent | qedr: Add support for user context verbs (diff) | |
download | linux-a7efd7773e31b60f695816c27393fc717a9df127.tar.xz linux-a7efd7773e31b60f695816c27393fc717a9df127.zip |
qedr: Add support for PD,PKEY and CQ verbs
Add support for protection domain and completion queue verbs.
Signed-off-by: Rajesh Borundia <rajesh.borundia@cavium.com>
Signed-off-by: Ram Amrani <Ram.Amrani@cavium.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | include/uapi/rdma/qedr-abi.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/uapi/rdma/qedr-abi.h b/include/uapi/rdma/qedr-abi.h index f7c7fff7a877..b0fc5f2125e0 100644 --- a/include/uapi/rdma/qedr-abi.h +++ b/include/uapi/rdma/qedr-abi.h @@ -50,4 +50,23 @@ struct qedr_alloc_ucontext_resp { __u32 sges_per_srq_wr; __u32 max_cqes; }; + +struct qedr_alloc_pd_ureq { + __u64 rsvd1; +}; + +struct qedr_alloc_pd_uresp { + __u32 pd_id; +}; + +struct qedr_create_cq_ureq { + __u64 addr; + __u64 len; +}; + +struct qedr_create_cq_uresp { + __u32 db_offset; + __u16 icid; +}; + #endif /* __QEDR_USER_H__ */ |