On Sat, Jan 14, 2023 at 03:55:25AM +0800, Zorro Lang wrote: > On Fri, Dec 30, 2022 at 02:12:54PM -0800, Darrick J. Wong wrote: > > From: Darrick J. Wong <djwong@xxxxxxxxxx> > > > > For online fsck stress testing, increase the number of filesystem > > operations per fsstress run to 2 million, now that we have the ability > > to kill fsstress if the user should push ^C to abort the test early. > > This should guarantee a couple of hours of continuous stress testing in > > between clearing the scratch filesystem. > > > > Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> > > --- > > common/fuzzy | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > > > diff --git a/common/fuzzy b/common/fuzzy > > index 01cf7f00d8..3e23edc9e4 100644 > > --- a/common/fuzzy > > +++ b/common/fuzzy > > @@ -399,7 +399,9 @@ __stress_scrub_fsstress_loop() { > > local end="$1" > > local runningfile="$2" > > > > - local args=$(_scale_fsstress_args -p 4 -d $SCRATCH_MNT -n 2000 $FSSTRESS_AVOID) > > + # As of March 2022, 2 million fsstress ops should be enough to keep > > + # any filesystem busy for a couple of hours. > > + local args=$(_scale_fsstress_args -p 4 -d $SCRATCH_MNT -n 2000000 $FSSTRESS_AVOID) > > Can fsstress "-l 0" option help? No. -n determines the number of operations per loop, and -l determines the number of loops: $ fsstress -d dor/ -n 5 -v -s 1 0/0: mkdir d0 17 0/0: mkdir add id=0,parent=-1 0/1: link - no file 0/2: mkdir d1 17 0/2: mkdir add id=1,parent=-1 0/3: chown . 127/0 0 0/4: rename - no source filename $ fsstress -d dor/ -n 5 -l 2 -v -s 1 0/0: mkdir d0 17 0/0: mkdir add id=0,parent=-1 0/1: link - no file 0/2: mkdir d1 17 0/2: mkdir add id=1,parent=-1 0/3: chown . 127/0 0 0/4: rename - no source filename 0/0: mkdir d2 0 0/0: mkdir add id=2,parent=-1 0/1: link - no file 0/2: mkdir d2/d3 0 0/2: mkdir add id=3,parent=2 0/3: chown d2 127/0 0 0/4: rename(REXCHANGE) d2/d3 and d2 have ancestor-descendant relationship --D > > echo "Running $FSSTRESS_PROG $args" >> $seqres.full > > > > while __stress_scrub_running "$end" "$runningfile"; do > > >