From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755825Ab1BCOs0 (ORCPT ); Thu, 3 Feb 2011 09:48:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:9848 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755282Ab1BCOsY (ORCPT ); Thu, 3 Feb 2011 09:48:24 -0500 Date: Thu, 3 Feb 2011 09:48:00 -0500 From: Mike Snitzer To: Tejun Heo Cc: Jens Axboe , tytso@mit.edu, djwong@us.ibm.com, shli@kernel.org, neilb@suse.de, adilger.kernel@dilger.ca, jack@suse.cz, linux-kernel@vger.kernel.org, kmannth@us.ibm.com, cmm@us.ibm.com, linux-ext4@vger.kernel.org, rwheeler@redhat.com, hch@lst.de, josef@redhat.com, jmoyer@redhat.com, vgoyal@redhat.com Subject: [PATCH v4 1/2] block: skip elevator data initialization for flush requests Message-ID: <20110203144800.GA21160@redhat.com> References: <20110201185225.GT14211@htj.dyndns.org> <1296600373-6906-1-git-send-email-snitzer@redhat.com> <20110202225549.GA28109@redhat.com> <20110203092823.GB2570@htj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110203092823.GB2570@htj.dyndns.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Set REQ_SORTED, in the @rw_flags passed to the request allocator, for all requests that may be put on IO scheduler. REQ_SORTED is not set for flush requests because they are never put on the IO scheduler. Skip elevator data initialization during request allocation if REQ_SORTED is not set in @rw_flags passed to get_request(). Signed-off-by: Mike Snitzer Acked-by: Vivek Goyal --- block/blk-core.c | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) v4: fixed bug where REQ_SORTED wasn't cleared on entry to get_request - and Jens, yes I agree this is still a hack Index: linux-2.6/block/blk-core.c =================================================================== --- linux-2.6.orig/block/blk-core.c +++ linux-2.6/block/blk-core.c @@ -754,6 +754,9 @@ static void freed_request(struct request /* * Get a free request, queue_lock must be held. + * @rw_flags: may be overloaded to convey additional request features; + * any overloaded feature flags must be cleared immediately. + * * Returns NULL on failure, with queue_lock held. * Returns !NULL on success, with queue_lock *not held*. */ @@ -764,7 +767,11 @@ static struct request *get_request(struc struct request_list *rl = &q->rq; struct io_context *ioc = NULL; const bool is_sync = rw_is_sync(rw_flags) != 0; - int may_queue, priv; + const bool init_elv_data = !!(rw_flags & REQ_SORTED); + int may_queue, priv = 0; + + if (init_elv_data) + rw_flags &= ~REQ_SORTED; may_queue = elv_may_queue(q, rw_flags); if (may_queue == ELV_MQUEUE_NO) @@ -808,9 +815,14 @@ static struct request *get_request(struc rl->count[is_sync]++; rl->starved[is_sync] = 0; - priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags); - if (priv) - rl->elvpriv++; + /* + * Only initialize elevator data if IO scheduler may be used. + */ + if (init_elv_data) { + priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags); + if (priv) + rl->elvpriv++; + } if (blk_queue_io_stat(q)) rw_flags |= REQ_IO_STAT; @@ -1197,6 +1209,7 @@ static int __make_request(struct request const unsigned short prio = bio_prio(bio); const bool sync = !!(bio->bi_rw & REQ_SYNC); const bool unplug = !!(bio->bi_rw & REQ_UNPLUG); + const bool flush = !!(bio->bi_rw & (REQ_FLUSH | REQ_FUA)); const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK; int where = ELEVATOR_INSERT_SORT; int rw_flags; @@ -1210,7 +1223,7 @@ static int __make_request(struct request spin_lock_irq(q->queue_lock); - if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) { + if (flush) { where = ELEVATOR_INSERT_FLUSH; goto get_rq; } @@ -1293,6 +1306,16 @@ get_rq: rw_flags |= REQ_SYNC; /* + * Set REQ_SORTED for all requests that may be put on IO scheduler. + * The request allocator's IO scheduler initialization will be skipped + * if REQ_SORTED is not set -- elv_set_request() is avoided so that + * that the allocated request's elevator_private pointers are not + * initialized and that space can be used by flush request data. + */ + if (!flush) + rw_flags |= REQ_SORTED; + + /* * Grab a free request. This is might sleep but can not fail. * Returns with the queue unlocked. */