Commit a181c4c8 authored by Bob Pearson's avatar Bob Pearson Committed by Jason Gunthorpe

RDMA/rxe: Collect cleanup mca code in a subroutine

Collect cleanup code for struct rxe_mca into a subroutine,
__rxe_cleanup_mca() called in rxe_detach_mcg() in rxe_mcast.c.

Link: https://lore.kernel.org/r/20220223230706.50332-4-rpearsonhpe@gmail.comSigned-off-by: default avatarBob Pearson <rpearsonhpe@gmail.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 4a4f1073
...@@ -339,13 +339,31 @@ static int rxe_attach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp, ...@@ -339,13 +339,31 @@ static int rxe_attach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp,
return err; return err;
} }
/**
* __rxe_cleanup_mca - cleanup mca object holding lock
* @mca: mca object
* @mcg: mcg object
*
* Context: caller must hold a reference to mcg and rxe->mcg_lock
*/
static void __rxe_cleanup_mca(struct rxe_mca *mca, struct rxe_mcg *mcg)
{
list_del(&mca->qp_list);
atomic_dec(&mcg->qp_num);
atomic_dec(&mcg->rxe->mcg_attach);
atomic_dec(&mca->qp->mcg_num);
rxe_drop_ref(mca->qp);
kfree(mca);
}
static int rxe_detach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp, static int rxe_detach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp,
union ib_gid *mgid) union ib_gid *mgid)
{ {
struct rxe_mcg *mcg; struct rxe_mcg *mcg;
struct rxe_mca *mca, *tmp; struct rxe_mca *mca, *tmp;
unsigned long flags; unsigned long flags;
int err;
mcg = rxe_lookup_mcg(rxe, mgid); mcg = rxe_lookup_mcg(rxe, mgid);
if (!mcg) if (!mcg)
...@@ -354,37 +372,30 @@ static int rxe_detach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp, ...@@ -354,37 +372,30 @@ static int rxe_detach_mcg(struct rxe_dev *rxe, struct rxe_qp *qp,
spin_lock_irqsave(&rxe->mcg_lock, flags); spin_lock_irqsave(&rxe->mcg_lock, flags);
list_for_each_entry_safe(mca, tmp, &mcg->qp_list, qp_list) { list_for_each_entry_safe(mca, tmp, &mcg->qp_list, qp_list) {
if (mca->qp == qp) { if (mca->qp == qp) {
list_del(&mca->qp_list); __rxe_cleanup_mca(mca, mcg);
atomic_dec(&qp->mcg_num);
atomic_dec(&rxe->mcg_attach);
rxe_drop_ref(qp);
/* if the number of qp's attached to the /* if the number of qp's attached to the
* mcast group falls to zero go ahead and * mcast group falls to zero go ahead and
* tear it down. This will not free the * tear it down. This will not free the
* object since we are still holding a ref * object since we are still holding a ref
* from the get key above. * from the get key above
*/ */
if (atomic_dec_return(&mcg->qp_num) <= 0) if (atomic_read(&mcg->qp_num) <= 0)
__rxe_destroy_mcg(mcg); __rxe_destroy_mcg(mcg);
/* drop the ref from get key. This will free the /* drop the ref from get key. This will free the
* object if qp_num is zero. * object if qp_num is zero.
*/ */
kref_put(&mcg->ref_cnt, rxe_cleanup_mcg); kref_put(&mcg->ref_cnt, rxe_cleanup_mcg);
kfree(mca);
err = 0; spin_unlock_irqrestore(&rxe->mcg_lock, flags);
goto out_unlock; return 0;
} }
} }
/* we didn't find the qp on the list */ /* we didn't find the qp on the list */
kref_put(&mcg->ref_cnt, rxe_cleanup_mcg);
err = -EINVAL;
out_unlock:
spin_unlock_irqrestore(&rxe->mcg_lock, flags); spin_unlock_irqrestore(&rxe->mcg_lock, flags);
return err; return -EINVAL;
} }
int rxe_attach_mcast(struct ib_qp *ibqp, union ib_gid *mgid, u16 mlid) int rxe_attach_mcast(struct ib_qp *ibqp, union ib_gid *mgid, u16 mlid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment