Home
last modified time | relevance | path

Searched refs:bh_result (Results 1 – 25 of 29) sorted by relevance

12

/linux-6.15/fs/exfat/
H A Dinode.c306 map_bh(bh_result, sb, phys); in exfat_get_block()
307 if (buffer_delay(bh_result)) in exfat_get_block()
308 clear_buffer_delay(bh_result); in exfat_get_block()
338 set_buffer_new(bh_result); in exfat_get_block()
364 if (!folio_buffers(bh_result->b_folio)) { in exfat_get_block()
375 if (bh_result->b_data != addr) { in exfat_get_block()
378 bh_result->b_data, addr); in exfat_get_block()
384 err = bh_read(bh_result, 0); in exfat_get_block()
389 memset(bh_result->b_data + size, 0, bh_result->b_size - size); in exfat_get_block()
398 clear_buffer_mapped(bh_result); in exfat_get_block()
[all …]
/linux-6.15/fs/bfs/
H A Dfile.c66 struct buffer_head *bh_result, int create) in bfs_get_block() argument
79 map_bh(bh_result, sb, phys); in bfs_get_block()
91 map_bh(bh_result, sb, phys); in bfs_get_block()
110 map_bh(bh_result, sb, phys); in bfs_get_block()
148 map_bh(bh_result, sb, phys); in bfs_get_block()
/linux-6.15/fs/jfs/
H A Dinode.c200 struct buffer_head *bh_result, int create) in jfs_get_block() argument
207 s32 xlen = bh_result->b_size >> ip->i_blkbits; in jfs_get_block()
233 set_buffer_new(bh_result); in jfs_get_block()
236 map_bh(bh_result, ip->i_sb, xaddr); in jfs_get_block()
237 bh_result->b_size = xlen << ip->i_blkbits; in jfs_get_block()
252 set_buffer_new(bh_result); in jfs_get_block()
253 map_bh(bh_result, ip->i_sb, addressXAD(&xad)); in jfs_get_block()
254 bh_result->b_size = lengthXAD(&xad) << ip->i_blkbits; in jfs_get_block()
/linux-6.15/fs/hpfs/
H A Dfile.c79 static int hpfs_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int … in hpfs_get_block() argument
87 if (bh_result->b_size >> 9 < n_secs) in hpfs_get_block()
88 n_secs = bh_result->b_size >> 9; in hpfs_get_block()
94 map_bh(bh_result, inode->i_sb, s); in hpfs_get_block()
95 bh_result->b_size = n_secs << 9; in hpfs_get_block()
111 set_buffer_new(bh_result); in hpfs_get_block()
112 map_bh(bh_result, inode->i_sb, hpfs_search_hotfix_map(inode->i_sb, s)); in hpfs_get_block()
/linux-6.15/fs/ocfs2/
H A Daops.c95 bh_result->b_size * iblock, in ocfs2_symlink_get_block()
97 bh_result->b_size); in ocfs2_symlink_get_block()
98 set_buffer_uptodate(bh_result); in ocfs2_symlink_get_block()
103 map_bh(bh_result, inode->i_sb, in ocfs2_symlink_get_block()
172 clear_buffer_dirty(bh_result); in ocfs2_get_block()
202 set_buffer_new(bh_result); in ocfs2_get_block()
2160 !buffer_new(bh_result) && in ocfs2_dio_wr_get_block()
2165 bh_result->b_state = 0; in ocfs2_dio_wr_get_block()
2226 bh_result->b_size = len; in ocfs2_dio_wr_get_block()
2228 set_buffer_new(bh_result); in ocfs2_dio_wr_get_block()
[all …]
H A Daops.h44 struct buffer_head *bh_result, int create);
H A Docfs2_trace.h1127 void *bh_result, int create),
1128 TP_ARGS(ino, iblock, bh_result, create),
1132 __field(void *, bh_result)
1138 __entry->bh_result = bh_result;
1143 __entry->bh_result, __entry->create)
1149 void *bh_result, int create), \
1150 TP_ARGS(ino, iblock, bh_result, create))
/linux-6.15/fs/efs/
H A Dfile.c14 struct buffer_head *bh_result, int create) in efs_get_block() argument
33 map_bh(bh_result, inode->i_sb, phys); in efs_get_block()
/linux-6.15/fs/minix/
H A Ditree_v1.c54 struct buffer_head *bh_result, int create) in V1_minix_get_block() argument
56 return get_block(inode, block, bh_result, create); in V1_minix_get_block()
H A Ditree_v2.c62 struct buffer_head *bh_result, int create) in V2_minix_get_block() argument
64 return get_block(inode, block, bh_result, create); in V2_minix_get_block()
H A Dinode.c411 struct buffer_head *bh_result, int create) in minix_get_block() argument
414 return V1_minix_get_block(inode, block, bh_result, create); in minix_get_block()
416 return V2_minix_get_block(inode, block, bh_result, create); in minix_get_block()
/linux-6.15/fs/omfs/
H A Dfile.c218 struct buffer_head *bh_result, int create) in omfs_get_block() argument
229 int max_blocks = bh_result->b_size >> inode->i_blkbits; in omfs_get_block()
256 map_bh(bh_result, inode->i_sb, offset); in omfs_get_block()
259 bh_result->b_size = (remain << inode->i_blkbits); in omfs_get_block()
277 map_bh(bh_result, inode->i_sb, in omfs_get_block()
/linux-6.15/fs/nilfs2/
H A Dinode.c75 struct buffer_head *bh_result, int create) in nilfs_get_block() argument
81 unsigned int maxblocks = bh_result->b_size >> inode->i_blkbits; in nilfs_get_block()
87 map_bh(bh_result, inode->i_sb, blknum); in nilfs_get_block()
89 bh_result->b_size = (ret << inode->i_blkbits); in nilfs_get_block()
96 bh_result->b_blocknr = 0; in nilfs_get_block()
101 (unsigned long)bh_result); in nilfs_get_block()
122 set_buffer_new(bh_result); in nilfs_get_block()
123 set_buffer_delay(bh_result); in nilfs_get_block()
124 map_bh(bh_result, inode->i_sb, 0); in nilfs_get_block()
/linux-6.15/fs/affs/
H A Dfile.c297 affs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create) in affs_get_block() argument
322 map_bh(bh_result, sb, (sector_t)be32_to_cpu(AFFS_BLOCK(sb, ext_bh, block))); in affs_get_block()
328 set_buffer_new(bh_result); in affs_get_block()
333 if (bh_result->b_blocknr) in affs_get_block()
336 (unsigned long long)bh_result->b_blocknr); in affs_get_block()
339 affs_adjust_checksum(ext_bh, blocknr - bh_result->b_blocknr + 1); in affs_get_block()
340 bh_result->b_blocknr = blocknr; in affs_get_block()
367 clear_buffer_mapped(bh_result); in affs_get_block()
368 bh_result->b_bdev = NULL; in affs_get_block()
/linux-6.15/fs/fat/
H A Dinode.c120 struct buffer_head *bh_result, int create) in __fat_get_block() argument
132 map_bh(bh_result, sb, phys); in __fat_get_block()
176 set_buffer_new(bh_result); in __fat_get_block()
177 map_bh(bh_result, sb, phys); in __fat_get_block()
183 struct buffer_head *bh_result, int create) in fat_get_block() argument
186 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits; in fat_get_block()
192 bh_result->b_size = max_blocks << sb->s_blocksize_bits; in fat_get_block()
289 struct buffer_head *bh_result, int create) in fat_get_block_bmap() argument
292 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits; in fat_get_block_bmap()
304 map_bh(bh_result, sb, bmap); in fat_get_block_bmap()
[all …]
/linux-6.15/fs/ntfs3/
H A Dinode.c699 struct buffer_head *bh_result, int create) in ntfs_get_block() argument
702 bh_result, create, GET_BLOCK_GENERAL); in ntfs_get_block()
706 struct buffer_head *bh_result, int create) in ntfs_get_block_bmap() argument
710 bh_result, create, GET_BLOCK_BMAP); in ntfs_get_block_bmap()
777 struct buffer_head *bh_result, int create) in ntfs_get_block_direct_IO_R() argument
780 bh_result, create, GET_BLOCK_DIRECT_IO_R); in ntfs_get_block_direct_IO_R()
784 struct buffer_head *bh_result, int create) in ntfs_get_block_direct_IO_W() argument
787 bh_result, create, GET_BLOCK_DIRECT_IO_W); in ntfs_get_block_direct_IO_W()
905 struct buffer_head *bh_result, int create) in ntfs_get_block_write_begin() argument
908 bh_result, create, GET_BLOCK_WRITE_BEGIN); in ntfs_get_block_write_begin()
/linux-6.15/fs/ufs/
H A Dinode.c375 static int ufs_getfrag_block(struct inode *inode, sector_t fragment, struct buffer_head *bh_result,… in ufs_getfrag_block() argument
415 &err, bh_result->b_folio)) in ufs_getfrag_block()
422 &err, &new, bh_result->b_folio); in ufs_getfrag_block()
431 fragment, &err, &new, bh_result->b_folio); in ufs_getfrag_block()
436 map_bh(bh_result, sb, phys64); in ufs_getfrag_block()
438 set_buffer_new(bh_result); in ufs_getfrag_block()
445 map_bh(bh_result, sb, phys64 + frag); in ufs_getfrag_block()
/linux-6.15/fs/gfs2/
H A Daops.c72 struct buffer_head *bh_result, int create) in gfs2_get_block_noalloc() argument
76 error = gfs2_block_map(inode, lblock, bh_result, 0); in gfs2_get_block_noalloc()
79 if (!buffer_mapped(bh_result)) in gfs2_get_block_noalloc()
/linux-6.15/fs/hfs/
H A Dextent.c337 struct buffer_head *bh_result, int create) in hfs_get_block() argument
377 map_bh(bh_result, sb, HFS_SB(sb)->fs_start + in hfs_get_block()
382 set_buffer_new(bh_result); in hfs_get_block()
/linux-6.15/fs/ext2/
H A Dinode.c784 struct buffer_head *bh_result, int create) in ext2_get_block() argument
786 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits; in ext2_get_block()
796 map_bh(bh_result, inode->i_sb, bno); in ext2_get_block()
797 bh_result->b_size = (ret << inode->i_blkbits); in ext2_get_block()
799 set_buffer_new(bh_result); in ext2_get_block()
801 set_buffer_boundary(bh_result); in ext2_get_block()
/linux-6.15/fs/hfsplus/
H A Dextents.c226 struct buffer_head *bh_result, int create) in hfsplus_get_block() argument
284 map_bh(bh_result, sb, sector); in hfsplus_get_block()
287 set_buffer_new(bh_result); in hfsplus_get_block()
H A Dhfsplus_fs.h465 struct buffer_head *bh_result, int create);
/linux-6.15/fs/udf/
H A Dinode.c68 struct buffer_head *bh_result, int create);
453 struct buffer_head *bh_result, int flags) in __udf_get_block() argument
465 map_bh(bh_result, inode->i_sb, map.pblk); in __udf_get_block()
467 set_buffer_new(bh_result); in __udf_get_block()
473 struct buffer_head *bh_result, int create) in udf_get_block() argument
485 return __udf_get_block(inode, block, bh_result, flags); in udf_get_block()
495 struct buffer_head *bh_result, int create) in udf_get_block_wb() argument
497 return __udf_get_block(inode, block, bh_result, 0); in udf_get_block_wb()
/linux-6.15/fs/befs/
H A Dlinuxvfs.c133 struct buffer_head *bh_result, int create) in befs_get_block() argument
161 map_bh(bh_result, inode->i_sb, disk_off); in befs_get_block()
/linux-6.15/fs/isofs/
H A Dinode.c1108 struct buffer_head *bh_result, int create) in isofs_get_block() argument
1117 ret = isofs_get_blocks(inode, iblock, &bh_result, 1); in isofs_get_block()

12