Due to recent changes in udev_is_md_array, Intel BIOS RAID array members are
wrongly identified as RAID arrays instead of as RAID array members, this
causes the actual raid array to not be seen by anaconda.
---
storage/udev.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
def udev_device_is_md(info):
""" Return True if the device is a mdraid array device. """
- return info.has_key("MD_METADATA")
+ # isw raid set *members* have MD_METADATA set, but are not arrays!
+ return info.has_key("MD_METADATA") and
+ info.get("ID_FS_TYPE") != "isw_raid_member"
def udev_device_is_cciss(info):
""" Return True if the device is a CCISS device. """
--
1.6.6.1
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
def udev_device_is_md(info):
""" Return True if the device is a mdraid array device. """
- return info.has_key("MD_METADATA")
+ # isw raid set *members* have MD_METADATA set, but are not arrays!
+ return info.has_key("MD_METADATA") and
+ info.get("ID_FS_TYPE") != "isw_raid_member"
def udev_device_is_cciss(info):
""" Return True if the device is a CCISS device. """
Ack.
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list