Symbol: XFS_ISIZE
fs/xfs/xfs_bmap_util.c
307
max_len = XFS_ISIZE(ip);
fs/xfs/xfs_bmap_util.c
311
(ip->i_delayed_blks || XFS_ISIZE(ip) > ip->i_disk_size)) {
fs/xfs/xfs_bmap_util.c
330
max_len = XFS_ISIZE(ip);
fs/xfs/xfs_bmap_util.c
371
XFS_B_TO_FSB(mp, XFS_ISIZE(ip)));
fs/xfs/xfs_bmap_util.c
404
xfs_fileoff_t end = XFS_B_TO_FSB(mp, XFS_ISIZE(ip));
fs/xfs/xfs_bmap_util.c
549
end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_ISIZE(ip));
fs/xfs/xfs_bmap_util.c
600
round_up(XFS_ISIZE(ip), mp->m_sb.sb_blocksize),
fs/xfs/xfs_bmap_util.c
623
XFS_ISIZE(ip), XFS_BMAPI_NODISCARD);
fs/xfs/xfs_bmap_util.c
896
if (offset >= XFS_ISIZE(ip))
fs/xfs/xfs_bmap_util.c
898
if (offset + len > XFS_ISIZE(ip))
fs/xfs/xfs_bmap_util.c
899
len = XFS_ISIZE(ip) - offset;
fs/xfs/xfs_bmap_util.c
910
if (offset + len >= XFS_ISIZE(ip) && offset_in_page(offset + len) > 0) {
fs/xfs/xfs_bmap_util.c
953
error = xfs_flush_unmap_range(ip, offset, XFS_ISIZE(ip));
fs/xfs/xfs_icache.c
1206
XFS_ISIZE(ip) < icw->icw_min_file_size)
fs/xfs/xfs_inode.c
1046
ASSERT(new_size <= XFS_ISIZE(ip));
fs/xfs/xfs_inode.c
1445
(ip->i_disk_size != 0 || XFS_ISIZE(ip) != 0 ||
fs/xfs/xfs_iomap.c
1006
if (offset + length > XFS_ISIZE(ip))
fs/xfs/xfs_iomap.c
1792
xfs_fileoff_t eof_fsb = XFS_B_TO_FSB(mp, XFS_ISIZE(ip));
fs/xfs/xfs_iomap.c
2018
if (eof && offset + count > XFS_ISIZE(ip)) {
fs/xfs/xfs_iomap.c
221
if (align && XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, align))
fs/xfs/xfs_iomap.c
504
if (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_allocsize_blocks))
fs/xfs/xfs_iomap.c
511
if (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_dalign) ||
fs/xfs/xfs_iops.c
700
stat->size = XFS_ISIZE(ip);
fs/xfs/xfs_pnfs.c
198
if (offset + length > XFS_ISIZE(ip))
fs/xfs/xfs_reflink.c
1749
if (pos_out > XFS_ISIZE(dest)) {
fs/xfs/xfs_reflink.c
1750
loff_t flen = *len + (pos_out - XFS_ISIZE(dest));
fs/xfs/xfs_reflink.c
1751
ret = xfs_flush_unmap_range(dest, XFS_ISIZE(dest), flen);