From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753247Ab2APCxf (ORCPT ); Sun, 15 Jan 2012 21:53:35 -0500 Received: from mga09.intel.com ([134.134.136.24]:44849 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752906Ab2APCxe (ORCPT ); Sun, 15 Jan 2012 21:53:34 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,351,1309762800"; d="scan'208";a="98885170" Date: Mon, 16 Jan 2012 10:53:32 +0800 From: Wu Fengguang To: Rabin Vincent Cc: Chanho Min , Jens Axboe , linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm/backing-dev.c: fix crash when USB/SCSI device is detached Message-ID: <20120116025331.GA16516@localhost> References: <20120115125853.GA9234@localhost> <20120115153838.GA4279@debian> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120115153838.GA4279@debian> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jan 15, 2012 at 09:11:07PM +0530, Rabin Vincent wrote: > On Sun, Jan 15, 2012 at 08:58:53PM +0800, Wu Fengguang wrote: > > On Sun, Jan 15, 2012 at 03:58:43PM +0530, Rabin Vincent wrote: > > > diff --git a/mm/backing-dev.c b/mm/backing-dev.c > > > index 71034f4..a39ad70 100644 > > > --- a/mm/backing-dev.c > > > +++ b/mm/backing-dev.c > > > @@ -318,7 +318,7 @@ static void wakeup_timer_fn(unsigned long data) > > > if (bdi->wb.task) { > > > trace_writeback_wake_thread(bdi); > > > wake_up_process(bdi->wb.task); > > > - } else { > > > + } else if (bdi->dev) { > > > /* > > > * When bdi tasks are inactive for long time, they are killed. > > > * In this case we have to wake-up the forker thread which > > > @@ -584,6 +584,8 @@ EXPORT_SYMBOL(bdi_register_dev); > > > */ > > > static void bdi_wb_shutdown(struct backing_dev_info *bdi) > > > { > > > + struct task_struct *task = NULL; > > > > NULL not necessary? > > Will fix. > > Also, I notice another problem here. bdi->dev should be made NULL before the > device is unregistered, not after: Yes, good catch! > if (!bdi_cap_flush_forker(bdi)) > bdi_wb_shutdown(bdi); > bdi_debug_unregister(bdi); > device_unregister(bdi->dev); > bdi->dev = NULL; Thanks, Fengguang