mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
hw/rdma: Add support for managing SRQ resource
Adding the required functions and definitions for support managing the shared receive queues (SRQs). Signed-off-by: Kamal Heib <kamalheib1@gmail.com> Message-Id: <20190403113343.26384-3-kamalheib1@gmail.com> Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
This commit is contained in:
parent
e926c9f1bc
commit
cdc84058bc
3 changed files with 111 additions and 0 deletions
|
@ -544,6 +544,96 @@ void rdma_rm_dealloc_qp(RdmaDeviceResources *dev_res, uint32_t qp_handle)
|
|||
rdma_res_tbl_dealloc(&dev_res->qp_tbl, qp->qpn);
|
||||
}
|
||||
|
||||
RdmaRmSRQ *rdma_rm_get_srq(RdmaDeviceResources *dev_res, uint32_t srq_handle)
|
||||
{
|
||||
return rdma_res_tbl_get(&dev_res->srq_tbl, srq_handle);
|
||||
}
|
||||
|
||||
int rdma_rm_alloc_srq(RdmaDeviceResources *dev_res, uint32_t pd_handle,
|
||||
uint32_t max_wr, uint32_t max_sge, uint32_t srq_limit,
|
||||
uint32_t *srq_handle, void *opaque)
|
||||
{
|
||||
RdmaRmSRQ *srq;
|
||||
RdmaRmPD *pd;
|
||||
int rc;
|
||||
|
||||
pd = rdma_rm_get_pd(dev_res, pd_handle);
|
||||
if (!pd) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
srq = rdma_res_tbl_alloc(&dev_res->srq_tbl, srq_handle);
|
||||
if (!srq) {
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
rc = rdma_backend_create_srq(&srq->backend_srq, &pd->backend_pd,
|
||||
max_wr, max_sge, srq_limit);
|
||||
if (rc) {
|
||||
rc = -EIO;
|
||||
goto out_dealloc_srq;
|
||||
}
|
||||
|
||||
srq->opaque = opaque;
|
||||
|
||||
return 0;
|
||||
|
||||
out_dealloc_srq:
|
||||
rdma_res_tbl_dealloc(&dev_res->srq_tbl, *srq_handle);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
int rdma_rm_query_srq(RdmaDeviceResources *dev_res, uint32_t srq_handle,
|
||||
struct ibv_srq_attr *srq_attr)
|
||||
{
|
||||
RdmaRmSRQ *srq;
|
||||
|
||||
srq = rdma_rm_get_srq(dev_res, srq_handle);
|
||||
if (!srq) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return rdma_backend_query_srq(&srq->backend_srq, srq_attr);
|
||||
}
|
||||
|
||||
int rdma_rm_modify_srq(RdmaDeviceResources *dev_res, uint32_t srq_handle,
|
||||
struct ibv_srq_attr *srq_attr, int srq_attr_mask)
|
||||
{
|
||||
RdmaRmSRQ *srq;
|
||||
|
||||
srq = rdma_rm_get_srq(dev_res, srq_handle);
|
||||
if (!srq) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((srq_attr_mask & IBV_SRQ_LIMIT) &&
|
||||
(srq_attr->srq_limit == 0)) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((srq_attr_mask & IBV_SRQ_MAX_WR) &&
|
||||
(srq_attr->max_wr == 0)) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return rdma_backend_modify_srq(&srq->backend_srq, srq_attr,
|
||||
srq_attr_mask);
|
||||
}
|
||||
|
||||
void rdma_rm_dealloc_srq(RdmaDeviceResources *dev_res, uint32_t srq_handle)
|
||||
{
|
||||
RdmaRmSRQ *srq;
|
||||
|
||||
srq = rdma_rm_get_srq(dev_res, srq_handle);
|
||||
if (!srq) {
|
||||
return;
|
||||
}
|
||||
|
||||
rdma_backend_destroy_srq(&srq->backend_srq, dev_res);
|
||||
rdma_res_tbl_dealloc(&dev_res->srq_tbl, srq_handle);
|
||||
}
|
||||
|
||||
void *rdma_rm_get_cqe_ctx(RdmaDeviceResources *dev_res, uint32_t cqe_ctx_id)
|
||||
{
|
||||
void **cqe_ctx;
|
||||
|
@ -673,6 +763,8 @@ int rdma_rm_init(RdmaDeviceResources *dev_res, struct ibv_device_attr *dev_attr)
|
|||
res_tbl_init("CQE_CTX", &dev_res->cqe_ctx_tbl, dev_attr->max_qp *
|
||||
dev_attr->max_qp_wr, sizeof(void *));
|
||||
res_tbl_init("UC", &dev_res->uc_tbl, MAX_UCS, sizeof(RdmaRmUC));
|
||||
res_tbl_init("SRQ", &dev_res->srq_tbl, dev_attr->max_srq,
|
||||
sizeof(RdmaRmSRQ));
|
||||
|
||||
init_ports(dev_res);
|
||||
|
||||
|
@ -691,6 +783,7 @@ void rdma_rm_fini(RdmaDeviceResources *dev_res, RdmaBackendDev *backend_dev,
|
|||
|
||||
fini_ports(dev_res, backend_dev, ifname);
|
||||
|
||||
res_tbl_free(&dev_res->srq_tbl);
|
||||
res_tbl_free(&dev_res->uc_tbl);
|
||||
res_tbl_free(&dev_res->cqe_ctx_tbl);
|
||||
res_tbl_free(&dev_res->qp_tbl);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue