"&srq->pd->usecnt" and "&pd->usecnt" are different names for the same
reference count.  Use "&pd->usecnt" consistently for both the increment
and decrement.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/YyxFe3Pm0uzRuBkQ@kili
Signed-off-by: Leon Romanovsky <leon@kernel.org>
        ret = pd->device->ops.create_srq(srq, srq_init_attr, udata);
        if (ret) {
                rdma_restrack_put(&srq->res);
-               atomic_dec(&srq->pd->usecnt);
+               atomic_dec(&pd->usecnt);
                if (srq->srq_type == IB_SRQT_XRC && srq->ext.xrc.xrcd)
                        atomic_dec(&srq->ext.xrc.xrcd->usecnt);
                if (ib_srq_has_cq(srq->srq_type))