diff options
author | Zorro Lang <zlang@redhat.com> | 2017-05-15 17:40:02 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-05-16 18:24:36 +0200 |
commit | 892d2a5f705723b2cb488bfb38bcbdcf83273184 (patch) | |
tree | f42195bfd607a5c60cf4a67dbc4954b65dd673fe /fs/xfs/xfs_fsmap.c | |
parent | xfs: fix warnings about unused stack variables (diff) | |
download | linux-892d2a5f705723b2cb488bfb38bcbdcf83273184.tar.xz linux-892d2a5f705723b2cb488bfb38bcbdcf83273184.zip |
xfs: bad assertion for delalloc an extent that start at i_size
By run fsstress long enough time enough in RHEL-7, I find an
assertion failure (harder to reproduce on linux-4.11, but problem
is still there):
XFS: Assertion failed: (iflags & BMV_IF_DELALLOC) != 0, file: fs/xfs/xfs_bmap_util.c
The assertion is in xfs_getbmap() funciton:
if (map[i].br_startblock == DELAYSTARTBLOCK &&
--> map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
ASSERT((iflags & BMV_IF_DELALLOC) != 0);
When map[i].br_startoff == XFS_B_TO_FSB(mp, XFS_ISIZE(ip)), the
startoff is just at EOF. But we only need to make sure delalloc
extents that are within EOF, not include EOF.
Signed-off-by: Zorro Lang <zlang@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_fsmap.c')
0 files changed, 0 insertions, 0 deletions