When we ignore a partition because its disk cannot be found, or des not have a disklabel format, or is not partitionable, we should lvm to ignore the partition too. --- storage/devicetree.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/storage/devicetree.py b/storage/devicetree.py index 514e37b..e32fd95 100644 --- a/storage/devicetree.py +++ b/storage/devicetree.py @@ -1075,6 +1075,7 @@ class DeviceTree(object): # if the current device is still not in # the tree, something has gone wrong log.error("failure scanning device %s" % disk_name) + lvm.lvm_cc_addFilterRejectRegexp(name) return # Check that the disk has partitions. If it does not, we must have @@ -1084,6 +1085,11 @@ class DeviceTree(object): # of, like logical volumes. if not getattr(disk.format, "partitions", None) or \ not disk.partitionable: + # When we got here because the disk does not have a disklabel + # format (ie a biosraid member), or because it is not + # partitionable we want LVM to ignore this partition too + if disk.format.type != "disklabel" or not disk.partitionable: + lvm.lvm_cc_addFilterRejectRegexp(name) log.debug("ignoring partition %s" % name) return -- 1.6.5.2 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list