blob: ffeeae40cc7fe1eca7e44e328885f089b64de52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#! /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
# real QA test starts here
_supported_fs generic
_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
$AIO_TEST 0 100 $testfile
if [ $? -ne 0 ]; then
exit $status
fi
$AIO_TEST 1 100 $testfile
if [ $? -ne 0 ]; then
exit $status
fi
status=0
exit $status
|