rxe.c (7731b8bc94e599c9a79e428f3359ff2c34b7576a) rxe.c (33023fb85a42b53bf778bc025f9667b582282be4)
1/*
2 * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the

--- 77 unchanged lines hidden (view full) ---

86 rxe->attr.max_mr_size = RXE_MAX_MR_SIZE;
87 rxe->attr.page_size_cap = RXE_PAGE_SIZE_CAP;
88 rxe->attr.vendor_id = RXE_VENDOR_ID;
89 rxe->attr.vendor_part_id = RXE_VENDOR_PART_ID;
90 rxe->attr.hw_ver = RXE_HW_VER;
91 rxe->attr.max_qp = RXE_MAX_QP;
92 rxe->attr.max_qp_wr = RXE_MAX_QP_WR;
93 rxe->attr.device_cap_flags = RXE_DEVICE_CAP_FLAGS;
1/*
2 * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the

--- 77 unchanged lines hidden (view full) ---

86 rxe->attr.max_mr_size = RXE_MAX_MR_SIZE;
87 rxe->attr.page_size_cap = RXE_PAGE_SIZE_CAP;
88 rxe->attr.vendor_id = RXE_VENDOR_ID;
89 rxe->attr.vendor_part_id = RXE_VENDOR_PART_ID;
90 rxe->attr.hw_ver = RXE_HW_VER;
91 rxe->attr.max_qp = RXE_MAX_QP;
92 rxe->attr.max_qp_wr = RXE_MAX_QP_WR;
93 rxe->attr.device_cap_flags = RXE_DEVICE_CAP_FLAGS;
94 rxe->attr.max_sge = RXE_MAX_SGE;
94 rxe->attr.max_send_sge = RXE_MAX_SGE;
95 rxe->attr.max_recv_sge = RXE_MAX_SGE;
95 rxe->attr.max_sge_rd = RXE_MAX_SGE_RD;
96 rxe->attr.max_cq = RXE_MAX_CQ;
97 rxe->attr.max_cqe = (1 << RXE_MAX_LOG_CQE) - 1;
98 rxe->attr.max_mr = RXE_MAX_MR;
99 rxe->attr.max_pd = RXE_MAX_PD;
100 rxe->attr.max_qp_rd_atom = RXE_MAX_QP_RD_ATOM;
101 rxe->attr.max_ee_rd_atom = RXE_MAX_EE_RD_ATOM;
102 rxe->attr.max_res_rd_atom = RXE_MAX_RES_RD_ATOM;

--- 269 unchanged lines hidden ---
96 rxe->attr.max_sge_rd = RXE_MAX_SGE_RD;
97 rxe->attr.max_cq = RXE_MAX_CQ;
98 rxe->attr.max_cqe = (1 << RXE_MAX_LOG_CQE) - 1;
99 rxe->attr.max_mr = RXE_MAX_MR;
100 rxe->attr.max_pd = RXE_MAX_PD;
101 rxe->attr.max_qp_rd_atom = RXE_MAX_QP_RD_ATOM;
102 rxe->attr.max_ee_rd_atom = RXE_MAX_EE_RD_ATOM;
103 rxe->attr.max_res_rd_atom = RXE_MAX_RES_RD_ATOM;

--- 269 unchanged lines hidden ---