Home
last modified time | relevance | path

Searched refs:__xa_alloc_cyclic (Results 1 – 3 of 3) sorted by relevance

/linux/include/linux/
H A Dxarray.h570 int __must_check __xa_alloc_cyclic(struct xarray *, u32 *id, void *entry,
969 * use __xa_alloc_cyclic() instead.
983 err = __xa_alloc_cyclic(xa, id, entry, limit, next, gfp); in xa_alloc_cyclic()
1008 * use __xa_alloc_cyclic() instead.
1022 err = __xa_alloc_cyclic(xa, id, entry, limit, next, gfp); in xa_alloc_cyclic_bh()
1047 * use __xa_alloc_cyclic() instead.
1061 err = __xa_alloc_cyclic(xa, id, entry, limit, next, gfp); in xa_alloc_cyclic_irq()
/linux/lib/
H A Dxarray.c2014 * __xa_alloc_cyclic() - Find somewhere to store this entry in the XArray.
2037 int __xa_alloc_cyclic(struct xarray *xa, u32 *id, void *entry, in __xa_alloc_cyclic() function
2064 EXPORT_SYMBOL(__xa_alloc_cyclic);
H A Dtest_xarray.c1086 /* check wrap-around return of __xa_alloc_cyclic() */ in check_xa_alloc_3()
1091 ret = __xa_alloc_cyclic(xa, &id, xa_mk_index(base), xa_limit_32b, in check_xa_alloc_3()