Lines Matching defs:page
59 [FAULT_PAGE_ALLOC] = "page alloc",
60 [FAULT_PAGE_GET] = "page get",
1333 /* our cp_error case, we can wait for any writeback page */
2073 struct page *page;
2084 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
2085 if (IS_ERR(page)) {
2086 if (PTR_ERR(page) == -ENOMEM) {
2092 return PTR_ERR(page);
2095 lock_page(page);
2097 if (unlikely(page->mapping != mapping)) {
2098 f2fs_put_page(page, 1);
2101 if (unlikely(!PageUptodate(page))) {
2102 f2fs_put_page(page, 1);
2107 memcpy_from_page(data, page, offset, tocopy);
2108 f2fs_put_page(page, 1);
2127 struct page *page;
2137 &page, &fsdata);
2148 memcpy_to_page(page, offset, data, tocopy);
2151 page, fsdata);
2868 /* Currently, support only 4KB page cache size */
3696 /* disallow all the data/node/meta page writes */