Lines Matching defs:page
217 struct page *page;
228 page = alloc_page(GFP_KERNEL);
229 if (!page) {
230 DMERR("Couldn't alloc log page");
235 ptr = kmap_local_page(page);
243 ret = bio_add_page(bio, page, lc->sectorsize, 0);
245 DMERR("Couldn't add page to the log block");
252 __free_page(page);
263 struct page *page;
284 page = alloc_page(GFP_KERNEL);
285 if (!page) {
286 DMERR("Couldn't alloc inline data page");
290 ptr = kmap_local_page(page);
296 ret = bio_add_page(bio, page, pg_sectorlen, 0);
298 DMERR("Couldn't add page of inline data");
299 __free_page(page);
363 * The page offset is always 0 because we allocate a new page
382 DMERR("Couldn't add page on new bio?");
729 * can't just hold onto the page until some later point, we have to
733 struct page *page;
736 page = alloc_page(GFP_NOIO);
737 if (!page) {
738 DMERR("Error allocing page");
746 dst = kmap_local_page(page);
749 block->vecs[i].bv_page = page;