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 161776 Details for
Bug 250266
megaraid SAS driver on 2.6.21-31.el5rt hangs on boot
[?]
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]
megaraid_sas IRQF_NODELAY temporary fix
megasas_IRQF_NODELAY.patch (text/plain), 1.05 KB, created by
Arnaldo Carvalho de Melo
on 2007-08-18 00:10:08 UTC
(
hide
)
Description:
megaraid_sas IRQF_NODELAY temporary fix
Filename:
MIME Type:
Creator:
Arnaldo Carvalho de Melo
Created:
2007-08-18 00:10:08 UTC
Size:
1.05 KB
patch
obsolete
>--- linux-2.6.21.x86_64.orig/drivers/scsi/megaraid/megaraid_sas.c 2007-08-17 20:54:23.000000000 -0300 >+++ linux-2.6.21.x86_64/drivers/scsi/megaraid/megaraid_sas.c 2007-08-17 21:05:26.000000000 -0300 >@@ -2408,7 +2408,22 @@ megasas_probe_one(struct pci_dev *pdev, > /* > * Register IRQ > */ >- if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED, "megasas", instance)) { >+ /* >+ * Use of IRQF_NODELAY in CONFIG_PREEMPT_RT is know to fix a timeout >+ * problem that ultimately makes the driver consider the adapter dead, >+ * setting instance->hw_crit_error. It is safe because megasas_isr >+ * doesn't take any locks, just using tasklet_schedule to defer the >+ * interrupt handling to softirq time. This is indeed a big hammer >+ * "solution", but at least systems with this hardware will work as >+ * expected till we find the real fix. >+ */ >+ if (request_irq(pdev->irq, megasas_isr, >+#ifdef CONFIG_PREEMPT_RT >+ IRQF_NODELAY, >+#else >+ IRQF_SHARED, >+#endif >+ "megasas", instance)) { > printk(KERN_DEBUG "megasas: Failed to register IRQ\n"); > goto fail_irq; > }
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 250266
:
160330
|
161776
|
204301
|
230321