2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2014-02-28 13:59:12 +04:00
# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2014-02-28 13:59:12 +04:00
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 02:45:37 +03:00
SKIP_WITHOUT_LVMETAD = 1
SKIP_WITH_LVMPOLLD = 1
2014-02-28 13:59:12 +04:00
2015-10-27 02:45:37 +03:00
. lib/inittest
2014-02-28 13:59:12 +04:00
aux prepare_pvs 2
# flip the devices around
2017-07-16 19:29:20 +03:00
init_udev_transaction
dmsetup remove " $dev1 "
dmsetup remove " $dev2 "
dmsetup create -u TEST-${ PREFIX } pv1 ${ PREFIX } pv2 ${ PREFIX } pv2.table
dmsetup create -u TEST-${ PREFIX } pv2 ${ PREFIX } pv1 ${ PREFIX } pv1.table
finish_udev_transaction
dmsetup info -c
# re-scan them
pvscan --cache " $dev1 " || true
pvscan --cache " $dev2 " || true
# expect both to be there
pvs -a -o name | tee out
grep " $dev1 " out
grep " $dev2 " out
aux lvmetad_dump
# flip the devices 2nd. time around
init_udev_transaction
dmsetup remove " $dev1 "
dmsetup remove " $dev2 "
2014-02-28 13:59:12 +04:00
dmsetup create -u TEST-${ PREFIX } pv2 ${ PREFIX } pv2 ${ PREFIX } pv2.table
dmsetup create -u TEST-${ PREFIX } pv1 ${ PREFIX } pv1 ${ PREFIX } pv1.table
2017-07-16 19:29:20 +03:00
finish_udev_transaction
2014-02-28 13:59:12 +04:00
# re-scan them
2016-04-23 00:11:01 +03:00
pvscan --cache " $dev1 " || true
pvscan --cache " $dev2 " || true
2014-02-28 13:59:12 +04:00
# expect both to be there
2016-04-23 00:11:01 +03:00
pvs -a -o name | tee out
grep " $dev1 " out
grep " $dev2 " out
2014-02-28 13:59:12 +04:00
2017-07-16 19:29:20 +03:00
aux lvmetad_dump
# flip the devices 2nd. time around
dmsetup remove -f " $dev1 "
dmsetup remove -f " $dev2 "
dmsetup create -u TEST-${ PREFIX } pv1 ${ PREFIX } pv2 ${ PREFIX } pv2.table
dmsetup create -u TEST-${ PREFIX } pv2 ${ PREFIX } pv1 ${ PREFIX } pv1.table
# re-scan them
pvscan --cache " $dev1 " || true
pvscan --cache " $dev2 " || true
# expect both to be there
pvs -a -o name | tee out
grep " $dev1 " out
grep " $dev2 " out