Lines Matching refs:l_start
653 bf->l_start += filp->f_pos; in xfs_ioc_space()
656 bf->l_start += XFS_ISIZE(ip); in xfs_ioc_space()
685 if (bf->l_start < 0 || in xfs_ioc_space()
686 bf->l_start > inode->i_sb->s_maxbytes || in xfs_ioc_space()
687 bf->l_start + bf->l_len < 0 || in xfs_ioc_space()
688 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) { in xfs_ioc_space()
696 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
701 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len, in xfs_ioc_space()
706 error = xfs_free_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
713 if (bf->l_start > XFS_ISIZE(ip)) { in xfs_ioc_space()
715 bf->l_start - XFS_ISIZE(ip), 0); in xfs_ioc_space()
721 iattr.ia_size = bf->l_start; in xfs_ioc_space()