Lines Matching defs:gfp
479 static int alloc_stripe_pages(struct stripe_head *sh, gfp_t gfp)
489 p = alloc_page(gfp);
543 static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
552 if (!(page = alloc_page(gfp))) {
560 if (alloc_stripe_pages(sh, gfp))
2371 static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
2376 sh = kmem_cache_zalloc(sc, gfp);
2389 sh->ppl_page = alloc_page(gfp);
2404 static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
2408 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size, conf);
2412 if (grow_buffers(sh, gfp)) {