Symbol: idr_alloc_u32
drivers/gpu/drm/msm/msm_gem_submit.c
751
ret = idr_alloc_u32(&queue->fence_idr, submit->user_fence,
drivers/hwtracing/coresight/coresight-sysfs.c
246
ret = idr_alloc_u32(&path_idr, path, &hash, hash, GFP_KERNEL);
drivers/net/dsa/mv88e6xxx/chip.c
2412
err = idr_alloc_u32(&chip->policies, policy, &fs->location, 0xffffffff,
drivers/net/ethernet/marvell/prestera/prestera_acl.c
161
err = idr_alloc_u32(&acl->uid, NULL, &uid, U8_MAX, GFP_KERNEL);
drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c
754
err = idr_alloc_u32(&mlxsw_afa->cookie_idr, cookie, &cookie_index,
include/linux/idr.h
116
int __must_check idr_alloc_u32(struct idr *, void *ptr, u32 *id,
lib/idr.c
127
err = idr_alloc_u32(idr, ptr, &id, max, gfp);
lib/idr.c
130
err = idr_alloc_u32(idr, ptr, &id, max, gfp);
lib/idr.c
59
EXPORT_SYMBOL_GPL(idr_alloc_u32);
lib/idr.c
89
ret = idr_alloc_u32(idr, ptr, &id, end > 0 ? end - 1 : INT_MAX, gfp);
net/9p/client.c
744
ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
net/l2tp/l2tp_core.c
1647
ret = idr_alloc_u32(&pn->l2tp_tunnel_idr, NULL, &tunnel_id, tunnel_id,
net/l2tp/l2tp_core.c
571
err = idr_alloc_u32(&pn->l2tp_v3_session_idr, NULL,
net/l2tp/l2tp_core.c
587
err = idr_alloc_u32(&pn->l2tp_v2_session_idr, NULL,
net/sched/act_api.c
918
ret = idr_alloc_u32(&idrinfo->action_idr, ERR_PTR(-EBUSY), index, max,
net/sched/cls_api.c
996
err = idr_alloc_u32(&tn->idr, block, &block->index, block->index,
net/sched/cls_basic.c
206
err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
net/sched/cls_basic.c
209
err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
net/sched/cls_bpf.c
447
ret = idr_alloc_u32(&head->handle_idr, prog, &handle,
net/sched/cls_bpf.c
450
ret = idr_alloc_u32(&head->handle_idr, prog, &handle,
net/sched/cls_flower.c
2423
err = idr_alloc_u32(&head->handle_idr, NULL, &handle,
net/sched/cls_flower.c
2426
err = idr_alloc_u32(&head->handle_idr, NULL, &handle,
net/sched/cls_u32.c
1082
err = idr_alloc_u32(&ht->handle_idr, NULL, &handle,
net/sched/cls_u32.c
703
if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max, GFP_KERNEL)) {
net/sched/cls_u32.c
705
if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max,
net/sched/cls_u32.c
987
err = idr_alloc_u32(&tp_c->handle_idr, ht, &handle,
sound/soc/qcom/qdsp6/topology.c
102
ret = idr_alloc_u32(&apm->sub_graphs_idr, sg, &sub_graph_id, sub_graph_id, GFP_KERNEL);
sound/soc/qcom/qdsp6/topology.c
144
ret = idr_alloc_u32(&apm->containers_idr, cont, &container_id, container_id, GFP_KERNEL);
sound/soc/qcom/qdsp6/topology.c
189
ret = idr_alloc_u32(&apm->modules_idr, mod, &module_id, module_id, GFP_KERNEL);
sound/soc/qcom/qdsp6/topology.c
52
ret = idr_alloc_u32(&apm->graph_info_idr, info, &graph_id, graph_id, GFP_KERNEL);
tools/testing/radix-tree/idr-test.c
207
BUG_ON(idr_alloc_u32(idr, DUMMY_PTR, &id, id, GFP_KERNEL));
tools/testing/radix-tree/idr-test.c
209
BUG_ON(idr_alloc_u32(idr, DUMMY_PTR, &id, id, GFP_KERNEL) != -ENOSPC);