Searched refs:fs_blocks (Results 1 – 9 of 9) sorted by relevance
/linux-3.4.99/fs/hfs/ |
D | extent.c | 330 if (block >= HFS_I(inode)->fs_blocks) { in hfs_get_block() 331 if (block > HFS_I(inode)->fs_blocks || !create) in hfs_get_block() 365 HFS_I(inode)->fs_blocks++; in hfs_get_block() 522 HFS_I(inode)->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits; in hfs_file_truncate() 523 inode_set_bytes(inode, HFS_I(inode)->fs_blocks << sb->s_blocksize_bits); in hfs_file_truncate()
|
D | inode.c | 190 HFS_I(inode)->fs_blocks = 0; in hfs_new_inode() 268 HFS_I(inode)->fs_blocks = (log_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits; in hfs_inode_read_fork() 269 inode_set_bytes(inode, HFS_I(inode)->fs_blocks << sb->s_blocksize_bits); in hfs_inode_read_fork() 350 HFS_I(inode)->fs_blocks = 0; in hfs_read_inode()
|
D | hfs_fs.h | 60 sector_t fs_blocks; member
|
D | btree.c | 244 HFS_I(inode)->fs_blocks = inode->i_size >> in hfs_bmap_alloc()
|
/linux-3.4.99/fs/hfsplus/ |
D | extents.c | 231 if (iblock >= hip->fs_blocks) { in hfsplus_get_block() 232 if (iblock > hip->fs_blocks || !create) in hfsplus_get_block() 279 hip->fs_blocks++; in hfsplus_get_block() 579 hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> in hfsplus_file_truncate() 581 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits); in hfsplus_file_truncate()
|
D | inode.c | 412 hip->fs_blocks = 0; in hfsplus_new_inode() 479 hip->fs_blocks = in hfsplus_inode_read_fork() 481 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits); in hfsplus_inode_read_fork() 523 HFSPLUS_I(inode)->fs_blocks = 0; in hfsplus_cat_read_inode()
|
D | hfsplus_fs.h | 208 sector_t fs_blocks; member
|
D | btree.c | 247 hip->fs_blocks = in hfs_bmap_alloc()
|
/linux-3.4.99/fs/xfs/ |
D | xfs_vnodeops.c | 1495 xfs_filblks_t fs_blocks; in xfs_symlink() local 1545 fs_blocks = 0; in xfs_symlink() 1547 fs_blocks = XFS_B_TO_FSB(mp, pathlen); in xfs_symlink() 1548 resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks); in xfs_symlink() 1551 if (error == ENOSPC && fs_blocks == 0) { in xfs_symlink() 1638 error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks, in xfs_symlink() 1645 resblks -= fs_blocks; in xfs_symlink()
|