* [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min @ 2024-07-12 6:47 Long Li 2024-07-12 6:47 ` [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap Long Li 2024-07-12 15:38 ` [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Darrick J. Wong 0 siblings, 2 replies; 4+ messages in thread From: Long Li @ 2024-07-12 6:47 UTC (permalink / raw) To: zlang, djwong Cc: linux-xfs, fstests, yi.zhang, houtao1, leo.lilong, yangerkun xfs/016 checks for corruption in the log when it wraps. It looks for a log head that is at or above the minimum log size. If the final position of the log head equals near_end_min, the test will fail. Under these conditions, we should let the test continue. Signed-off-by: Long Li <leo.lilong@huawei.com> --- tests/xfs/016 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xfs/016 b/tests/xfs/016 index 6337bb1f..335a2d61 100755 --- a/tests/xfs/016 +++ b/tests/xfs/016 @@ -239,7 +239,7 @@ while [ $head -lt $near_end_min ]; do head=$(_log_head) done -[ $head -gt $near_end_min -a $head -lt $log_size_bb ] || \ +[ $head -ge $near_end_min -a $head -lt $log_size_bb ] || \ _fail "!!! unexpected near end log position $head" # Step 4: Try to wrap the log, checking for corruption with each advance. -- 2.39.2 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap 2024-07-12 6:47 [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Long Li @ 2024-07-12 6:47 ` Long Li 2024-07-12 15:39 ` Darrick J. Wong 2024-07-12 15:38 ` [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Darrick J. Wong 1 sibling, 1 reply; 4+ messages in thread From: Long Li @ 2024-07-12 6:47 UTC (permalink / raw) To: zlang, djwong Cc: linux-xfs, fstests, yi.zhang, houtao1, leo.lilong, yangerkun I got a failure in xfs/242 as follows, it can be easily reproduced when I run xfs/242 as a cyclic test. 13. data -> unwritten -> data 0: [0..127]: data -1: [128..511]: unwritten -2: [512..639]: data +1: [128..639]: unwritten The root cause, as Dave pointed out in previous email [1], is that _filter_bmap may incorrectly match the AG-OFFSET in column 5 for datadev files. On the other hand, _filter_bmap missing a "next" to jump out when it matches "data" in the 5th column, otherwise it might print the result twice. The issue was introduced by commit 7d5d3f77154e ("xfs/242: fix _filter_bmap for xfs_io bmap that does rt file properly"). The failure disappeared when I retest xfs/242 by reverted commit 7d5d3f77154e. Fix it by matching the 7th column first and then the 5th column in _filter_bmap, because the rtdev file only has 5 columns in the `bmap -vp` output. [1] https://lore.kernel.org/all/Zh9UkHEesvrpSQ7J@dread.disaster.area/ Signed-off-by: Long Li <leo.lilong@huawei.com> --- common/punch | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/common/punch b/common/punch index 9e730404..43ccab69 100644 --- a/common/punch +++ b/common/punch @@ -188,7 +188,10 @@ _filter_hole_fiemap() _coalesce_extents } -# Column 7 for datadev files and column 5 for rtdev files +# Column 7 for datadev files and column 5 for rtdev files, To prevent the +# 5th column in datadev files from being potentially matched incorrectly, +# we need to match Column 7 for datadev files first, because the rtdev +# file only has 5 columns in the `bmap -vp` output. # 10000 Unwritten preallocated extent # 01000 Doesn't begin on stripe unit # 00100 Doesn't end on stripe unit @@ -201,18 +204,19 @@ _filter_bmap() print $1, $2, $3; next; } - $5 ~ /1[01][01][01][01]/ { + $7 ~ /1[01][01][01][01]/ { print $1, $2, "unwritten"; next; } - $5 ~ /0[01][01][01][01]/ { + $7 ~ /0[01][01][01][01]/ { print $1, $2, "data" + next; } - $7 ~ /1[01][01][01][01]/ { + $5 ~ /1[01][01][01][01]/ { print $1, $2, "unwritten"; next; } - $7 ~ /0[01][01][01][01]/ { + $5 ~ /0[01][01][01][01]/ { print $1, $2, "data" }' | _coalesce_extents -- 2.39.2 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap 2024-07-12 6:47 ` [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap Long Li @ 2024-07-12 15:39 ` Darrick J. Wong 0 siblings, 0 replies; 4+ messages in thread From: Darrick J. Wong @ 2024-07-12 15:39 UTC (permalink / raw) To: Long Li; +Cc: zlang, linux-xfs, fstests, yi.zhang, houtao1, yangerkun On Fri, Jul 12, 2024 at 02:47:16PM +0800, Long Li wrote: > I got a failure in xfs/242 as follows, it can be easily reproduced > when I run xfs/242 as a cyclic test. > > 13. data -> unwritten -> data > 0: [0..127]: data > -1: [128..511]: unwritten > -2: [512..639]: data > +1: [128..639]: unwritten > > The root cause, as Dave pointed out in previous email [1], is that > _filter_bmap may incorrectly match the AG-OFFSET in column 5 for datadev > files. On the other hand, _filter_bmap missing a "next" to jump out when > it matches "data" in the 5th column, otherwise it might print the result > twice. The issue was introduced by commit 7d5d3f77154e ("xfs/242: fix > _filter_bmap for xfs_io bmap that does rt file properly"). The failure > disappeared when I retest xfs/242 by reverted commit 7d5d3f77154e. > > Fix it by matching the 7th column first and then the 5th column in > _filter_bmap, because the rtdev file only has 5 columns in the `bmap -vp` > output. > > [1] https://lore.kernel.org/all/Zh9UkHEesvrpSQ7J@dread.disaster.area/ > Signed-off-by: Long Li <leo.lilong@huawei.com> > --- > common/punch | 14 +++++++++----- > 1 file changed, 9 insertions(+), 5 deletions(-) > > diff --git a/common/punch b/common/punch > index 9e730404..43ccab69 100644 > --- a/common/punch > +++ b/common/punch > @@ -188,7 +188,10 @@ _filter_hole_fiemap() > _coalesce_extents > } > > -# Column 7 for datadev files and column 5 for rtdev files > +# Column 7 for datadev files and column 5 for rtdev files, To prevent the > +# 5th column in datadev files from being potentially matched incorrectly, > +# we need to match Column 7 for datadev files first, because the rtdev > +# file only has 5 columns in the `bmap -vp` output. Yeah, checking column 7 before 5 seems reasonable. Longer term, maybe these tools should emit json to cut down on the amount of string parsing that fstests has to do. Reviewed-by: Darrick J. Wong <djwong@kernel.org> --D > # 10000 Unwritten preallocated extent > # 01000 Doesn't begin on stripe unit > # 00100 Doesn't end on stripe unit > @@ -201,18 +204,19 @@ _filter_bmap() > print $1, $2, $3; > next; > } > - $5 ~ /1[01][01][01][01]/ { > + $7 ~ /1[01][01][01][01]/ { > print $1, $2, "unwritten"; > next; > } > - $5 ~ /0[01][01][01][01]/ { > + $7 ~ /0[01][01][01][01]/ { > print $1, $2, "data" > + next; > } > - $7 ~ /1[01][01][01][01]/ { > + $5 ~ /1[01][01][01][01]/ { > print $1, $2, "unwritten"; > next; > } > - $7 ~ /0[01][01][01][01]/ { > + $5 ~ /0[01][01][01][01]/ { > print $1, $2, "data" > }' | > _coalesce_extents > -- > 2.39.2 > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min 2024-07-12 6:47 [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Long Li 2024-07-12 6:47 ` [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap Long Li @ 2024-07-12 15:38 ` Darrick J. Wong 1 sibling, 0 replies; 4+ messages in thread From: Darrick J. Wong @ 2024-07-12 15:38 UTC (permalink / raw) To: Long Li; +Cc: zlang, linux-xfs, fstests, yi.zhang, houtao1, yangerkun On Fri, Jul 12, 2024 at 02:47:15PM +0800, Long Li wrote: > xfs/016 checks for corruption in the log when it wraps. It looks for a log > head that is at or above the minimum log size. If the final position of > the log head equals near_end_min, the test will fail. Under these > conditions, we should let the test continue. > > Signed-off-by: Long Li <leo.lilong@huawei.com> > --- > tests/xfs/016 | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/xfs/016 b/tests/xfs/016 > index 6337bb1f..335a2d61 100755 > --- a/tests/xfs/016 > +++ b/tests/xfs/016 > @@ -239,7 +239,7 @@ while [ $head -lt $near_end_min ]; do > head=$(_log_head) > done > > -[ $head -gt $near_end_min -a $head -lt $log_size_bb ] || \ > +[ $head -ge $near_end_min -a $head -lt $log_size_bb ] || \ Heh, that's quite the coincidence! Reviewed-by: Darrick J. Wong <djwong@kernel.org> --D > _fail "!!! unexpected near end log position $head" > > # Step 4: Try to wrap the log, checking for corruption with each advance. > -- > 2.39.2 > > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-12 15:39 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-12 6:47 [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Long Li 2024-07-12 6:47 ` [PATCH 2/2] xfs/242: fix test failure due to incorrect filtering in _filter_bmap Long Li 2024-07-12 15:39 ` Darrick J. Wong 2024-07-12 15:38 ` [PATCH 1/2] xfs/016: fix test fail when head equal to near_end_min Darrick J. Wong
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox