/linux/fs/freevxfs/ |
A D | vxfs_bmap.c | 210 vxfs_bmap_typed(struct inode *ip, long iblock) in vxfs_bmap_typed() argument 225 if (iblock < off) in vxfs_bmap_typed() 232 iblock - off); in vxfs_bmap_typed() 237 if ((iblock - off) < fs32_to_cpu(sbi, typ->vt_size)) in vxfs_bmap_typed() 239 iblock - off); in vxfs_bmap_typed() 274 vxfs_bmap1(struct inode *ip, long iblock) in vxfs_bmap1() argument 279 return vxfs_bmap_ext4(ip, iblock); in vxfs_bmap1() 281 return vxfs_bmap_typed(ip, iblock); in vxfs_bmap1()
|
A D | vxfs_subr.c | 129 vxfs_getblk(struct inode *ip, sector_t iblock, in vxfs_getblk() argument 134 pblock = vxfs_bmap1(ip, iblock); in vxfs_getblk()
|
/linux/fs/efs/ |
A D | inode.c | 206 efs_block_t iblock, result = 0, lastblock = 0; in efs_map_block() local 270 iblock = sb->fs_start + in->extents[dirext].cooked.ex_bn + in efs_map_block() 276 if (first || lastblock != iblock) { in efs_map_block() 279 bh = sb_bread(inode->i_sb, iblock); in efs_map_block() 282 __func__, iblock); in efs_map_block() 286 __func__, iblock); in efs_map_block() 288 lastblock = iblock; in efs_map_block() 297 cur, iblock); in efs_map_block()
|
A D | file.c | 13 int efs_get_block(struct inode *inode, sector_t iblock, in efs_get_block() argument 21 if (iblock >= inode->i_blocks) { in efs_get_block() 31 phys = efs_map_block(inode, iblock); in efs_get_block()
|
/linux/fs/ocfs2/ |
A D | aops.c | 53 (unsigned long long)iblock, bh_result, create); in ocfs2_symlink_get_block() 59 (unsigned long long)iblock); in ocfs2_symlink_get_block() 74 "%llu\n", (unsigned long long)iblock); in ocfs2_symlink_get_block() 82 iblock; in ocfs2_symlink_get_block() 101 memcpy(kaddr + (bh_result->b_size * iblock), in ocfs2_symlink_get_block() 196 (unsigned long long)iblock, in ocfs2_get_block() 209 if (create && (iblock >= past_eof)) in ocfs2_get_block() 2139 loff_t pos = iblock << i_blkbits; in ocfs2_dio_wr_get_block() 2158 if ((iblock <= endblk) && in ocfs2_dio_wr_get_block() 2160 len = (endblk - iblock + 1) << i_blkbits; in ocfs2_dio_wr_get_block() [all …]
|
A D | aops.h | 48 int ocfs2_get_block(struct inode *inode, sector_t iblock,
|
A D | ocfs2_trace.h | 1126 TP_PROTO(unsigned long long ino, unsigned long long iblock, 1128 TP_ARGS(ino, iblock, bh_result, create), 1131 __field(unsigned long long, iblock) 1137 __entry->iblock = iblock; 1142 __entry->ino, __entry->iblock, 1148 TP_PROTO(unsigned long long ino, unsigned long long iblock, \ 1150 TP_ARGS(ino, iblock, bh_result, create))
|
/linux/fs/qnx4/ |
A D | inode.c | 55 static int qnx4_get_block( struct inode *inode, sector_t iblock, struct buffer_head *bh, int create… in qnx4_get_block() argument 59 QNX4DEBUG((KERN_INFO "qnx4: qnx4_get_block inode=[%ld] iblock=[%ld]\n",inode->i_ino,iblock)); in qnx4_get_block() 61 phys = qnx4_block_map( inode, iblock ); in qnx4_get_block() 78 unsigned long qnx4_block_map( struct inode *inode, long iblock ) in qnx4_block_map() argument 86 u32 offset = iblock; in qnx4_block_map() 125 QNX4DEBUG((KERN_INFO "qnx4: mapping block %ld of inode %ld = %ld\n",iblock,inode->i_ino,block)); in qnx4_block_map()
|
A D | qnx4.h | 27 extern unsigned long qnx4_block_map(struct inode *inode, long iblock);
|
/linux/fs/exfat/ |
A D | inode.c | 291 static int exfat_get_block(struct inode *inode, sector_t iblock, in exfat_get_block() argument 307 if (iblock >= last_block && !create) in exfat_get_block() 311 err = exfat_map_cluster(inode, iblock >> sbi->sect_per_clus_bits, in exfat_get_block() 317 inode, (unsigned long long)iblock, err); in exfat_get_block() 325 sec_offset = iblock & (sbi->sect_per_clus - 1); in exfat_get_block() 332 if (iblock < last_block) in exfat_get_block() 336 pos = EXFAT_BLK_TO_B((iblock + 1), sb); in exfat_get_block()
|
/linux/fs/udf/ |
A D | dir.c | 46 udf_pblk_t block, iblock; in udf_readdir() local 208 iblock = udf_get_lb_pblock(sb, &tloc, 0); in udf_readdir() 209 if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN)) in udf_readdir()
|
/linux/fs/ntfs/ |
A D | aops.c | 175 sector_t iblock, lblock, zblock; in ntfs_read_block() local 212 iblock = (s64)page->index << (PAGE_SHIFT - blocksize_bits); in ntfs_read_block() 238 if (iblock < lblock) { in ntfs_read_block() 242 vcn = (VCN)iblock << blocksize_bits >> in ntfs_read_block() 244 vcn_ofs = ((VCN)iblock << blocksize_bits) & in ntfs_read_block() 265 if (iblock < zblock) { in ntfs_read_block() 324 } while (i++, iblock++, (bh = bh->b_this_page) != head); in ntfs_read_block() 536 sector_t block, dblock, iblock; in ntfs_write_block() local 593 iblock = initialized_size >> blocksize_bits; in ntfs_write_block() 637 if (unlikely((block >= iblock) && in ntfs_write_block() [all …]
|
/linux/fs/sysv/ |
A D | itree.c | 203 static int get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int creat… in get_block() argument 211 int depth = block_to_path(inode, iblock, offsets); in get_block() 372 long iblock; in sysv_truncate() local 380 iblock = (inode->i_size + blocksize-1) in sysv_truncate() 385 n = block_to_path(inode, iblock, offsets); in sysv_truncate()
|
/linux/fs/hfsplus/ |
A D | extents.c | 225 int hfsplus_get_block(struct inode *inode, sector_t iblock, in hfsplus_get_block() argument 237 ablock = iblock >> sbi->fs_shift; in hfsplus_get_block() 239 if (iblock >= hip->fs_blocks) { in hfsplus_get_block() 242 if (iblock > hip->fs_blocks) in hfsplus_get_block() 279 inode->i_ino, (long long)iblock, dblock); in hfsplus_get_block() 283 sbi->blockoffset + (iblock & mask); in hfsplus_get_block()
|
/linux/fs/hpfs/ |
A D | file.c | 79 static int hpfs_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int … in hpfs_get_block() argument 85 s = hpfs_bmap(inode, iblock, &n_secs); in hpfs_get_block() 99 if (iblock<<9 != hpfs_i(inode)->mmu_private) { in hpfs_get_block()
|
/linux/fs/minix/ |
A D | itree_common.c | 310 long iblock; in truncate() local 312 iblock = (inode->i_size + sb->s_blocksize -1) >> sb->s_blocksize_bits; in truncate() 315 n = block_to_path(inode, iblock, offsets); in truncate()
|
/linux/fs/ext2/ |
A D | inode.c | 621 sector_t iblock, unsigned long maxblocks, in ext2_get_blocks() argument 639 depth = ext2_block_to_path(inode,iblock,offsets,&blocks_to_boundary); in ext2_get_blocks() 717 goal = ext2_find_goal(inode, iblock, partial); in ext2_get_blocks() 761 ext2_splice_branch(inode, iblock, partial, indirect_blks, count); in ext2_get_blocks() 779 int ext2_get_block(struct inode *inode, sector_t iblock, in ext2_get_block() argument 787 ret = ext2_get_blocks(inode, iblock, max_blocks, &bno, &new, &boundary, in ext2_get_block() 1192 long iblock; in __ext2_truncate_blocks() local 1195 iblock = (offset + blocksize-1) >> EXT2_BLOCK_SIZE_BITS(inode->i_sb); in __ext2_truncate_blocks() 1201 n = ext2_block_to_path(inode, iblock, offsets, NULL); in __ext2_truncate_blocks()
|
/linux/fs/qnx6/ |
A D | inode.c | 70 static unsigned qnx6_block_map(struct inode *inode, unsigned iblock); 72 static int qnx6_get_block(struct inode *inode, sector_t iblock, in qnx6_get_block() argument 78 inode->i_ino, (unsigned long)iblock); in qnx6_get_block() 80 phys = qnx6_block_map(inode, iblock); in qnx6_get_block()
|
/linux/fs/fat/ |
A D | inode.c | 119 static inline int __fat_get_block(struct inode *inode, sector_t iblock, in __fat_get_block() argument 129 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block() 140 if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) { in __fat_get_block() 147 offset = (unsigned long)iblock & (sbi->sec_per_clus - 1); in __fat_get_block() 153 if (!offset && !(iblock < last_block)) { in __fat_get_block() 165 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block() 183 static int fat_get_block(struct inode *inode, sector_t iblock, in fat_get_block() argument 190 err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create); in fat_get_block() 295 static int fat_get_block_bmap(struct inode *inode, sector_t iblock, in fat_get_block_bmap() argument 306 err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true); in fat_get_block_bmap()
|
A D | dir.c | 49 static inline void fat_dir_readahead(struct inode *dir, sector_t iblock, in fat_dir_readahead() argument 58 if ((iblock & (sbi->sec_per_clus - 1)) || sbi->sec_per_clus == 1) in fat_dir_readahead() 86 sector_t phys, iblock; in fat__get_entry() local 93 iblock = *pos >> sb->s_blocksize_bits; in fat__get_entry() 94 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0, false); in fat__get_entry() 98 fat_dir_readahead(dir, iblock, phys); in fat__get_entry() 105 *pos = (iblock + 1) << sb->s_blocksize_bits; in fat__get_entry()
|
/linux/fs/ |
A D | buffer.c | 2262 sector_t iblock, lblock; in block_read_full_page() local 2272 iblock = (sector_t)page->index << (PAGE_SHIFT - bbits); in block_read_full_page() 2286 if (iblock < lblock) { in block_read_full_page() 2288 err = get_block(inode, iblock, bh, 0); in block_read_full_page() 2306 } while (i++, iblock++, (bh = bh->b_this_page) != head); in block_read_full_page() 2801 sector_t iblock; in nobh_truncate_page() local 2833 iblock++; in nobh_truncate_page() 2839 err = get_block(inode, iblock, &map_bh, 0); in nobh_truncate_page() 2879 sector_t iblock; in block_truncate_page() local 2909 iblock++; in block_truncate_page() [all …]
|
/linux/fs/isofs/ |
A D | inode.c | 1051 int isofs_get_blocks(struct inode *inode, sector_t iblock, in isofs_get_blocks() argument 1054 unsigned long b_off = iblock; in isofs_get_blocks() 1063 if (iblock != b_off) { in isofs_get_blocks() 1142 static int isofs_get_block(struct inode *inode, sector_t iblock, in isofs_get_block() argument 1152 ret = isofs_get_blocks(inode, iblock, &bh_result, 1); in isofs_get_block()
|
/linux/fs/ext4/ |
A D | inode.c | 790 map.m_lblk = iblock; in _ext4_get_block() 807 int ext4_get_block(struct inode *inode, sector_t iblock, in ext4_get_block() argument 810 return _ext4_get_block(inode, iblock, bh, in ext4_get_block() 824 return _ext4_get_block(inode, iblock, bh_result, in ext4_get_block_unwritten() 1706 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) { in ext4_da_map_blocks() 1725 retval = es.es_len - (iblock - es.es_lblk); in ext4_da_map_blocks() 1819 map.m_lblk = iblock; in ext4_da_get_block_prep() 1827 ret = ext4_da_map_blocks(inode, iblock, &map, bh); in ext4_da_get_block_prep() 3675 ext4_lblk_t iblock; in __ext4_block_zero_page_range() local 3698 iblock++; in __ext4_block_zero_page_range() [all …]
|
/linux/fs/ntfs3/ |
A D | file.c | 207 sector_t iblock; in ntfs_zero_range() local 214 iblock = page_off >> inode->i_blkbits; in ntfs_zero_range() 234 ntfs_get_block(inode, iblock, bh, 0); in ntfs_zero_range() 261 } while (bh_off = bh_next, iblock += 1, in ntfs_zero_range()
|
/linux/block/ |
A D | fops.c | 26 static int blkdev_get_block(struct inode *inode, sector_t iblock, in blkdev_get_block() argument 30 bh->b_blocknr = iblock; in blkdev_get_block()
|