xfs_off_t               offset,
        xfs_off_t               len)
 {
-       struct xfs_mount        *mp = ip->i_mount;
        struct inode            *inode = VFS_I(ip);
        xfs_off_t               rounding, start, end;
        int                     error;
 
-       rounding = max_t(xfs_off_t, mp->m_sb.sb_blocksize, PAGE_SIZE);
-       start = round_down(offset, rounding);
-       end = round_up(offset + len, rounding) - 1;
+       /*
+        * Make sure we extend the flush out to extent alignment
+        * boundaries so any extent range overlapping the start/end
+        * of the modification we are about to do is clean and idle.
+        */
+       rounding = max_t(xfs_off_t, xfs_inode_alloc_unitsize(ip), PAGE_SIZE);
+       start = rounddown_64(offset, rounding);
+       end = roundup_64(offset + len, rounding) - 1;
 
        error = filemap_write_and_wait_range(inode->i_mapping, start, end);
        if (error)