Lines Matching refs:l_start
656 bf->l_start += filp->f_pos; in xfs_ioc_space()
659 bf->l_start += XFS_ISIZE(ip); in xfs_ioc_space()
688 if (bf->l_start < 0 || in xfs_ioc_space()
689 bf->l_start > inode->i_sb->s_maxbytes || in xfs_ioc_space()
690 bf->l_start + bf->l_len < 0 || in xfs_ioc_space()
691 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) { in xfs_ioc_space()
699 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
704 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len, in xfs_ioc_space()
709 error = xfs_free_file_space(ip, bf->l_start, bf->l_len); in xfs_ioc_space()
716 if (bf->l_start > XFS_ISIZE(ip)) { in xfs_ioc_space()
718 bf->l_start - XFS_ISIZE(ip), 0); in xfs_ioc_space()
724 iattr.ia_size = bf->l_start; in xfs_ioc_space()