login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
June
»
3
Re: [PATCH 1/7] add kernel cmdline option to disable pci-irq quirks
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Thomas Gleixner
Subject:
Re: [PATCH 1/7] add kernel cmdline option to disable pci-irq quirks
Date: Tuesday, June 3, 2008 - 3:13 am
On Mon, 2 Jun 2008, Olaf Dabrunz wrote:
quoted text
> From: Olaf Dabrunz <od@suse.de> > > Add a switch to disable all boot interrupt quirks, using the parameter > nobootirqquirk.
This should be a parameter in the form of pci=ioapicquirk and not a separate and completely unintuitive thing. Thanks, tglx
quoted text
> Signed-off-by: Olaf Dabrunz <od@suse.de> > Signed-off-by: Stefan Assmann <sassmann@suse.de> > --- > drivers/pci/quirks.c | 15 +++++++++++++++ > 1 files changed, 15 insertions(+), 0 deletions(-) > > diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c > index dabb563..6245486 100644 > --- a/drivers/pci/quirks.c > +++ b/drivers/pci/quirks.c > @@ -1363,6 +1363,21 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x2609, quirk_intel_pcie_pm); > DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x260a, quirk_intel_pcie_pm); > DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x260b, quirk_intel_pcie_pm); > > + > +#ifdef CONFIG_X86_IO_APIC > +int nobootirqquirk __read_mostly = 0; > + > +int nobootirqquirk_setup(char *str) > +{ > + nobootirqquirk = 1; > + printk(KERN_INFO "Boot IRQ quirk handling disabled\n"); > + > + return 1; > +} > +__setup("nobootirqquirk", nobootirqquirk_setup); > +#endif /* CONFIG_X86_IO_APIC */ > + > + > /* > * Toshiba TC86C001 IDE controller reports the standard 8-byte BAR0 size > * but the PIO transfers won't work if BAR0 falls at the odd 8 bytes. > -- > 1.5.2.4 > > -- > Olaf Dabrunz (od/odabrunz), SUSE Linux Products GmbH, N??rnberg >
--
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 1/7] add kernel cmdline option to disable pci-irq q ...
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 2/7] reroute PCI interrupt to legacy boot interrupt ...
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 3/7] disable legacy boot interrupt generation
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 4/7] disable broadcomm legacy boot interrupt generation
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 5/7] disable AMD/ATI legacy boot interrupt generation
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 6/7] disable pci legacy boot irq quirks on noapic boot
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
[PATCH 7/7] bootirqquirk= parameter to enable bootirq quir ...
, Olaf Dabrunz
, (Mon Jun 2, 5:45 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Mon Jun 2, 9:43 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Thomas Gleixner
, (Tue Jun 3, 3:11 am)
Re: [PATCH 1/7] add kernel cmdline option to disable pci-i ...
, Thomas Gleixner
, (Tue Jun 3, 3:13 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Tue Jun 3, 3:21 am)
Re: [PATCH 2/7] reroute PCI interrupt to legacy boot inter ...
, Thomas Gleixner
, (Tue Jun 3, 3:37 am)
Re: [PATCH 3/7] disable legacy boot interrupt generation
, Thomas Gleixner
, (Tue Jun 3, 3:40 am)
Re: [PATCH 4/7] disable broadcomm legacy boot interrupt ge ...
, Thomas Gleixner
, (Tue Jun 3, 3:46 am)
Re: [PATCH 5/7] disable AMD/ATI legacy boot interrupt gene ...
, Thomas Gleixner
, (Tue Jun 3, 3:54 am)
Re: [PATCH 6/7] disable pci legacy boot irq quirks on noap ...
, Thomas Gleixner
, (Tue Jun 3, 3:55 am)
Re: [PATCH 7/7] bootirqquirk= parameter to enable bootirq ...
, Thomas Gleixner
, (Tue Jun 3, 3:56 am)
Re: [PATCH 4/7] disable broadcomm legacy boot interrupt ge ...
, Jon Masters
, (Tue Jun 3, 8:46 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Jon Masters
, (Tue Jun 3, 8:52 am)
Re: [PATCH 4/7] disable broadcomm legacy boot interrupt ge ...
, Olaf Dabrunz
, (Tue Jun 3, 8:59 am)
Re: [PATCH 4/7] disable broadcomm legacy boot interrupt ge ...
, Jon Masters
, (Tue Jun 3, 9:05 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Stefan Assmann
, (Tue Jun 3, 9:17 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Tue Jun 3, 9:56 am)
Re: [PATCH 1/7] add kernel cmdline option to disable pci-i ...
, Stefan Assmann
, (Tue Jun 3, 10:00 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Tue Jun 3, 10:08 am)
Re: [PATCH 4/7] disable broadcomm legacy boot interrupt ge ...
, Olaf Dabrunz
, (Tue Jun 3, 10:27 am)
Re: [PATCH 2/7] reroute PCI interrupt to legacy boot inter ...
, Randy Dunlap
, (Tue Jun 3, 3:59 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Eric W. Biederman
, (Tue Jun 3, 7:35 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Stefan Assmann
, (Wed Jun 4, 2:49 am)
Re: [PATCH 7/7] bootirqquirk= parameter to enable bootirq ...
, Olaf Dabrunz
, (Wed Jun 4, 3:06 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Eric W. Biederman
, (Wed Jun 4, 3:45 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Stefan Assmann
, (Wed Jun 4, 4:33 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Olaf Dabrunz
, (Wed Jun 4, 4:37 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 8:52 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Thomas Gleixner
, (Wed Jun 4, 9:08 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 10:18 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Thomas Gleixner
, (Wed Jun 4, 10:33 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 10:53 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Thomas Gleixner
, (Wed Jun 4, 11:35 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Jon Masters
, (Wed Jun 4, 11:44 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 11:51 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Jon Masters
, (Wed Jun 4, 11:57 am)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 12:19 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Jon Masters
, (Wed Jun 4, 12:59 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 3:07 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Jon Masters
, (Wed Jun 4, 3:27 pm)
Re: [PATCH 0/7] Boot IRQ quirks and rerouting
, Maciej W. Rozycki
, (Wed Jun 4, 4:08 pm)
Re: [PATCH 2/7] reroute PCI interrupt to legacy boot inter ...
, Olaf Dabrunz
, (Thu Jun 12, 7:14 am)
Re: [PATCH 5/7] disable AMD/ATI legacy boot interrupt gene ...
, Olaf Dabrunz
, (Thu Jun 12, 7:14 am)
RE: [PATCH 0/7] Boot IRQ quirks and rerouting
, Yuhong Bao
, (Mon Feb 15, 5:30 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Rusty Russell
Re: 2.6.22-rc3-mm1
Bill Fink
Re: [PATCH] net: add ability to clear stats via ethtool - e1000/pcnet32
Jeffrey V. Merkey
Re: Versioning file system
Alexey Dobriyan
Re: [2.6.22.2 review 09/84] Fix rfkill IRQ flags.
Luben Tuikov
Re: Integration of SCST in the mainstream Linux kernel
git-commits-head
:
Linux Kernel Mailing List
V4L/DVB: tm6000: add special usb request to quit i2c tuner transfer
Linux Kernel Mailing List
OMAP: DSS2: SDI driver
Linux Kernel Mailing List
PCI: introduce pci_pcie_cap()
Linux Kernel Mailing List
drivers/acpi: use kasprintf
Linux Kernel Mailing List
PCI hotplug: acpiphp: remove superfluous _HPP/_HPX evaluation
linux-netdev
:
David Miller
Re: [2.6.30-rc3] powerpc: compilation error of mace module
Rafael J. Wysocki
Re: [PATCH] igb: fix kexec with igb
Patrick McHardy
Re: [rfc 02/13] [RFC 02/13] netfilter: nf_conntrack_sip: Add callid parser
webmaster Maintenance
&#32852;&#31995;&#31995;&#32479;&#31649;&#29702;&#21592;
Krzysztof Oledzki
Re: Error: an inet prefix is expected rather than "0/0".
openbsd-misc
:
Ted Bullock
Re: Proliant DL380 G3 cannot get on network
Jack J. Woehr
Re: Real men don't attack straw men
Úlfar M. E. Johnson
installing openbsd in xen
Eric Furman
Re: Defending OpenBSD Performance
Tony Abernethy
Re: The Atheros story in much fewer words
git
:
Oliver Kullmann
Re: how to move with history?
Junio C Hamano
Re: [PATCH 2/3] git-add--interactive: remove hunk coalescing
Shawn O. Pearce
Re: Bugs in Gitosis
Alex Riesen
Re: git exclude patterns for directory
David Kastrup
Re: I'm a total push-over..
Colocation donated by:
Syndicate