> diff --git a/iw/filter_gui.py b/iw/filter_gui.py > index 3b6f573..a0f6704 100644 > --- a/iw/filter_gui.py > +++ b/iw/filter_gui.py > @@ -586,6 +586,10 @@ class FilterWindow(InstallWindow): > except (_ped.IOException, _ped.DeviceException): > continue > d["XXX_SIZE"] = int(partedDevice.getSize()) > + # cciss controllers, without any sets defined, show up as a 0 size > + # blockdev, ignore these > + if d["XXX_SIZE"] == 0: > + continue > > # This isn't so great, but for iSCSI devices the path contains a lot > # of useful identifiying info that should be displayed. Should these perhaps be excluded at a lower level, like perhaps in __is_blacklisted_blockdev or udev_enumerate_block_devices? This feels like too much of a hack to me. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list