From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ingo Molnar Subject: Re: [PATCH 1/2] mpparse: Add a knob to disable IRQ 0 through I/O APIC Date: Tue, 1 Jul 2008 08:18:15 +0200 Message-ID: <20080701061815.GA16642@elte.hu> References: <20080630215746.84ffb0f4.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20080630215746.84ffb0f4.randy.dunlap@oracle.com> Sender: linux-acpi-owner@vger.kernel.org To: Randy Dunlap Cc: "Maciej W. Rozycki" , Matthew Garrett , "Rafael J. Wysocki" , Len Brown , Thomas Gleixner , linux-next@vger.kernel.org, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org List-Id: linux-next.vger.kernel.org * Randy Dunlap wrote: > What calls set_disable_irq0_through_ioapic() ? a DMI quirk in the next patch: +dmi_disable_irq0_through_ioapic(const struct dmi_system_id *d) +{ + pr_notice("%s detected: disabling IRQ 0 through I/O APIC\n", d->ident); + set_disable_irq0_through_ioapic(1); + return 0; Ingo