Navigation Menu

Skip to content

Commit

Permalink
qa: add script to stress udev_enumerate_scan_devices()
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
  • Loading branch information
idryomov committed Oct 25, 2019
1 parent bd37a72 commit b7a0e2a
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
5 changes: 5 additions & 0 deletions qa/suites/krbd/rbd-nomount/tasks/krbd_udev_enumerate.yaml
@@ -0,0 +1,5 @@
tasks:
- workunit:
clients:
all:
- rbd/krbd_udev_enumerate.sh
66 changes: 66 additions & 0 deletions qa/workunits/rbd/krbd_udev_enumerate.sh
@@ -0,0 +1,66 @@
#!/usr/bin/env bash

# This is a test for https://tracker.ceph.com/issues/41036, but it also
# triggers https://tracker.ceph.com/issues/41404 in some environments.

set -ex

function assert_exit_codes() {
declare -a pids=($@)

for pid in ${pids[@]}; do
wait $pid
done
}

function run_map() {
declare -a pids

for i in {1..300}; do
sudo rbd map img$i &
pids+=($!)
done

assert_exit_codes ${pids[@]}
[[ $(rbd showmapped | wc -l) -eq 301 ]]
}

function run_unmap_by_dev() {
declare -a pids

run_map
for i in {0..299}; do
sudo rbd unmap /dev/rbd$i &
pids+=($!)
done

assert_exit_codes ${pids[@]}
[[ $(rbd showmapped | wc -l) -eq 0 ]]
}

function run_unmap_by_spec() {
declare -a pids

run_map
for i in {1..300}; do
sudo rbd unmap img$i &
pids+=($!)
done

assert_exit_codes ${pids[@]}
[[ $(rbd showmapped | wc -l) -eq 0 ]]
}

# Can't test with exclusive-lock, don't bother enabling deep-flatten.
# See https://tracker.ceph.com/issues/42492.
for i in {1..300}; do
rbd create --size 1 --image-feature '' img$i
done

for i in {1..30}; do
echo Iteration $i
run_unmap_by_dev
run_unmap_by_spec
done

echo OK

0 comments on commit b7a0e2a

Please sign in to comment.