#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2014 Red Hat, Inc.  All Rights Reserved.
#
# FS QA Test No. 323
#
# Run aio-last-ref-held-by-io - last put of ioctx not in process
# context. We've had a couple of instances in the past where having the
# last reference to an ioctx be held by the IO (instead of the
# process) would cause problems (hung system, crashes).

. ./common/preamble
_begin_fstest auto aio stress

# Import common functions.
. ./common/filter


_require_test

_require_aiodio aio-last-ref-held-by-io

testfile=$TEST_DIR/aio-testfile
$XFS_IO_PROG -ftc "pwrite 0 10m" $testfile | _filter_xfs_io

# This can emit cpu affinity setting failures that aren't considered test
# failures but cause golden image failures. Redirect the test output to
# $seqres.full so that it is captured but doesn't directly cause test failures.
$AIO_TEST 0 100 $testfile 2>> $seqres.full
if [ $? -ne 0 ]; then
	exit $status
fi

$AIO_TEST 1 100 $testfile 2>> $seqres.full
if [ $? -ne 0 ]; then
	exit $status
fi

status=0
exit $status
