From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tejun Heo Subject: Re: [PATCH 1/4] block: Rename queue dead flag Date: Tue, 16 Oct 2012 16:31:02 -0700 Message-ID: <20121016233102.GJ16166@google.com> References: <50758EBE.7050202@acm.org> <50758F1C.9030005@acm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mail-pb0-f46.google.com ([209.85.160.46]:43955 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755714Ab2JPXbH (ORCPT ); Tue, 16 Oct 2012 19:31:07 -0400 Received: by mail-pb0-f46.google.com with SMTP id rr4so6471021pbb.19 for ; Tue, 16 Oct 2012 16:31:06 -0700 (PDT) Content-Disposition: inline In-Reply-To: <50758F1C.9030005@acm.org> Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: Bart Van Assche Cc: linux-scsi , James Bottomley , Mike Christie , Jens Axboe , Chanho Min On Wed, Oct 10, 2012 at 05:07:08PM +0200, Bart Van Assche wrote: > QUEUE_FLAG_DEAD is used to indicate that queuing new requests must > stop. After this flag has been set queue draining starts. However, > during the queue draining phase it is still safe to invoke the > queue's request_fn, so QUEUE_FLAG_DYING is a better name for this > flag. > > This patch is the result of running the command below and manually > fixing up indentation: > > git grep -lE 'blk_queue_dead|QUEUE_FLAG_DEAD' | > xargs sed -i.tmp -e 's/blk_queue_dead/blk_queue_dying/g' \ > -e 's/QUEUE_FLAG_DEAD/QUEUE_FLAG_DYING/g' > > Cc: James Bottomley > Cc: Mike Christie > Cc: Jens Axboe > Cc: Tejun Heo > Cc: Chanho Min > Signed-off-by: Bart Van Assche Acked-by: Tejun Heo Thanks. -- tejun