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 192501 Details for
Bug 245247
Intel quad-core network IRQ blocked by another device w/ 3com 3c59x on RT kernel
[?]
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]
patch 3 / 3 - genirq-mark-io_apic-level-interrupts-to-avoid-resend
genirq-mark-io_apic-level-interrupts-to-avoid-resend.patch (text/plain), 2.03 KB, created by
Luis Claudio R. Goncalves
on 2007-09-11 13:31:13 UTC
(
hide
)
Description:
patch 3 / 3 - genirq-mark-io_apic-level-interrupts-to-avoid-resend
Filename:
MIME Type:
Creator:
Luis Claudio R. Goncalves
Created:
2007-09-11 13:31:13 UTC
Size:
2.03 KB
patch
obsolete
> >Level type interrupts do not need to be resent. It was also found that >some chipsets get confused in case of the resend. > >Mark the ioapic level type interrupts as such to avoid the resend >functionality in the generic irq code. > >Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> > >--- > arch/i386/kernel/io_apic.c | 7 +++++-- > arch/x86_64/kernel/io_apic.c | 7 +++++-- > 2 files changed, 10 insertions(+), 4 deletions(-) > >Index: linux-2.6/arch/i386/kernel/io_apic.c >=================================================================== >--- linux-2.6.orig/arch/i386/kernel/io_apic.c 2007-08-11 11:09:11.000000000 +0200 >+++ linux-2.6/arch/i386/kernel/io_apic.c 2007-08-11 11:09:12.000000000 +0200 >@@ -1256,12 +1256,15 @@ static struct irq_chip ioapic_chip; > static void ioapic_register_intr(int irq, int vector, unsigned long trigger) > { > if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) || >- trigger == IOAPIC_LEVEL) >+ trigger == IOAPIC_LEVEL) { >+ irq_desc[irq].status |= IRQ_LEVEL; > set_irq_chip_and_handler_name(irq, &ioapic_chip, > handle_fasteoi_irq, "fasteoi"); >- else >+ } else { >+ irq_desc[irq].status &= ~IRQ_LEVEL; > set_irq_chip_and_handler_name(irq, &ioapic_chip, > handle_edge_irq, "edge"); >+ } > set_intr_gate(vector, interrupt[irq]); > } > >Index: linux-2.6/arch/x86_64/kernel/io_apic.c >=================================================================== >--- linux-2.6.orig/arch/x86_64/kernel/io_apic.c 2007-08-11 11:09:11.000000000 +0200 >+++ linux-2.6/arch/x86_64/kernel/io_apic.c 2007-08-11 11:09:12.000000000 +0200 >@@ -800,12 +800,15 @@ static struct irq_chip ioapic_chip; > > static void ioapic_register_intr(int irq, unsigned long trigger) > { >- if (trigger) >+ if (trigger) { >+ irq_desc[irq].status |= IRQ_LEVEL; > set_irq_chip_and_handler_name(irq, &ioapic_chip, > handle_fasteoi_irq, "fasteoi"); >- else >+ } else { >+ irq_desc[irq].status &= ~IRQ_LEVEL; > set_irq_chip_and_handler_name(irq, &ioapic_chip, > handle_edge_irq, "edge"); >+ } > } > > static void setup_IO_APIC_irq(int apic, int pin, unsigned int 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 245247
:
157571
|
192481
|
192491
| 192501 |
192701