Home
last modified time | relevance | path

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

/fs/iomap/
Dbuffered-io.c605 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_begin() local
615 if (page_ops && page_ops->page_prepare) { in iomap_write_begin()
616 status = page_ops->page_prepare(inode, pos, len, iomap); in iomap_write_begin()
646 if (page_ops && page_ops->page_done) in iomap_write_begin()
647 page_ops->page_done(inode, pos, 0, NULL, iomap); in iomap_write_begin()
721 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_end() local
747 if (page_ops && page_ops->page_done) in iomap_write_end()
748 page_ops->page_done(inode, pos, ret, page, iomap); in iomap_write_end()
/fs/btrfs/
Dextent_io.c1737 unsigned long page_ops, pgoff_t *index_ret);
1868 unsigned long page_ops, pgoff_t *index_ret) in __process_pages_contig() argument
1878 if (page_ops & PAGE_LOCK) { in __process_pages_contig()
1879 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig()
1883 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0) in __process_pages_contig()
1895 ASSERT(page_ops & PAGE_LOCK); in __process_pages_contig()
1901 if (page_ops & PAGE_SET_PRIVATE2) in __process_pages_contig()
1909 if (page_ops & PAGE_CLEAR_DIRTY) in __process_pages_contig()
1911 if (page_ops & PAGE_SET_WRITEBACK) in __process_pages_contig()
1913 if (page_ops & PAGE_SET_ERROR) in __process_pages_contig()
[all …]
Dextent_io.h501 unsigned long page_ops);
Dinode.c989 unsigned long page_ops; in cow_file_range() local
1110 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range()
1111 page_ops |= PAGE_SET_PRIVATE2; in cow_file_range()
1117 page_ops); in cow_file_range()
1145 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | in cow_file_range()
1162 page_ops); in cow_file_range()
1169 page_ops); in cow_file_range()
1266 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | in cow_file_range_async() local
1271 clear_bits, page_ops); in cow_file_range_async()
/fs/gfs2/
Dbmap.c1133 iomap->page_ops = &gfs2_iomap_page_ops; in gfs2_iomap_begin_write()