mirror of https://gitee.com/openkylin/linux.git
RDMA/ocrdma: Remove hardcoding of the max DPP QPs supported
Removing hardcoded value of max dpp qps and calculate the same from doorbell page size and WQE size. Signed-off-by: Devesh Sharma <devesh.sharma@emulex.com> Signed-off-by: Selvin Xavier <selvin.xavier@emulex.com> Signed-off-by: Roland Dreier <roland@purestorage.com>
This commit is contained in:
parent
efe4593720
commit
a53d77a334
|
@ -1236,7 +1236,6 @@ struct ocrdma_destroy_srq {
|
|||
|
||||
enum {
|
||||
OCRDMA_ALLOC_PD_ENABLE_DPP = BIT(16),
|
||||
OCRDMA_PD_MAX_DPP_ENABLED_QP = 8,
|
||||
OCRDMA_DPP_PAGE_SIZE = 4096
|
||||
};
|
||||
|
||||
|
|
|
@ -268,7 +268,8 @@ static struct ocrdma_pd *_ocrdma_alloc_pd(struct ocrdma_dev *dev,
|
|||
pd->dpp_enabled =
|
||||
ocrdma_get_asic_type(dev) == OCRDMA_ASIC_GEN_SKH_R;
|
||||
pd->num_dpp_qp =
|
||||
pd->dpp_enabled ? OCRDMA_PD_MAX_DPP_ENABLED_QP : 0;
|
||||
pd->dpp_enabled ? (dev->nic_info.db_page_size /
|
||||
dev->attr.wqe_size) : 0;
|
||||
}
|
||||
|
||||
retry:
|
||||
|
|
Loading…
Reference in New Issue