From: Dave Chinner <dchinner@xxxxxxxxxx> .... xfs/442 491 .... xfs/442 takes a long time to run because it is scaling the load by the number of processes it is going to run on twice. It scales the number of operations by the number of processes it is going to run, meaning that doubling the number of processes quadruples the runtime. Reduce it to scale linearly by fixing the number of ops it runs per process. Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx> --- tests/xfs/442 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xfs/442 b/tests/xfs/442 index 58e56b5d2..d539fa5e0 100755 --- a/tests/xfs/442 +++ b/tests/xfs/442 @@ -63,7 +63,7 @@ _scratch_mkfs_sized $((1600 * 1048576)) > $seqres.full 2>&1 _scratch_mount >> $seqres.full 2>&1 nr_cpus=$((LOAD_FACTOR * 4)) -nr_ops=$((25000 * nr_cpus * TIME_FACTOR)) +nr_ops=$((25000 * TIME_FACTOR)) _run_fsstress -w -d $SCRATCH_MNT -n $nr_ops -p $nr_cpus echo "Check quota before remount" -- 2.45.2