Home
last modified time | relevance | path

Searched refs:max_cqes (Results 1 - 25 of 50) sorted by relevance

12

/kernel/linux/patches/linux-4.19/prebuilts/usr/include/rdma/
H A Dqedr-abi.h19 __u32 max_cqes; member
/kernel/linux/linux-5.10/include/uapi/rdma/
H A Dqedr-abi.h75 __u32 max_cqes; member
/kernel/linux/linux-6.6/include/uapi/rdma/
H A Dqedr-abi.h75 __u32 max_cqes; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/rdma/
H A Dqedr-abi.h52 __u32 max_cqes; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/rdma/
H A Dqedr-abi.h52 __u32 max_cqes; member
/kernel/linux/linux-5.10/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c75 if (hba->max_cqes < num_elements_per_pg) in bnx2i_adjust_qp_size()
76 hba->max_cqes = num_elements_per_pg; in bnx2i_adjust_qp_size()
77 else if (hba->max_cqes % num_elements_per_pg) in bnx2i_adjust_qp_size()
78 hba->max_cqes = (hba->max_cqes + num_elements_per_pg - 1) & in bnx2i_adjust_qp_size()
1088 ep->qp.cq_mem_size = hba->max_cqes * BNX2I_CQE_SIZE; in bnx2i_alloc_qp_resc()
1118 ep->qp.cq_last_qe = &ep->qp.cq_first_qe[hba->max_cqes - 1]; in bnx2i_alloc_qp_resc()
1121 ep->qp.cqe_left = hba->max_cqes; in bnx2i_alloc_qp_resc()
1123 ep->qp.cqe_size = hba->max_cqes; in bnx2i_alloc_qp_resc()
1280 iscsi_init.cq_num_wqes = hba->max_cqes; in bnx2i_send_fw_iscsi_init_msg()
[all...]
H A Dbnx2i_iscsi.c856 hba->max_cqes = hba->max_sqes + rq_size; in bnx2i_alloc_hba()
858 if (hba->max_cqes > BNX2I_5770X_CQ_WQES_MAX) in bnx2i_alloc_hba()
859 hba->max_cqes = BNX2I_5770X_CQ_WQES_MAX; in bnx2i_alloc_hba()
860 } else if (hba->max_cqes > BNX2I_570X_CQ_WQES_MAX) in bnx2i_alloc_hba()
861 hba->max_cqes = BNX2I_570X_CQ_WQES_MAX; in bnx2i_alloc_hba()
H A Dbnx2i.h358 * @max_cqes: CQ size
432 u32 max_cqes; member
H A Dbnx2i_init.c391 stats->rxq_size = hba->max_cqes; in bnx2i_get_stats()
/kernel/linux/linux-6.6/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c75 if (hba->max_cqes < num_elements_per_pg) in bnx2i_adjust_qp_size()
76 hba->max_cqes = num_elements_per_pg; in bnx2i_adjust_qp_size()
77 else if (hba->max_cqes % num_elements_per_pg) in bnx2i_adjust_qp_size()
78 hba->max_cqes = (hba->max_cqes + num_elements_per_pg - 1) & in bnx2i_adjust_qp_size()
1088 ep->qp.cq_mem_size = hba->max_cqes * BNX2I_CQE_SIZE; in bnx2i_alloc_qp_resc()
1118 ep->qp.cq_last_qe = &ep->qp.cq_first_qe[hba->max_cqes - 1]; in bnx2i_alloc_qp_resc()
1121 ep->qp.cqe_left = hba->max_cqes; in bnx2i_alloc_qp_resc()
1123 ep->qp.cqe_size = hba->max_cqes; in bnx2i_alloc_qp_resc()
1280 iscsi_init.cq_num_wqes = hba->max_cqes; in bnx2i_send_fw_iscsi_init_msg()
[all...]
H A Dbnx2i_iscsi.c856 hba->max_cqes = hba->max_sqes + rq_size; in bnx2i_alloc_hba()
858 if (hba->max_cqes > BNX2I_5770X_CQ_WQES_MAX) in bnx2i_alloc_hba()
859 hba->max_cqes = BNX2I_5770X_CQ_WQES_MAX; in bnx2i_alloc_hba()
860 } else if (hba->max_cqes > BNX2I_570X_CQ_WQES_MAX) in bnx2i_alloc_hba()
861 hba->max_cqes = BNX2I_570X_CQ_WQES_MAX; in bnx2i_alloc_hba()
H A Dbnx2i.h358 * @max_cqes: CQ size
432 u32 max_cqes; member
H A Dbnx2i_init.c391 stats->rxq_size = hba->max_cqes; in bnx2i_get_stats()
/kernel/linux/linux-5.10/drivers/infiniband/hw/hns/
H A Dhns_roce_cq.c254 if (cq_entries < 1 || cq_entries > hr_dev->caps.max_cqes) { in hns_roce_create_cq()
256 cq_entries, hr_dev->caps.max_cqes); in hns_roce_create_cq()
/kernel/linux/linux-6.6/drivers/infiniband/hw/hns/
H A Dhns_roce_cq.c284 if (!attr->cqe || attr->cqe > hr_dev->caps.max_cqes) { in verify_cq_create_attr()
286 attr->cqe, hr_dev->caps.max_cqes); in verify_cq_create_attr()
/kernel/linux/linux-5.10/drivers/infiniband/hw/mthca/
H A Dmthca_provider.c104 props->max_cqe = mdev->limits.max_cqes; in mthca_query_device()
617 if (entries < 1 || entries > to_mdev(ibdev)->limits.max_cqes) in mthca_create_cq()
730 if (entries < 1 || entries > dev->limits.max_cqes) in mthca_resize_cq()
H A Dmthca_dev.h155 int max_cqes; member
/kernel/linux/linux-5.10/drivers/infiniband/hw/mlx4/
H A Dcq.c188 if (entries < 1 || entries > dev->dev->caps.max_cqes) in mlx4_ib_create_cq()
388 if (entries < 1 || entries > dev->dev->caps.max_cqes) { in mlx4_ib_resize_cq()
399 if (entries > dev->dev->caps.max_cqes + 1) { in mlx4_ib_resize_cq()
/kernel/linux/linux-6.6/drivers/infiniband/hw/mthca/
H A Dmthca_provider.c96 props->max_cqe = mdev->limits.max_cqes; in mthca_query_device()
591 if (entries < 1 || entries > to_mdev(ibdev)->limits.max_cqes) in mthca_create_cq()
704 if (entries < 1 || entries > dev->limits.max_cqes) in mthca_resize_cq()
H A Dmthca_dev.h155 int max_cqes; member
/kernel/linux/linux-6.6/drivers/infiniband/hw/mlx4/
H A Dcq.c188 if (entries < 1 || entries > dev->dev->caps.max_cqes) in mlx4_ib_create_cq()
388 if (entries < 1 || entries > dev->dev->caps.max_cqes) { in mlx4_ib_resize_cq()
399 if (entries > dev->dev->caps.max_cqes + 1) { in mlx4_ib_resize_cq()
/kernel/linux/linux-5.10/drivers/scsi/bnx2fc/
H A Dbnx2fc_tgt.c379 tgt->max_cqes = BNX2FC_CQ_WQES_MAX; in bnx2fc_init_tgt()
683 tgt->cq_mem_size = tgt->max_cqes * BNX2FC_CQ_WQE_SIZE; in bnx2fc_alloc_session_resc()
H A Dbnx2fc.h316 u32 max_cqes; member
/kernel/linux/linux-6.6/drivers/scsi/bnx2fc/
H A Dbnx2fc_tgt.c379 tgt->max_cqes = BNX2FC_CQ_WQES_MAX; in bnx2fc_init_tgt()
683 tgt->cq_mem_size = tgt->max_cqes * BNX2FC_CQ_WQE_SIZE; in bnx2fc_alloc_session_resc()
H A Dbnx2fc.h313 u32 max_cqes; member

Completed in 38 milliseconds

12