From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ville =?iso-8859-1?Q?Syrj=E4l=E4?= Subject: Re: [PATCH] x86, irq: Fix regression caused by commit b568b8601f05 Date: Mon, 16 Feb 2015 21:11:42 +0200 Message-ID: <20150216191142.GA3311@sci.fi> References: <1424039150-4115-1-git-send-email-syrjala@sci.fi> <1424052673-22974-1-git-send-email-jiang.liu@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from filtteri1.pp.htv.fi ([213.243.153.184]:48487 "EHLO filtteri1.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752990AbbBPTLu (ORCPT ); Mon, 16 Feb 2015 14:11:50 -0500 Content-Disposition: inline In-Reply-To: <1424052673-22974-1-git-send-email-jiang.liu@linux.intel.com> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Jiang Liu Cc: "Rafael J. Wysocki" , Len Brown , Pavel Machek , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, Sander Eikelenboom , linux-acpi@vger.kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org On Mon, Feb 16, 2015 at 10:11:13AM +0800, Jiang Liu wrote: > Commit b568b8601f05 ("Treat SCI interrupt as normal GSI interrupt") > accidently removes support of legacy PIC interrupt when fixing a > regression for Xen, which causes a nasty regression on HP/Compaq > nc6000 where we fail to register the ACPI interrupt, and thus > lose eg. thermal notifications leading a potentially overheated > machine. >=20 > So reintroduce support of legacy PIC based ACPI SCI interrupt. >=20 > Reported-by: Ville Syrj=E4l=E4 > Signed-off-by: Jiang Liu > --- > Hi Ville, > Could you please help to try this patch instead of revert commit > b568b8601f05? Yep, this seems to fix it. Thanks. Tested-by: Ville Syrj=E4l=E4 Cc: # 3.19 That's one regression fixed on this machine, time to go bisect the next= one... > Thanks! > Gerry > --- > arch/x86/kernel/acpi/boot.c | 5 +++++ > 1 file changed, 5 insertions(+) >=20 > diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.= c > index ae97ed0873c6..3d525c6124f6 100644 > --- a/arch/x86/kernel/acpi/boot.c > +++ b/arch/x86/kernel/acpi/boot.c > @@ -613,6 +613,11 @@ int acpi_gsi_to_irq(u32 gsi, unsigned int *irqp) > { > int rc, irq, trigger, polarity; > =20 > + if (acpi_irq_model =3D=3D ACPI_IRQ_MODEL_PIC) { > + *irqp =3D gsi; > + return 0; > + } > + > rc =3D acpi_get_override_irq(gsi, &trigger, &polarity); > if (rc =3D=3D 0) { > trigger =3D trigger ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE; > --=20 > 1.7.10.4 >=20 --=20 Ville Syrj=E4l=E4 syrjala@sci.fi http://www.sci.fi/~syrjala/ -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" i= n the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html