Home
last modified time | relevance | path

Searched refs:iomap_ops (Results 1 – 25 of 33) sorted by relevance

12

/linux-6.1.9/include/linux/
Diomap.h150 struct iomap_ops { struct
194 int iomap_iter(struct iomap_iter *iter, const struct iomap_ops *ops);
228 const struct iomap_ops *ops);
229 int iomap_read_folio(struct folio *folio, const struct iomap_ops *ops);
230 void iomap_readahead(struct readahead_control *, const struct iomap_ops *ops);
235 const struct iomap_ops *ops);
237 bool *did_zero, const struct iomap_ops *ops);
239 const struct iomap_ops *ops);
241 const struct iomap_ops *ops);
243 u64 start, u64 len, const struct iomap_ops *ops);
[all …]
Ddax.h13 struct iomap_ops;
209 const struct iomap_ops *ops);
211 const struct iomap_ops *ops);
241 const struct iomap_ops *ops);
243 pfn_t *pfnp, int *errp, const struct iomap_ops *ops);
252 const struct iomap_ops *ops);
256 const struct iomap_ops *ops);
/linux-6.1.9/arch/parisc/lib/
Diomap.c45 struct iomap_ops { struct
136 static const struct iomap_ops ioport_ops = {
279 static const struct iomap_ops iomem_ops = {
306 static const struct iomap_ops *iomap_ops[8] = { variable
315 return iomap_ops[ADDR_TO_REGION(addr)]->read8(addr); in ioread8()
322 return iomap_ops[ADDR_TO_REGION(addr)]->read16(addr); in ioread16()
329 return iomap_ops[ADDR_TO_REGION(addr)]->read16be(addr); in ioread16be()
336 return iomap_ops[ADDR_TO_REGION(addr)]->read32(addr); in ioread32()
343 return iomap_ops[ADDR_TO_REGION(addr)]->read32be(addr); in ioread32be()
351 return iomap_ops[ADDR_TO_REGION(addr)]->read64(addr); in ioread64()
[all …]
/linux-6.1.9/fs/xfs/
Dxfs_iomap.h49 extern const struct iomap_ops xfs_buffered_write_iomap_ops;
50 extern const struct iomap_ops xfs_direct_write_iomap_ops;
51 extern const struct iomap_ops xfs_read_iomap_ops;
52 extern const struct iomap_ops xfs_seek_iomap_ops;
53 extern const struct iomap_ops xfs_xattr_iomap_ops;
54 extern const struct iomap_ops xfs_dax_write_iomap_ops;
Dxfs_iomap.c867 const struct iomap_ops xfs_direct_write_iomap_ops = {
893 const struct iomap_ops xfs_dax_write_iomap_ops = {
1185 const struct iomap_ops xfs_buffered_write_iomap_ops = {
1229 const struct iomap_ops xfs_read_iomap_ops = {
1314 const struct iomap_ops xfs_seek_iomap_ops = {
1358 const struct iomap_ops xfs_xattr_iomap_ops = {
/linux-6.1.9/tools/testing/nvdimm/test/
Diomap.c19 static struct iomap_ops { struct
23 } iomap_ops = { argument
24 .list = LIST_HEAD_INIT(iomap_ops.list),
30 iomap_ops.nfit_test_lookup = lookup; in nfit_test_setup()
31 iomap_ops.evaluate_dsm = evaluate; in nfit_test_setup()
32 list_add_rcu(&iomap_ops.list, &iomap_head); in nfit_test_setup()
38 list_del_rcu(&iomap_ops.list); in nfit_test_teardown()
45 struct iomap_ops *ops; in __get_nfit_res()
396 struct iomap_ops *ops; in __wrap_acpi_evaluate_dsm()
/linux-6.1.9/fs/iomap/
Dseek.c34 iomap_seek_hole(struct inode *inode, loff_t pos, const struct iomap_ops *ops) in iomap_seek_hole()
80 iomap_seek_data(struct inode *inode, loff_t pos, const struct iomap_ops *ops) in iomap_seek_data()
Dfiemap.c63 u64 start, u64 len, const struct iomap_ops *ops) in iomap_fiemap()
99 const struct iomap_ops *ops) in iomap_bmap()
Diter.c57 int iomap_iter(struct iomap_iter *iter, const struct iomap_ops *ops) in iomap_iter()
Dbuffered-io.c328 int iomap_read_folio(struct folio *folio, const struct iomap_ops *ops) in iomap_read_folio()
405 void iomap_readahead(struct readahead_control *rac, const struct iomap_ops *ops) in iomap_readahead()
814 const struct iomap_ops *ops) in iomap_file_buffered_write()
878 const struct iomap_ops *ops) in iomap_file_unshare()
938 const struct iomap_ops *ops) in iomap_zero_range()
956 const struct iomap_ops *ops) in iomap_truncate_page()
988 vm_fault_t iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops) in iomap_page_mkwrite()
Dswapfile.c144 const struct iomap_ops *ops) in iomap_swapfile_activate()
Ddirect-io.c485 const struct iomap_ops *ops, const struct iomap_dio_ops *dops, in __iomap_dio_rw()
685 const struct iomap_ops *ops, const struct iomap_dio_ops *dops, in iomap_dio_rw()
/linux-6.1.9/fs/
Ddax.c1288 const struct iomap_ops *ops) in dax_zero_range()
1305 const struct iomap_ops *ops) in dax_truncate_page()
1437 const struct iomap_ops *ops) in dax_iomap_rw()
1587 int *iomap_errp, const struct iomap_ops *ops) in dax_iomap_pte_fault()
1697 const struct iomap_ops *ops) in dax_iomap_pmd_fault()
1778 const struct iomap_ops *ops) in dax_iomap_pmd_fault()
1798 pfn_t *pfnp, int *iomap_errp, const struct iomap_ops *ops) in dax_iomap_fault()
1925 const struct iomap_ops *ops) in dax_dedupe_file_range_compare()
1955 const struct iomap_ops *ops) in dax_remap_file_range_prep()
Dinternal.h11 struct iomap_ops;
Dremap_range.c271 const struct iomap_ops *dax_read_ops) in __generic_remap_file_range_prep()
/linux-6.1.9/fs/gfs2/
Dbmap.h46 extern const struct iomap_ops gfs2_iomap_ops;
/linux-6.1.9/fs/ext4/
Dfile.c493 const struct iomap_ops *iomap_ops = &ext4_iomap_ops; in ext4_dio_write_iter() local
586 iomap_ops = &ext4_iomap_overwrite_ops; in ext4_dio_write_iter()
587 ret = iomap_dio_rw(iocb, from, iomap_ops, &ext4_dio_write_ops, in ext4_dio_write_iter()
Dext4.h3836 extern const struct iomap_ops ext4_iomap_ops;
3837 extern const struct iomap_ops ext4_iomap_overwrite_ops;
3838 extern const struct iomap_ops ext4_iomap_report_ops;
/linux-6.1.9/fs/hpfs/
Dfile.c157 static const struct iomap_ops hpfs_iomap_ops = {
/linux-6.1.9/fs/erofs/
Dinternal.h442 extern const struct iomap_ops z_erofs_iomap_report_ops;
Ddata.c331 static const struct iomap_ops erofs_iomap_ops = {
Dzmap.c807 const struct iomap_ops z_erofs_iomap_report_ops = {
/linux-6.1.9/fs/ext2/
Dext2.h798 extern const struct iomap_ops ext2_iomap_ops;
/linux-6.1.9/fs/zonefs/
Dsuper.c152 static const struct iomap_ops zonefs_read_iomap_ops = {
201 static const struct iomap_ops zonefs_write_iomap_ops = {
/linux-6.1.9/fs/fuse/
Ddax.c656 static const struct iomap_ops fuse_iomap_ops = {

12