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@xxxxxxxxxx> > --- > 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@xxxxxxxxxx> --D > _fail "!!! unexpected near end log position $head" > > # Step 4: Try to wrap the log, checking for corruption with each advance. > -- > 2.39.2 > >