Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 580034 Details for
Bug 815985
anaconda upgrade and rescue modes fail if root device is degraded RAID
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Proposed patch to detect degraded RAID1 arrays in anaconda
anaconda-13.21.149-detect-degraded-raid1.patch (text/plain), 859 bytes, created by
Greg Bailey
on 2012-04-25 00:35:54 UTC
(
hide
)
Description:
Proposed patch to detect degraded RAID1 arrays in anaconda
Filename:
MIME Type:
Creator:
Greg Bailey
Created:
2012-04-25 00:35:54 UTC
Size:
859 bytes
patch
obsolete
>--- anaconda-13.21.149.orig/storage/devicetree.py 2011-11-04 08:53:04.000000000 -0700 >+++ anaconda-13.21.149/storage/devicetree.py 2012-04-24 17:27:38.000000000 -0700 >@@ -2020,7 +2020,11 @@ > > # remove md array devices for which we did not find all members > for array in self.getDevicesByType("mdarray"): >- if array.memberDevices > len(array.parents): >+ # Exception: allow degraded RAID1 arrays to be detected >+ if (array.level == 1) and (array.memberDevices-1) == len(array.parents): >+ log.warning("RAID1 array %s is degraded - %d of %d members found." % \ >+ (array.name, len(array.parents), array.memberDevices)) >+ elif array.memberDevices > len(array.parents): > self._recursiveRemove(array) > > def _recursiveRemove(self, device):
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 815985
: 580034