Lines Matching refs:l_start
628 bf->l_start += filp->f_pos; in xfs_ioc_space()
631 bf->l_start += XFS_ISIZE(ip); in xfs_ioc_space()
660 if (bf->l_start < 0 || in xfs_ioc_space()
661 bf->l_start > inode->i_sb->s_maxbytes || in xfs_ioc_space()
662 bf->l_start + bf->l_len < 0 || in xfs_ioc_space()
663 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) { in xfs_ioc_space()
671 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
676 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len, in xfs_ioc_space()
681 error = xfs_free_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
688 if (bf->l_start > XFS_ISIZE(ip)) { in xfs_ioc_space()
690 bf->l_start - XFS_ISIZE(ip), 0); in xfs_ioc_space()
696 iattr.ia_size = bf->l_start; in xfs_ioc_space()