Lines Matching refs:gfp
118 __xa_alloc(struct xarray *xa, uint32_t *pindex, void *ptr, struct xa_limit limit, gfp_t gfp) in __xa_alloc() argument
142 if (likely(gfp & M_WAITOK)) { in __xa_alloc()
154 xa_alloc(struct xarray *xa, uint32_t *pindex, void *ptr, struct xa_limit limit, gfp_t gfp) in xa_alloc() argument
162 retval = __xa_alloc(xa, pindex, ptr, limit, gfp); in xa_alloc()
176 uint32_t *pnext_index, gfp_t gfp) in __xa_alloc_cyclic() argument
205 if (likely(gfp & M_WAITOK)) { in __xa_alloc_cyclic()
220 uint32_t *pnext_index, gfp_t gfp) in xa_alloc_cyclic() argument
225 retval = __xa_alloc_cyclic(xa, pindex, ptr, limit, pnext_index, gfp); in xa_alloc_cyclic()
233 struct xa_limit limit, uint32_t *pnext_index, gfp_t gfp) in xa_alloc_cyclic_irq() argument
238 retval = __xa_alloc_cyclic(xa, pindex, ptr, limit, pnext_index, gfp); in xa_alloc_cyclic_irq()
252 __xa_insert(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in __xa_insert() argument
264 if (likely(gfp & M_WAITOK)) { in __xa_insert()
276 xa_insert(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in xa_insert() argument
281 retval = __xa_insert(xa, index, ptr, gfp); in xa_insert()
296 __xa_store(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in __xa_store() argument
312 if (likely(gfp & M_WAITOK)) { in __xa_store()
326 xa_store(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in xa_store() argument
331 retval = __xa_store(xa, index, ptr, gfp); in xa_store()