Home
last modified time | relevance | path

Searched refs:page_ops (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/fs/iomap/
Dbuffered-io.c586 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_begin() local
596 if (page_ops && page_ops->page_prepare) { in iomap_write_begin()
597 status = page_ops->page_prepare(inode, pos, len, iomap); in iomap_write_begin()
627 if (page_ops && page_ops->page_done) in iomap_write_begin()
628 page_ops->page_done(inode, pos, 0, NULL, iomap); in iomap_write_begin()
702 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_end() local
728 if (page_ops && page_ops->page_done) in iomap_write_end()
729 page_ops->page_done(inode, pos, ret, page, iomap); in iomap_write_end()
/Linux-v5.4/include/linux/
Diomap.h70 const struct iomap_page_ops *page_ops; member
/Linux-v5.4/fs/btrfs/
Dextent_io.c1735 unsigned long page_ops, pgoff_t *index_ret);
1866 unsigned long page_ops, pgoff_t *index_ret) in __process_pages_contig() argument
1876 if (page_ops & PAGE_LOCK) { in __process_pages_contig()
1877 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig()
1881 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0) in __process_pages_contig()
1893 ASSERT(page_ops & PAGE_LOCK); in __process_pages_contig()
1899 if (page_ops & PAGE_SET_PRIVATE2) in __process_pages_contig()
1907 if (page_ops & PAGE_CLEAR_DIRTY) in __process_pages_contig()
1909 if (page_ops & PAGE_SET_WRITEBACK) in __process_pages_contig()
1911 if (page_ops & PAGE_SET_ERROR) in __process_pages_contig()
[all …]
Dextent_io.h499 unsigned long page_ops);
Dinode.c979 unsigned long page_ops; in cow_file_range() local
1084 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range()
1085 page_ops |= PAGE_SET_PRIVATE2; in cow_file_range()
1091 page_ops); in cow_file_range()
1119 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | in cow_file_range()
1136 page_ops); in cow_file_range()
1143 page_ops); in cow_file_range()
1240 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | in cow_file_range_async() local
1245 clear_bits, page_ops); in cow_file_range_async()
/Linux-v5.4/fs/gfs2/
Dbmap.c1134 iomap->page_ops = &gfs2_iomap_page_ops; in gfs2_iomap_begin_write()