2012-03-08 17:33:16 -06:00
|
|
|
#! /bin/bash
|
2018-06-09 11:35:42 +10:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
# Copyright (c) 2012 Red Hat, Inc. All Rights Reserved.
|
|
|
|
|
#
|
2012-03-08 17:33:16 -06:00
|
|
|
# FS QA Test No. 280
|
|
|
|
|
#
|
|
|
|
|
# Test quota vs. suspend/freeze deadlock,
|
|
|
|
|
# dcdbed85 quota: Fix deadlock with suspend and quotas
|
|
|
|
|
#
|
|
|
|
|
seq=`basename $0`
|
2013-03-15 12:28:02 +00:00
|
|
|
seqres=$RESULT_DIR/$seq
|
2012-03-08 17:33:16 -06:00
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
|
|
|
|
cd /
|
|
|
|
|
rm -f $tmp.*
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
2013-03-15 12:28:04 +00:00
|
|
|
. ./common/rc
|
|
|
|
|
. ./common/filter
|
|
|
|
|
. ./common/quota
|
2012-03-08 17:33:16 -06:00
|
|
|
|
|
|
|
|
_require_scratch
|
|
|
|
|
_require_quota
|
2012-09-19 17:53:56 -05:00
|
|
|
_require_freeze
|
2012-03-08 17:33:16 -06:00
|
|
|
|
|
|
|
|
# real QA test starts here
|
|
|
|
|
|
|
|
|
|
# Modify as appropriate.
|
2012-09-19 17:53:56 -05:00
|
|
|
_supported_fs generic
|
|
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
rm -f $seqres.full
|
2012-03-08 17:33:16 -06:00
|
|
|
|
2015-12-21 18:07:43 +11:00
|
|
|
_scratch_unmount 2>/dev/null
|
2013-03-15 12:28:02 +00:00
|
|
|
_scratch_mkfs >> $seqres.full 2>&1
|
2012-03-08 17:33:16 -06:00
|
|
|
_scratch_mount "-o usrquota,grpquota"
|
|
|
|
|
quotacheck -u -g $SCRATCH_MNT 2>/dev/null
|
|
|
|
|
quotaon $SCRATCH_MNT 2>/dev/null
|
|
|
|
|
xfs_freeze -f $SCRATCH_MNT
|
|
|
|
|
setquota -u root 1 2 3 4 $SCRATCH_MNT &
|
2014-03-13 15:20:28 +11:00
|
|
|
pid=$!
|
2012-03-08 17:33:16 -06:00
|
|
|
sleep 1
|
|
|
|
|
xfs_freeze -u $SCRATCH_MNT
|
2014-03-13 15:20:28 +11:00
|
|
|
wait $pid
|
2015-12-21 18:07:43 +11:00
|
|
|
_scratch_unmount
|
2012-03-08 17:33:16 -06:00
|
|
|
|
|
|
|
|
# Failure comes in the form of a deadlock.
|
|
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|