Lines Matching defs:gfp
955 ida_alloc_min(struct ida *ida, unsigned int min, gfp_t gfp)
957 return idr_alloc(&ida->idr, NULL, min, INT_MAX, gfp);
961 ida_alloc_max(struct ida *ida, unsigned int max, gfp_t gfp)
963 return idr_alloc(&ida->idr, NULL, 0, max - 1, gfp);
1007 gfp_t gfp)
1016 if (gfp & GFP_NOWAIT) {
1051 struct xarray_range xr, u32 *next, gfp_t gfp)
1053 int r = __xa_alloc(xa, id, entry, xr, gfp);
1087 __xa_store(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp)
1106 if (gfp & GFP_NOWAIT) {
3281 int gfp)