Home
last modified time | relevance | path

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

/Linux-v5.10/fs/iomap/
Dbuffered-io.c594 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_begin() local
605 if (page_ops && page_ops->page_prepare) { in iomap_write_begin()
606 status = page_ops->page_prepare(inode, pos, len, iomap); in iomap_write_begin()
638 if (page_ops && page_ops->page_done) in iomap_write_begin()
639 page_ops->page_done(inode, pos, 0, NULL, iomap); in iomap_write_begin()
713 const struct iomap_page_ops *page_ops = iomap->page_ops; in iomap_write_end() local
739 if (page_ops && page_ops->page_done) in iomap_write_end()
740 page_ops->page_done(inode, pos, ret, page, iomap); in iomap_write_end()
/Linux-v5.10/fs/btrfs/
Dextent_io.c1815 unsigned long page_ops, pgoff_t *index_ret);
1946 unsigned long page_ops, pgoff_t *index_ret) in __process_pages_contig() argument
1956 if (page_ops & PAGE_LOCK) { in __process_pages_contig()
1957 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig()
1961 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0) in __process_pages_contig()
1973 ASSERT(page_ops & PAGE_LOCK); in __process_pages_contig()
1979 if (page_ops & PAGE_SET_PRIVATE2) in __process_pages_contig()
1987 if (page_ops & PAGE_CLEAR_DIRTY) in __process_pages_contig()
1989 if (page_ops & PAGE_SET_WRITEBACK) in __process_pages_contig()
1991 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
1113 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range()
1114 page_ops |= PAGE_SET_PRIVATE2; in cow_file_range()
1119 page_ops); in cow_file_range()
1147 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | in cow_file_range()
1164 page_ops); in cow_file_range()
1171 page_ops); in cow_file_range()
1273 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | in cow_file_range_async() local
1278 clear_bits, page_ops); in cow_file_range_async()
/Linux-v5.10/include/linux/
Diomap.h90 const struct iomap_page_ops *page_ops; member
/Linux-v5.10/fs/gfs2/
Dbmap.c1136 iomap->page_ops = &gfs2_iomap_page_ops; in gfs2_iomap_begin_write()