Home
last modified time | relevance | path

Searched refs:fs_blocks (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/fs/hfs/
Dextent.c330 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()
Dinode.c190 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()
Dhfs_fs.h60 sector_t fs_blocks; member
Dbtree.c244 HFS_I(inode)->fs_blocks = inode->i_size >> in hfs_bmap_alloc()
/linux-3.4.99/fs/hfsplus/
Dextents.c231 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()
Dinode.c412 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()
Dhfsplus_fs.h208 sector_t fs_blocks; member
Dbtree.c247 hip->fs_blocks = in hfs_bmap_alloc()
/linux-3.4.99/fs/xfs/
Dxfs_vnodeops.c1495 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()