Home
last modified time | relevance | path

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

/fs/iomap/
Dbuffered-io.c615 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_begin() local
626 if (page_ops && page_ops->page_prepare) { in iomap_write_begin()
627 status = page_ops->page_prepare(inode, pos, len, iomap); in iomap_write_begin()
659 if (page_ops && page_ops->page_done) in iomap_write_begin()
660 page_ops->page_done(inode, pos, 0, NULL, iomap); in iomap_write_begin()
734 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_end() local
760 if (page_ops && page_ops->page_done) in iomap_write_end()
761 page_ops->page_done(inode, pos, ret, page, iomap); in iomap_write_end()
/fs/btrfs/
Dextent_io.c1813 unsigned long page_ops, pgoff_t *index_ret);
1944 unsigned long page_ops, pgoff_t *index_ret) in __process_pages_contig() argument
1954 if (page_ops & PAGE_LOCK) { in __process_pages_contig()
1955 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig()
1959 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0) in __process_pages_contig()
1971 ASSERT(page_ops & PAGE_LOCK); in __process_pages_contig()
1977 if (page_ops & PAGE_SET_PRIVATE2) in __process_pages_contig()
1985 if (page_ops & PAGE_CLEAR_DIRTY) in __process_pages_contig()
1987 if (page_ops & PAGE_SET_WRITEBACK) in __process_pages_contig()
1989 if (page_ops & PAGE_SET_ERROR) in __process_pages_contig()
[all …]
Dextent_io.h274 unsigned long page_ops);
Dinode.c993 unsigned long page_ops; in cow_file_range() local
1112 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range()
1113 page_ops |= PAGE_SET_PRIVATE2; in cow_file_range()
1118 page_ops); in cow_file_range()
1146 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | in cow_file_range()
1163 page_ops); in cow_file_range()
1170 page_ops); in cow_file_range()
1272 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | in cow_file_range_async() local
1277 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()