> -----Original Message----- > From: Guoqing Jiang <guoqing.jiang@xxxxxxxxx> > Sent: Wednesday, November 29, 2023 4:24 AM > To: Bernard Metzler <BMT@xxxxxxxxxxxxxx>; jgg@xxxxxxxx; leon@xxxxxxxxxx > Cc: linux-rdma@xxxxxxxxxxxxxxx; guoqing.jiang@xxxxxxxxx > Subject: [EXTERNAL] [PATCH 4/4] RDMA/siw: Call orq_get_current if possible > > We can call it in siw_orq_empty. > > Signed-off-by: Guoqing Jiang <guoqing.jiang@xxxxxxxxx> > --- > drivers/infiniband/sw/siw/siw.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/infiniband/sw/siw/siw.h > b/drivers/infiniband/sw/siw/siw.h > index 2edba2a864bb..75253f2b3e3d 100644 > --- a/drivers/infiniband/sw/siw/siw.h > +++ b/drivers/infiniband/sw/siw/siw.h > @@ -657,7 +657,7 @@ static inline struct siw_sqe *orq_get_free(struct > siw_qp *qp) > > static inline int siw_orq_empty(struct siw_qp *qp) > { > - return qp->orq[qp->orq_get % qp->attrs.orq_size].flags == 0 ? 1 : 0; > + return orq_get_current(qp)->flags == 0 ? 1 : 0; > } > > static inline struct siw_sqe *irq_alloc_free(struct siw_qp *qp) > -- > 2.35.3 Please change the commit message. Something like 'Use orq_get_current() in siw_orq_empty()'. Otherwise looks good! Acked-by: Bernard Metzler <bmt@xxxxxxxxxxxxxx>