mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
4eb04c8c05
dev_name(dev) returns "[unknown]" if there are no names on dev->aliases. It's meant mainly for log messages. Many places assume a valid path name is returned, and use it directly. A caller that wants to use the path from dev_name() must first check if the dev has any paths with dm_list_empty(&dev->aliases).
69 lines
1.4 KiB
Bash
69 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2016 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,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
# Check how lvm2 handles partitions over losetup -P devices
|
|
|
|
|
|
SKIP_WITH_LVMPOLLD=1
|
|
|
|
. lib/inittest
|
|
|
|
which sfdisk || skip
|
|
|
|
aux prepare_loop 1000 -P || skip
|
|
|
|
test -f LOOP
|
|
LOOP=$(< LOOP)
|
|
|
|
echo "1 2" | sfdisk "$LOOP"
|
|
|
|
# wait for links
|
|
aux udev_wait
|
|
|
|
# losetup -P should provide partition
|
|
ls -la "${LOOP}"*
|
|
test -e "${LOOP}p1"
|
|
|
|
aux lvmconf 'devices/scan = "/dev"'
|
|
|
|
aux extend_filter "a|$LOOP|"
|
|
aux extend_devices "$LOOP"
|
|
|
|
# creation should fail for 'partitioned' loop device
|
|
not pvcreate -y "$LOOP"
|
|
not vgcreate $SHARED ${PREFIX}vg "$LOOP"
|
|
|
|
aux teardown_devs
|
|
|
|
aux prepare_loop 1000 || skip
|
|
|
|
test -f LOOP
|
|
LOOP=$(< LOOP)
|
|
|
|
|
|
echo "1 2" | sfdisk "$LOOP"
|
|
|
|
# wait for links
|
|
aux udev_wait
|
|
|
|
# no partitione should be actually there
|
|
ls -la "${LOOP}"*
|
|
test ! -e "${LOOP}p1"
|
|
|
|
aux extend_filter "a|$LOOP|"
|
|
aux extend_devices "$LOOP"
|
|
|
|
# creation should pass for 'non-partitioned' loop device
|
|
pvcreate -y "$LOOP"
|
|
|
|
vgcreate $SHARED ${PREFIX}vg "$LOOP"
|