linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xfs: bad assertion for delalloc an extent that start at i_size
@ 2017-05-15 10:21 Zorro Lang
  2017-05-15 13:35 ` Brian Foster
  0 siblings, 1 reply; 2+ messages in thread
From: Zorro Lang @ 2017-05-15 10:21 UTC (permalink / raw)
  To: linux-xfs; +Cc: zlang

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>
---
 fs/xfs/xfs_bmap_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_bmap_util.c b/fs/xfs/xfs_bmap_util.c
index 8795e9c..a6d83ea 100644
--- a/fs/xfs/xfs_bmap_util.c
+++ b/fs/xfs/xfs_bmap_util.c
@@ -713,7 +713,7 @@ xfs_getbmap(
 			 * extents.
 			 */
 			if (map[i].br_startblock == DELAYSTARTBLOCK &&
-			    map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
+			    map[i].br_startoff < XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
 				ASSERT((iflags & BMV_IF_DELALLOC) != 0);
 
                         if (map[i].br_startblock == HOLESTARTBLOCK &&
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xfs: bad assertion for delalloc an extent that start at i_size
  2017-05-15 10:21 [PATCH] xfs: bad assertion for delalloc an extent that start at i_size Zorro Lang
@ 2017-05-15 13:35 ` Brian Foster
  0 siblings, 0 replies; 2+ messages in thread
From: Brian Foster @ 2017-05-15 13:35 UTC (permalink / raw)
  To: Zorro Lang; +Cc: linux-xfs

On Mon, May 15, 2017 at 06:21:50PM +0800, Zorro Lang wrote:
> 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>

>  fs/xfs/xfs_bmap_util.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_bmap_util.c b/fs/xfs/xfs_bmap_util.c
> index 8795e9c..a6d83ea 100644
> --- a/fs/xfs/xfs_bmap_util.c
> +++ b/fs/xfs/xfs_bmap_util.c
> @@ -713,7 +713,7 @@ xfs_getbmap(
>  			 * extents.
>  			 */
>  			if (map[i].br_startblock == DELAYSTARTBLOCK &&
> -			    map[i].br_startoff <= XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
> +			    map[i].br_startoff < XFS_B_TO_FSB(mp, XFS_ISIZE(ip)))
>  				ASSERT((iflags & BMV_IF_DELALLOC) != 0);
>  
>                          if (map[i].br_startblock == HOLESTARTBLOCK &&
> -- 
> 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-05-15 13:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-15 10:21 [PATCH] xfs: bad assertion for delalloc an extent that start at i_size Zorro Lang
2017-05-15 13:35 ` Brian Foster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).