#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2020 Red Hat Inc.  All Rights Reserved.
#
# FS QA Test No. 616
#
# IO_URING soak buffered fsx test, copy from generic/522 but reduce the number
# fsx ops to limit the testing time to be an auto group test.
#
. ./common/preamble
_begin_fstest auto rw io_uring stress soak

# Import common functions.
. ./common/filter


# Modify as appropriate.
_require_test
_require_io_uring

# Run fsx for 100 thousand ops or more
nr_ops=$((100000 * TIME_FACTOR))
op_sz=$((128000 * LOAD_FACTOR))
file_sz=$((600000 * LOAD_FACTOR))
fsx_file=$TEST_DIR/fsx.$seq

fsx_args=(-S 0)
fsx_args+=(-U)
fsx_args+=(-q)
fsx_args+=(-N $nr_ops)
fsx_args+=(-p $((nr_ops / 100)))
fsx_args+=(-o $op_sz)
fsx_args+=(-l $file_sz)
test -n "$SOAK_DURATION" && fsx_args+=(--duration="$SOAK_DURATION")

run_fsx "${fsx_args[@]}" | sed -e '/^fsx.*/d'

# success, all done
echo "Silence is golden"
status=0
exit
