diff options
Diffstat (limited to 'include/uapi/rdma/ib_user_verbs.h')
| -rw-r--r-- | include/uapi/rdma/ib_user_verbs.h | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/include/uapi/rdma/ib_user_verbs.h b/include/uapi/rdma/ib_user_verbs.h index 81aba3a73aa..805711ea200 100644 --- a/include/uapi/rdma/ib_user_verbs.h +++ b/include/uapi/rdma/ib_user_verbs.h @@ -261,6 +261,22 @@ struct ib_uverbs_dereg_mr {  	__u32 mr_handle;  }; +struct ib_uverbs_alloc_mw { +	__u64 response; +	__u32 pd_handle; +	__u8  mw_type; +	__u8  reserved[3]; +}; + +struct ib_uverbs_alloc_mw_resp { +	__u32 mw_handle; +	__u32 rkey; +}; + +struct ib_uverbs_dealloc_mw { +	__u32 mw_handle; +}; +  struct ib_uverbs_create_comp_channel {  	__u64 response;  };  |