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()
62 struct rdma_restrack_root *rt = dev->res; in rdma_restrack_clean() local
104 kfree(rt); in rdma_restrack_clean()
114 struct rdma_restrack_root *rt = &dev->res[type]; in rdma_restrack_count() local
116 XA_STATE(xas, &rt->xa, 0); in rdma_restrack_count()
119 xa_lock(&rt->xa); in rdma_restrack_count()
122 xa_unlock(&rt->xa); in rdma_restrack_count()
226 struct rdma_restrack_root *rt; in rdma_restrack_add() local
235 rt = &dev->res[res->type]; in rdma_restrack_add()
247 ret = xa_insert(&rt->xa, res->id, res, GFP_KERNEL); in rdma_restrack_add()
255 ret = xa_insert(&rt->xa, counter->id, res, GFP_KERNEL); in rdma_restrack_add()
258 ret = xa_alloc_cyclic(&rt->xa, &res->id, res, xa_limit_32b, in rdma_restrack_add()
259 &rt->next_id, GFP_KERNEL); in rdma_restrack_add()
287 struct rdma_restrack_root *rt = &dev->res[type]; in rdma_restrack_get_byid() local
290 xa_lock(&rt->xa); in rdma_restrack_get_byid()
291 res = xa_load(&rt->xa, id); in rdma_restrack_get_byid()
294 xa_unlock(&rt->xa); in rdma_restrack_get_byid()
325 struct rdma_restrack_root *rt; in rdma_restrack_del() local
343 rt = &dev->res[res->type]; in rdma_restrack_del()
345 old = xa_erase(&rt->xa, res->id); in rdma_restrack_del()