mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
dfd01d7653
Signed-off-by: Sage Weil <sage@newdream.net> Signed-off-by: Neha Ojha <nojha@redhat.com>
49 lines
1.1 KiB
Bash
Executable File
49 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# can't use -e because of background process
|
|
set -x
|
|
|
|
IMAGE=rbdrw-image
|
|
LOCKID=rbdrw
|
|
RELPATH=$(dirname $0)/../../../src/test/librbd
|
|
RBDRW=$RELPATH/rbdrw.py
|
|
|
|
rbd create $IMAGE --size 10 --image-format 2 --image-shared || exit 1
|
|
|
|
# rbdrw loops doing I/O to $IMAGE after locking with lockid $LOCKID
|
|
python3 $RBDRW $IMAGE $LOCKID &
|
|
iochild=$!
|
|
|
|
# give client time to lock and start reading/writing
|
|
LOCKS='[]'
|
|
while [ "$LOCKS" == '[]' ]
|
|
do
|
|
LOCKS=$(rbd lock list $IMAGE --format json)
|
|
sleep 1
|
|
done
|
|
|
|
clientaddr=$(rbd lock list $IMAGE | tail -1 | awk '{print $NF;}')
|
|
clientid=$(rbd lock list $IMAGE | tail -1 | awk '{print $1;}')
|
|
echo "clientaddr: $clientaddr"
|
|
echo "clientid: $clientid"
|
|
|
|
ceph osd blocklist add $clientaddr || exit 1
|
|
|
|
wait $iochild
|
|
rbdrw_exitcode=$?
|
|
if [ $rbdrw_exitcode != 108 ]
|
|
then
|
|
echo "wrong exitcode from rbdrw: $rbdrw_exitcode"
|
|
exit 1
|
|
else
|
|
echo "rbdrw stopped with ESHUTDOWN"
|
|
fi
|
|
|
|
set -e
|
|
ceph osd blocklist rm $clientaddr
|
|
rbd lock remove $IMAGE $LOCKID "$clientid"
|
|
# rbdrw will have exited with an existing watch, so, until #3527 is fixed,
|
|
# hang out until the watch expires
|
|
sleep 30
|
|
rbd rm $IMAGE
|
|
echo OK
|