Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753817AbYJXTqW (ORCPT ); Fri, 24 Oct 2008 15:46:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753068AbYJXTqM (ORCPT ); Fri, 24 Oct 2008 15:46:12 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:47846 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752757AbYJXTqK (ORCPT ); Fri, 24 Oct 2008 15:46:10 -0400 From: "Rafael J. Wysocki" To: Jesse Barnes Subject: Re: Oops in ACPI with git latest Date: Fri, 24 Oct 2008 21:50:31 +0200 User-Agent: KMail/1.9.9 Cc: "Moore, Robert" , James Bottomley , "linux-acpi@vger.kernel.org" , "linux-kernel" , Len Brown References: <1224791103.3330.37.camel@localhost.localdomain> <200810242043.04078.rjw@sisk.pl> <200810241222.32979.jbarnes@virtuousgeek.org> In-Reply-To: <200810241222.32979.jbarnes@virtuousgeek.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200810242150.31809.rjw@sisk.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1518 Lines: 44 On Friday, 24 of October 2008, Jesse Barnes wrote: > On Friday, October 24, 2008 11:43 am Rafael J. Wysocki wrote: > > On Friday, 24 of October 2008, Jesse Barnes wrote: > > > So who wants to send me a final patch for this? > > > > I already did: http://marc.info/?l=linux-kernel&m=122484871717023&w=4 > > but I can remove the "!output.pointer || " if you prefer. :-) > > Yeah Bob said it would likely contain garbage anyway, so we should just remove > it. OK, here you go. --- From: Rafael J. Wysocki Subject: Prevent acpi_run_osc from using NULL objects Check if the object returned by acpi_evaluate_object() in acpi_run_osc() is not NULL before using it. Signed-off-by: Rafael J. Wysocki --- drivers/pci/pci-acpi.c | 3 +++ 1 file changed, 3 insertions(+) Index: linux-2.6/drivers/pci/pci-acpi.c =================================================================== --- linux-2.6.orig/drivers/pci/pci-acpi.c +++ linux-2.6/drivers/pci/pci-acpi.c @@ -83,6 +83,9 @@ static acpi_status acpi_run_osc(acpi_han if (ACPI_FAILURE(status)) return status; + if (!output.length) + return AE_NULL_OBJECT; + out_obj = output.pointer; if (out_obj->type != ACPI_TYPE_BUFFER) { printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n"); -- 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/