Lines Matching refs:rt
25 struct rdma_restrack_root *rt; in rdma_restrack_init() local
28 dev->res = kcalloc(RDMA_RESTRACK_MAX, sizeof(*rt), GFP_KERNEL); in rdma_restrack_init()
32 rt = dev->res; in rdma_restrack_init()
35 xa_init_flags(&rt[i].xa, XA_FLAGS_ALLOC); in rdma_restrack_init()
61 struct rdma_restrack_root *rt = dev->res; in rdma_restrack_clean() local
103 kfree(rt); in rdma_restrack_clean()
113 struct rdma_restrack_root *rt = &dev->res[type]; in rdma_restrack_count() local
115 XA_STATE(xas, &rt->xa, 0); in rdma_restrack_count()
118 xa_lock(&rt->xa); in rdma_restrack_count()
121 xa_unlock(&rt->xa); in rdma_restrack_count()
223 struct rdma_restrack_root *rt; in rdma_restrack_add() local
229 rt = &dev->res[res->type]; in rdma_restrack_add()
235 ret = xa_insert(&rt->xa, qp->qp_num, res, GFP_KERNEL); in rdma_restrack_add()
242 ret = xa_insert(&rt->xa, counter->id, res, GFP_KERNEL); in rdma_restrack_add()
245 ret = xa_alloc_cyclic(&rt->xa, &res->id, res, xa_limit_32b, in rdma_restrack_add()
246 &rt->next_id, GFP_KERNEL); in rdma_restrack_add()
272 struct rdma_restrack_root *rt = &dev->res[type]; in rdma_restrack_get_byid() local
275 xa_lock(&rt->xa); in rdma_restrack_get_byid()
276 res = xa_load(&rt->xa, id); in rdma_restrack_get_byid()
279 xa_unlock(&rt->xa); in rdma_restrack_get_byid()
310 struct rdma_restrack_root *rt; in rdma_restrack_del() local
325 rt = &dev->res[res->type]; in rdma_restrack_del()
327 old = xa_erase(&rt->xa, res->id); in rdma_restrack_del()