2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 PathScale, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40 #include <complib/cl_types_osd.h>
43 * Make sure that all structs defined in this file remain laid out so
44 * that they pack the same way on 32-bit and 64-bit architectures (to
45 * avoid incompatibility between 32-bit userspace and 64-bit kernels).
47 * - Do not use pointer types -- pass pointers in uint64_t instead.
48 * - Make sure that any structure larger than 4 bytes is padded to a
49 * multiple of 8 bytes. Otherwise the structure size will be
50 * different between 32-bit and 64-bit architectures.
53 struct ibv_get_context_resp {
64 struct ibv_alloc_pd_resp {
74 uint32_t access_flags;
79 struct ibv_reg_mr_resp {
85 struct ibv_create_cq {
89 uint64_t u_arm_db_page;
91 uint32_t arm_db_index;
92 uint32_t set_db_index;
93 uint32_t u_arm_db_index;
95 uint32_t lkey; /* used only by kernel */
99 struct ibv_create_cq_resp {
100 uint64_t user_handle;
102 struct ibv_reg_mr_resp mr;
107 struct ibv_create_srq {
108 uint64_t user_handle;
109 struct ibv_reg_mr mr;
110 uint32_t lkey; /* used only in kernel */
115 struct ibv_create_srq_resp {
116 struct ibv_reg_mr_resp mr;
118 uint64_t user_handle;
125 struct ibv_create_qp {
128 uint32_t sq_db_index;
129 uint32_t rq_db_index;
130 struct ibv_reg_mr mr;
131 uint64_t user_handle;
132 uint64_t send_cq_handle;
133 uint64_t recv_cq_handle;
135 uint32_t max_send_wr;
136 uint32_t max_recv_wr;
137 uint32_t max_send_sge;
138 uint32_t max_recv_sge;
139 uint32_t max_inline_data;
140 uint32_t lkey; /* used only in kernel */
147 struct ibv_create_qp_resp {
148 struct ibv_reg_mr_resp mr;
149 uint64_t user_handle;
152 uint32_t max_send_wr;
153 uint32_t max_recv_wr;
154 uint32_t max_send_sge;
155 uint32_t max_recv_sge;
156 uint32_t max_inline_data;
159 struct ibv_modify_qp_resp {
160 enum ibv_qp_attr_mask attr_mask;
165 struct ibv_create_ah {
166 uint64_t user_handle;
167 struct ibv_reg_mr mr;
170 struct ibv_create_ah_resp {
171 uint64_t user_handle;
173 struct ibv_reg_mr_resp mr;
177 #endif /* MX_ABI_H */