Bug 123670
| Summary: | (MEGARAID) Compaq/HP Remote Insight Lightsout card is being detected at megaraid | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Rob Starkey <rob> | ||||
| Component: | kernel | Assignee: | Dave Jones <davej> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 2 | CC: | alan, pfrields | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | i386 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2004-11-03 04:43:39 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
Can you attach an lspci -vxx Created attachment 100442 [details]
lspci -vxx output as requested.
Here ya go.
Something like this should fix it
--- drivers/scsi/megaraid.c~ 2004-05-22 16:34:01.976198176 +0100
+++ drivers/scsi/megaraid.c 2004-05-22 16:36:02.088938264 +0100
@@ -4609,6 +4609,20 @@
pci_bus = pdev->bus->number;
pci_dev_func = pdev->devfn;
+
+ if(pdev->vendor == PCI_VENDOR_ID_INTEL) /* The
megaraid3 stuff reports the id of the intel
+ part which
is not remotely specific to the megaraid */
+ {
+ /* Don't fall over the Compaq management cards using
the same PCI identifier */
+ if(pdev->subsystem_vendor == PCI_VENDOR_ID_COMPAQ &&
+ pdev->subsystem_id == 0xC000)
+ return -ENODEV;
+ /* Now check the magic signature byte */
+ pci_read_config_word(pdev, PCI_CONF_AMISIG, &magic);
+ if(magic != HBA_SIGNATURE_471 && magic != HBA_SIGNATURE)
+ return -ENODEV;
+ /* Ok it is probably a megaraid */
+ }
/*
* For these vendor and device ids, signature offsets are not
Posted a final version of that to linux-kernel and the maintainer Alan, I am expereincing this same issue, do I need to create a new iso with the updated kernel? Thanks. Mike If you can remove the compaq card you should be able to install, upgrade to the kernel errata and then reinstall the card. That is probably the easiest approach. fixed in FC3, (and soon FC2 update). Alan, this seems to still not be upstream as of 2.6.9 (havent checked 2.6.10rc) |
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7 Description of problem: System: Compaq/HP DL360 Dual PIII 800mhz 4gigs of ram Compaq hardware raid (cpqarray) With the remote insight card installed, FC2's installer detects and tries to load the megaraid driver making the system lockup/hang requiring a power cycle. The 'workaaround' is to boot with noprobe and select the modules by hand but this is bad because it breaks kickstart and upgrades. Version-Release number of selected component (if applicable): FC2 How reproducible: Always Steps to Reproduce: 1. Boot FC2 install CD Additional info: