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
34 * $Id: kern-abi.h 4019 2005-11-11 00:33:09Z sean.hefty $
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_qp {
110 uint32_t sq_db_index;
111 uint32_t rq_db_index;
112 struct ibv_reg_mr mr;
113 uint64_t user_handle;
114 uint64_t send_cq_handle;
115 uint64_t recv_cq_handle;
117 uint32_t max_send_wr;
118 uint32_t max_recv_wr;
119 uint32_t max_send_sge;
120 uint32_t max_recv_sge;
121 uint32_t max_inline_data;
122 uint32_t lkey; /* used only in kernel */
129 struct ibv_create_qp_resp {
130 struct ibv_reg_mr_resp mr;
131 uint64_t user_handle;
134 uint32_t max_send_wr;
135 uint32_t max_recv_wr;
136 uint32_t max_send_sge;
137 uint32_t max_recv_sge;
138 uint32_t max_inline_data;
141 struct ibv_modify_qp_resp {
142 enum ibv_qp_attr_mask attr_mask;
147 struct ibv_create_ah {
148 uint64_t user_handle;
149 struct ibv_reg_mr mr;
152 struct ibv_create_ah_resp {
153 uint64_t user_handle;
155 struct ibv_reg_mr_resp mr;
159 #endif /* MX_ABI_H */