Don't do exclusiveDisks checking for BIOS RAID members
Hi,
On 01/21/2010 07:33 PM, Chris Lumens wrote:
diff --git a/storage/devicetree.py b/storage/devicetree.py
index 4356ca5..1b90132 100644
--- a/storage/devicetree.py
+++ b/storage/devicetree.py
@@ -886,6 +886,7 @@ class DeviceTree(object):
if udev_device_is_disk(info) and
not udev_device_is_md(info) and
not udev_device_is_dm(info) and
+ not udev_device_is_biosraid(info) and
not udev_device_is_multipath_member(info):
if self.exclusiveDisks and name not in self.exclusiveDisks:
self.addIgnoredDisk(name)
This is fine, provided that we make sure the rest of anaconda only ever
handles biosraid things as the aggregate device, and doesn't do anything
with the individual members.
The rest of anaconda should indeed never touch individual members.
Regards,
Hans
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|