From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757539Ab2JDU5b (ORCPT ); Thu, 4 Oct 2012 16:57:31 -0400 Received: from shadbolt.e.decadent.org.uk ([88.96.1.126]:37229 "EHLO shadbolt.e.decadent.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757319Ab2JDU53 (ORCPT ); Thu, 4 Oct 2012 16:57:29 -0400 Date: Thu, 4 Oct 2012 21:57:25 +0100 From: Ben Hutchings To: Willy Tarreau Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, James Bottomley , Greg Kroah-Hartman Message-ID: <20121004205724.GE13292@decadent.org.uk> References: <6a854f579a99b4fe2efaca1057e8ae22@local> <20121001225201.376690206@1wt.eu> <20121004203436.GD13292@decadent.org.uk> <20121004203813.GL10245@1wt.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121004203813.GL10245@1wt.eu> User-Agent: Mutt/1.5.20 (2009-06-14) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: ben@decadent.org.uk Subject: Re: [ 089/180] SCSI: fix scsi_wait_scan X-SA-Exim-Version: 4.2.1 (built Mon, 22 Mar 2010 06:51:10 +0000) X-SA-Exim-Scanned: Yes (on shadbolt.decadent.org.uk) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 04, 2012 at 10:38:13PM +0200, Willy Tarreau wrote: > On Thu, Oct 04, 2012 at 09:34:36PM +0100, Ben Hutchings wrote: > > On Tue, Oct 02, 2012 at 12:53:26AM +0200, Willy Tarreau wrote: > > > 2.6.32-longterm review patch. If anyone has any objections, please let me know. > > > > > > ------------------ > > > > > > From: James Bottomley > > > > > > commit 1ff2f40305772b159a91c19590ee159d3a504afc upstream. > > > > > > Commit c751085943362143f84346d274e0011419c84202 > > > Author: Rafael J. Wysocki > > > Date: Sun Apr 12 20:06:56 2009 +0200 > > > > > > PM/Hibernate: Wait for SCSI devices scan to complete during resume > > > > > > Broke the scsi_wait_scan module in 2.6.30. Apparently debian still uses it so > > > fix it and backport to stable before removing it in 3.6. > > [...] > > > --- a/drivers/scsi/scsi_wait_scan.c > > > +++ b/drivers/scsi/scsi_wait_scan.c > > > @@ -13,6 +13,7 @@ > > > #include > > > #include > > > #include > > > +#include "scsi_priv.h" > > > > > > static int __init wait_scan_init(void) > > > { > > > > This backported version is a no-op. I think we need to do: > > > > -#include > > + > > +extern int scsi_complete_async_scans(void); > > But this is what we have in scsi_scan.h : > > #ifdef CONFIG_SCSI > /* drivers/scsi/scsi_scan.c */ > extern int scsi_complete_async_scans(void); > #else > static inline int scsi_complete_async_scans(void) { return 0; } > #endif > > Since CONFIG_SCSI_WAIT_SCAN depends on CONFIG_SCSI, we're certain to have > it defined when we build this code. > > Am I missing something ? Yes, this is dealing with the modular SCSI case (CONFIG_SCSI not defined). We can't change the '#ifdef CONFIG_SCSI' to check CONFIG_SCSI_MODULE as well, because is also used by the PM code which is built-in. Ben. -- Ben Hutchings We get into the habit of living before acquiring the habit of thinking. - Albert Camus