/linux-6.12.1/fs/ocfs2/ |
D | mmap.c | 57 void *fsdata; in __ocfs2_page_mkwrite() local 94 &locked_folio, &fsdata, di_bh, page); in __ocfs2_page_mkwrite() 106 err = ocfs2_write_end_nolock(mapping, pos, len, len, fsdata); in __ocfs2_page_mkwrite()
|
D | aops.h | 31 loff_t pos, unsigned len, unsigned copied, void *fsdata); 41 struct folio **foliop, void **fsdata,
|
D | aops.c | 1645 struct folio **foliop, void **fsdata, in ocfs2_write_begin_nolock() argument 1830 *fsdata = wc; in ocfs2_write_begin_nolock() 1881 struct folio **foliop, void **fsdata) in ocfs2_write_begin() argument 1903 foliop, fsdata, di_bh, NULL); in ocfs2_write_begin() 1948 loff_t pos, unsigned len, unsigned copied, void *fsdata) in ocfs2_write_end_nolock() argument 1954 struct ocfs2_write_ctxt *wc = fsdata; in ocfs2_write_end_nolock() 2078 struct folio *folio, void *fsdata) in ocfs2_write_end() argument 2083 ret = ocfs2_write_end_nolock(mapping, pos, len, copied, fsdata); in ocfs2_write_end()
|
/linux-6.12.1/fs/hpfs/ |
D | file.c | 193 struct folio **foliop, void **fsdata) in hpfs_write_begin() argument 197 ret = cont_write_begin(file, mapping, pos, len, foliop, fsdata, in hpfs_write_begin() 208 struct folio *folio, void *fsdata) in hpfs_write_end() argument 212 err = generic_write_end(file, mapping, pos, len, copied, folio, fsdata); in hpfs_write_end()
|
/linux-6.12.1/fs/jffs2/ |
D | file.c | 26 struct folio *folio, void *fsdata); 29 struct folio **foliop, void **fsdata); 126 struct folio **foliop, void **fsdata) in jffs2_write_begin() argument 240 struct folio *folio, void *fsdata) in jffs2_write_end() argument
|
/linux-6.12.1/fs/f2fs/ |
D | verity.c | 84 void *fsdata = NULL; in pagecache_write() local 87 res = aops->write_begin(NULL, mapping, pos, n, &folio, &fsdata); in pagecache_write() 93 res = aops->write_end(NULL, mapping, pos, n, n, folio, fsdata); in pagecache_write()
|
D | compress.c | 1087 struct page **pagep, pgoff_t index, void **fsdata) in prepare_compress_overwrite() argument 1160 *fsdata = cc->rpages; in prepare_compress_overwrite() 1174 struct page **pagep, pgoff_t index, void **fsdata) in f2fs_prepare_compress_overwrite() argument 1185 return prepare_compress_overwrite(&cc, pagep, index, fsdata); in f2fs_prepare_compress_overwrite() 1188 bool f2fs_compress_write_end(struct inode *inode, void *fsdata, in f2fs_compress_write_end() argument 1196 .rpages = fsdata, in f2fs_compress_write_end() 1211 void *fsdata = NULL; in f2fs_truncate_partial_cluster() local 1228 start_idx, &fsdata); in f2fs_truncate_partial_cluster() 1237 struct page **rpages = fsdata; in f2fs_truncate_partial_cluster() 1253 f2fs_compress_write_end(inode, fsdata, start_idx, true); in f2fs_truncate_partial_cluster()
|
D | data.c | 3095 void *fsdata = NULL; in f2fs_write_cache_pages() local 3126 folio->index, &fsdata); in f2fs_write_cache_pages() 3133 fsdata, folio->index, 1) || in f2fs_write_cache_pages() 3573 loff_t pos, unsigned len, struct folio **foliop, void **fsdata) in f2fs_write_begin() argument 3607 *fsdata = NULL; in f2fs_write_begin() 3613 index, fsdata); in f2fs_write_begin() 3712 struct folio *folio, void *fsdata) in f2fs_write_end() argument 3732 if (f2fs_compressed_file(inode) && fsdata) { in f2fs_write_end() 3733 f2fs_compress_write_end(inode, fsdata, folio->index, copied); in f2fs_write_end()
|
/linux-6.12.1/fs/ext4/ |
D | verity.c | 80 void *fsdata = NULL; in pagecache_write() local 83 res = aops->write_begin(NULL, mapping, pos, n, &folio, &fsdata); in pagecache_write() 89 res = aops->write_end(NULL, mapping, pos, n, n, folio, fsdata); in pagecache_write()
|
D | inode.c | 1135 struct folio **foliop, void **fsdata) in ext4_write_begin() argument 1281 struct folio *folio, void *fsdata) in ext4_write_end() argument 1297 copied = block_write_end(file, mapping, pos, len, copied, folio, fsdata); in ext4_write_end() 1384 struct folio *folio, void *fsdata) in ext4_journalled_write_end() argument 2900 struct folio **foliop, void **fsdata) in ext4_da_write_begin() argument 2913 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; in ext4_da_write_begin() 2915 len, foliop, fsdata); in ext4_da_write_begin() 2917 *fsdata = (void *)0; in ext4_da_write_begin() 2922 foliop, fsdata); in ext4_da_write_begin() 3051 struct folio *folio, void *fsdata) in ext4_da_write_end() argument [all …]
|
/linux-6.12.1/fs/affs/ |
D | file.c | 420 struct folio **foliop, void **fsdata) in affs_write_begin() argument 424 ret = cont_write_begin(file, mapping, pos, len, foliop, fsdata, in affs_write_begin() 435 struct folio *folio, void *fsdata) in affs_write_end() argument 440 ret = generic_write_end(file, mapping, pos, len, copied, folio, fsdata); in affs_write_end() 650 struct folio **foliop, void **fsdata) in affs_write_begin_ofs() argument 689 struct folio *folio, void *fsdata) in affs_write_end_ofs() argument 884 void *fsdata = NULL; in affs_truncate() local 888 res = mapping->a_ops->write_begin(NULL, mapping, isize, 0, &folio, &fsdata); in affs_truncate() 890 res = mapping->a_ops->write_end(NULL, mapping, isize, 0, 0, folio, fsdata); in affs_truncate()
|
/linux-6.12.1/fs/jfs/ |
D | inode.c | 295 struct folio **foliop, void **fsdata) in jfs_write_begin() argument 308 void *fsdata) in jfs_write_end() argument 312 ret = generic_write_end(file, mapping, pos, len, copied, folio, fsdata); in jfs_write_end()
|
/linux-6.12.1/fs/ |
D | buffer.c | 2245 struct folio *folio, void *fsdata) in block_write_end() argument 2278 struct folio *folio, void *fsdata) in generic_write_end() argument 2284 copied = block_write_end(file, mapping, pos, len, copied, folio, fsdata); in generic_write_end() 2466 void *fsdata = NULL; in generic_cont_expand_simple() local 2473 err = aops->write_begin(NULL, mapping, size, 0, &folio, &fsdata); in generic_cont_expand_simple() 2477 err = aops->write_end(NULL, mapping, size, 0, 0, folio, fsdata); in generic_cont_expand_simple() 2492 void *fsdata = NULL; in cont_expand_zero() local 2510 &folio, &fsdata); in cont_expand_zero() 2515 folio, fsdata); in cont_expand_zero() 2543 &folio, &fsdata); in cont_expand_zero() [all …]
|
/linux-6.12.1/drivers/gpu/drm/i915/gem/ |
D | i915_gem_shmem.c | 678 void *fsdata; in i915_gem_object_create_shmem_from_data() local 681 &folio, &fsdata); in i915_gem_object_create_shmem_from_data() 688 folio, fsdata); in i915_gem_object_create_shmem_from_data()
|
/linux-6.12.1/fs/adfs/ |
D | inode.c | 58 struct folio **foliop, void **fsdata) in adfs_write_begin() argument 62 ret = cont_write_begin(file, mapping, pos, len, foliop, fsdata, in adfs_write_begin()
|
/linux-6.12.1/fs/hfs/ |
D | extent.c | 489 void *fsdata = NULL; in hfs_file_truncate() local 495 &fsdata); in hfs_file_truncate() 498 folio, fsdata); in hfs_file_truncate()
|
D | hfs_fs.h | 205 loff_t pos, unsigned len, struct folio **foliop, void **fsdata);
|
/linux-6.12.1/fs/bcachefs/ |
D | fs-io-buffered.c | 651 struct folio **foliop, void **fsdata) in bch2_write_begin() argument 665 *fsdata = res; in bch2_write_begin() 728 *fsdata = NULL; in bch2_write_begin() 734 struct folio *folio, void *fsdata) in bch2_write_end() argument 738 struct bch2_folio_reservation *res = fsdata; in bch2_write_end()
|
/linux-6.12.1/fs/ecryptfs/ |
D | mmap.c | 268 struct folio **foliop, void **fsdata) in ecryptfs_write_begin() argument 466 struct folio *folio, void *fsdata) in ecryptfs_write_end() argument
|
/linux-6.12.1/fs/hfsplus/ |
D | extents.c | 558 void *fsdata = NULL; in hfsplus_file_truncate() local 562 &folio, &fsdata); in hfsplus_file_truncate() 566 folio, fsdata); in hfsplus_file_truncate()
|
D | inode.c | 42 loff_t pos, unsigned len, struct folio **foliop, void **fsdata) in hfsplus_write_begin() argument 46 ret = cont_write_begin(file, mapping, pos, len, foliop, fsdata, in hfsplus_write_begin()
|
/linux-6.12.1/fs/exfat/ |
D | inode.c | 427 struct folio **foliop, void **fsdata) in exfat_write_begin() argument 444 struct folio *folio, void *fsdata) in exfat_write_end() argument 450 err = generic_write_end(file, mapping, pos, len, copied, folio, fsdata); in exfat_write_end()
|
/linux-6.12.1/fs/bfs/ |
D | file.c | 175 struct folio **foliop, void **fsdata) in bfs_write_begin() argument
|
/linux-6.12.1/block/ |
D | fops.c | 455 loff_t pos, unsigned len, struct folio **foliop, void **fsdata) in blkdev_write_begin() argument 462 void *fsdata) in blkdev_write_end() argument 465 ret = block_write_end(file, mapping, pos, len, copied, folio, fsdata); in blkdev_write_end()
|
/linux-6.12.1/fs/nilfs2/ |
D | inode.c | 250 struct folio **foliop, void **fsdata) in nilfs_write_begin() argument 269 struct folio *folio, void *fsdata) in nilfs_write_end() argument 279 fsdata); in nilfs_write_end()
|