Lines Matching refs:startoffset_fsb
639 xfs_fileoff_t startoffset_fsb; in xfs_alloc_file_space() local
666 startoffset_fsb = XFS_B_TO_FSBT(mp, offset); in xfs_alloc_file_space()
668 allocatesize_fsb = endoffset_fsb - startoffset_fsb; in xfs_alloc_file_space()
682 s = startoffset_fsb; in xfs_alloc_file_space()
685 e = startoffset_fsb + allocatesize_fsb; in xfs_alloc_file_space()
686 div_u64_rem(startoffset_fsb, extsz, &temp); in xfs_alloc_file_space()
734 error = xfs_bmapi_write(tp, ip, startoffset_fsb, in xfs_alloc_file_space()
742 startoffset_fsb += imapp->br_blockcount; in xfs_alloc_file_space()
764 xfs_fileoff_t startoffset_fsb, in xfs_unmap_extent() argument
783 error = xfs_bunmapi(tp, ip, startoffset_fsb, len_fsb, 0, 2, done); in xfs_unmap_extent()
831 xfs_fileoff_t startoffset_fsb; in xfs_free_file_space() local
852 startoffset_fsb = XFS_B_TO_FSB(mp, offset); in xfs_free_file_space()
857 startoffset_fsb = xfs_fileoff_roundup_rtx(mp, startoffset_fsb); in xfs_free_file_space()
864 if (endoffset_fsb > startoffset_fsb) { in xfs_free_file_space()
866 error = xfs_unmap_extent(ip, startoffset_fsb, in xfs_free_file_space()
867 endoffset_fsb - startoffset_fsb, &done); in xfs_free_file_space()