verbs.c (47ec38666210485de860ab24675acb3d2e7d4954) | verbs.c (33023fb85a42b53bf778bc025f9667b582282be4) |
---|---|
1/* QLogic qedr NIC Driver 2 * Copyright (c) 2015-2016 QLogic Corporation 3 * 4 * This software is available to you under a choice of one of two 5 * licenses. You may choose to be licensed under the terms of the GNU 6 * General Public License (GPL) Version 2, available from the file 7 * COPYING in the main directory of this source tree, or the 8 * OpenIB.org BSD license below: --- 98 unchanged lines hidden (view full) --- 107 attr->vendor_part_id = qattr->vendor_part_id; 108 attr->hw_ver = qattr->hw_ver; 109 attr->max_qp = qattr->max_qp; 110 attr->max_qp_wr = max_t(u32, qattr->max_sqe, qattr->max_rqe); 111 attr->device_cap_flags = IB_DEVICE_CURR_QP_STATE_MOD | 112 IB_DEVICE_RC_RNR_NAK_GEN | 113 IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_MGT_EXTENSIONS; 114 | 1/* QLogic qedr NIC Driver 2 * Copyright (c) 2015-2016 QLogic Corporation 3 * 4 * This software is available to you under a choice of one of two 5 * licenses. You may choose to be licensed under the terms of the GNU 6 * General Public License (GPL) Version 2, available from the file 7 * COPYING in the main directory of this source tree, or the 8 * OpenIB.org BSD license below: --- 98 unchanged lines hidden (view full) --- 107 attr->vendor_part_id = qattr->vendor_part_id; 108 attr->hw_ver = qattr->hw_ver; 109 attr->max_qp = qattr->max_qp; 110 attr->max_qp_wr = max_t(u32, qattr->max_sqe, qattr->max_rqe); 111 attr->device_cap_flags = IB_DEVICE_CURR_QP_STATE_MOD | 112 IB_DEVICE_RC_RNR_NAK_GEN | 113 IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_MGT_EXTENSIONS; 114 |
115 attr->max_sge = qattr->max_sge; | 115 attr->max_send_sge = qattr->max_sge; 116 attr->max_recv_sge = qattr->max_sge; |
116 attr->max_sge_rd = qattr->max_sge; 117 attr->max_cq = qattr->max_cq; 118 attr->max_cqe = qattr->max_cqe; 119 attr->max_mr = qattr->max_mr; 120 attr->max_mw = qattr->max_mw; 121 attr->max_pd = qattr->max_pd; 122 attr->atomic_cap = dev->atomic_cap; 123 attr->max_fmr = qattr->max_fmr; --- 3662 unchanged lines hidden --- | 117 attr->max_sge_rd = qattr->max_sge; 118 attr->max_cq = qattr->max_cq; 119 attr->max_cqe = qattr->max_cqe; 120 attr->max_mr = qattr->max_mr; 121 attr->max_mw = qattr->max_mw; 122 attr->max_pd = qattr->max_pd; 123 attr->atomic_cap = dev->atomic_cap; 124 attr->max_fmr = qattr->max_fmr; --- 3662 unchanged lines hidden --- |