Home
last modified time | relevance | path

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

/Linux-v6.1/fs/iomap/
Dbuffered-io.c590 const struct iomap_page_ops *page_ops = iter->iomap.page_ops; in iomap_write_begin() local
609 if (page_ops && page_ops->page_prepare) { in iomap_write_begin()
610 status = page_ops->page_prepare(iter->inode, pos, len); in iomap_write_begin()
643 if (page_ops && page_ops->page_done) in iomap_write_begin()
644 page_ops->page_done(iter->inode, pos, 0, NULL); in iomap_write_begin()
694 const struct iomap_page_ops *page_ops = iter->iomap.page_ops; in iomap_write_end() local
721 if (page_ops && page_ops->page_done) in iomap_write_end()
722 page_ops->page_done(iter->inode, pos, ret, &folio->page); in iomap_write_end()
/Linux-v6.1/fs/btrfs/
Dextent_io.c227 unsigned long page_ops, u64 start, u64 end) in process_one_page() argument
234 if (page_ops & PAGE_SET_ORDERED) in process_one_page()
236 if (page_ops & PAGE_SET_ERROR) in process_one_page()
238 if (page_ops & PAGE_START_WRITEBACK) { in process_one_page()
242 if (page_ops & PAGE_END_WRITEBACK) in process_one_page()
248 if (page_ops & PAGE_LOCK) { in process_one_page()
259 if (page_ops & PAGE_UNLOCK) in process_one_page()
266 u64 start, u64 end, unsigned long page_ops, in __process_pages_contig() argument
278 if (page_ops & PAGE_LOCK) { in __process_pages_contig()
279 ASSERT(page_ops == PAGE_LOCK); in __process_pages_contig()
[all …]
Dextent_io.h244 u32 bits_to_clear, unsigned long page_ops);
Dinode.c1189 unsigned long page_ops; in cow_file_range() local
1336 page_ops = unlock ? PAGE_UNLOCK : 0; in cow_file_range()
1337 page_ops |= PAGE_SET_ORDERED; in cow_file_range()
1342 page_ops); in cow_file_range()
1394 page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK | PAGE_END_WRITEBACK; in cow_file_range()
1412 locked_page, 0, page_ops); in cow_file_range()
1430 page_ops); in cow_file_range()
1444 page_ops); in cow_file_range()
1545 unsigned long page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK | in cow_file_range_async() local
1549 clear_bits, page_ops); in cow_file_range_async()
/Linux-v6.1/include/linux/
Diomap.h91 const struct iomap_page_ops *page_ops; member
/Linux-v6.1/fs/gfs2/
Dbmap.c1067 iomap->page_ops = &gfs2_iomap_page_ops; in gfs2_iomap_begin_write()