Searched refs:xpage (Results 1 – 5 of 5) sorted by relevance
/Linux-v5.15/fs/f2fs/ |
D | xattr.c | 308 struct page *xpage; in read_xattr_block() local 312 xpage = f2fs_get_node_page(sbi, xnid); in read_xattr_block() 313 if (IS_ERR(xpage)) in read_xattr_block() 314 return PTR_ERR(xpage); in read_xattr_block() 316 xattr_addr = page_address(xpage); in read_xattr_block() 318 f2fs_put_page(xpage, 1); in read_xattr_block() 443 struct page *xpage; in write_all_xattrs() local 482 xpage = f2fs_get_node_page(sbi, F2FS_I(inode)->i_xattr_nid); in write_all_xattrs() 483 if (IS_ERR(xpage)) { in write_all_xattrs() 484 err = PTR_ERR(xpage); in write_all_xattrs() [all …]
|
D | node.c | 2696 struct page *xpage; in f2fs_recover_xattr_data() local 2717 xpage = f2fs_new_node_page(&dn, XATTR_NODE_OFFSET); in f2fs_recover_xattr_data() 2718 if (IS_ERR(xpage)) { in f2fs_recover_xattr_data() 2720 return PTR_ERR(xpage); in f2fs_recover_xattr_data() 2727 memcpy(F2FS_NODE(xpage), F2FS_NODE(page), VALID_XATTR_BLOCK_SIZE); in f2fs_recover_xattr_data() 2729 set_page_dirty(xpage); in f2fs_recover_xattr_data() 2730 f2fs_put_page(xpage, 1); in f2fs_recover_xattr_data()
|
/Linux-v5.15/fs/ntfs/ |
D | compress.c | 154 const int dest_max_ofs, const int xpage, char *xpage_done, in ntfs_decompress() argument 221 if (di == xpage) in ntfs_decompress() 499 unsigned int xpage, max_page, cur_page, cur_ofs, i; in ntfs_read_compressed_block() local 536 xpage = index - offset; in ntfs_read_compressed_block() 537 pages[xpage] = page; in ntfs_read_compressed_block() 549 if (xpage >= max_page) { in ntfs_read_compressed_block() 562 if (i != xpage) in ntfs_read_compressed_block() 750 if (cur_page == xpage) in ntfs_read_compressed_block() 829 if (cur2_page == xpage) in ntfs_read_compressed_block() 846 &cur_ofs, cb_max_page, cb_max_ofs, xpage, in ntfs_read_compressed_block() [all …]
|
/Linux-v5.15/fs/fscache/ |
D | page.c | 66 struct page *xpage; in __fscache_maybe_release_page() local 104 xpage = radix_tree_delete(&cookie->stores, page->index); in __fscache_maybe_release_page() 108 if (xpage) { in __fscache_maybe_release_page() 111 ASSERTCMP(xpage, ==, page); in __fscache_maybe_release_page() 118 if (xpage) in __fscache_maybe_release_page() 119 put_page(xpage); in __fscache_maybe_release_page() 150 struct page *xpage = NULL, *val; in fscache_end_page_write() local 164 xpage = radix_tree_delete(&cookie->stores, page->index); in fscache_end_page_write() 180 if (xpage) in fscache_end_page_write() 181 put_page(xpage); in fscache_end_page_write()
|
/Linux-v5.15/fs/netfs/ |
D | read_helper.c | 1090 struct page *page, *xpage; in netfs_write_begin() local 1155 while ((xpage = readahead_page(&ractl))) in netfs_write_begin() 1156 if (xpage != page) in netfs_write_begin() 1157 put_page(xpage); in netfs_write_begin()
|