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: |
|
Description
Rob Starkey
2004-05-19 21:52:03 UTC
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) |