From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932120AbYEHSXl (ORCPT ); Thu, 8 May 2008 14:23:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754714AbYEHSXc (ORCPT ); Thu, 8 May 2008 14:23:32 -0400 Received: from ns1.suse.de ([195.135.220.2]:59897 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752942AbYEHSXb (ORCPT ); Thu, 8 May 2008 14:23:31 -0400 Date: Thu, 8 May 2008 11:22:33 -0700 From: Greg KH To: Willy Tarreau Cc: linux-kernel@vger.kernel.org, stable@kernel.org, Justin Forbes , Zwane Mwaikambo , "Theodore Ts'o" , Randy Dunlap , Dave Jones , Chuck Wolber , Chris Wedgwood , Michael Krufky , Chuck Ebbert , Domenico Andreoli , torvalds@linux-foundation.org, akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk Subject: Re: [patch 00/16] Linux 2.6.25 -stable review Message-ID: <20080508182233.GB2115@suse.de> References: <20080508174122.GA855@suse.de> <20080508181342.GA1594@1wt.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080508181342.GA1594@1wt.eu> User-Agent: Mutt/1.5.16 (2007-06-09) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 08, 2008 at 08:13:42PM +0200, Willy Tarreau wrote: > On Thu, May 08, 2008 at 10:41:22AM -0700, Greg KH wrote: > > This is the start of the stable review cycle for the 2.6.25.2 release. > > There are 16 patches in this series, all will be posted as a response to > > this one. If anyone has any issues with these being applied, please let > > us know. If anyone is a maintainer of the proper subsystem, and wants > > to add a Signed-off-by: line to the patch, please respond with it. > > Greg, shouldn't we also queue this one (may be in a later version) ? It's > in mainline. What problem does it solve? Does Len want it in -stable? thanks, greg k-h > >From a815ab8b5891f3d2515316655729272f68269e3b Mon Sep 17 00:00:00 2001 > From: Li Zefan > Date: Fri, 18 Apr 2008 13:27:29 -0700 > Subject: ACPI: check a return value correctly in acpi_power_get_context() > > We should check *resource != NULL rather than resource != NULL, which will be > always true. > > Signed-off-by: Li Zefan > Acked-by: Zhao Yakui > Signed-off-by: Andrew Morton > Signed-off-by: Len Brown > --- > drivers/acpi/power.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c > index 76bf6d9..f2a76ac 100644 > --- a/drivers/acpi/power.c > +++ b/drivers/acpi/power.c > @@ -121,7 +121,7 @@ acpi_power_get_context(acpi_handle handle, > } > > *resource = acpi_driver_data(device); > - if (!resource) > + if (!*resource) > return -ENODEV; > > return 0; > -- > 1.5.3.8