From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932993AbXBLF2D (ORCPT ); Mon, 12 Feb 2007 00:28:03 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932994AbXBLF2D (ORCPT ); Mon, 12 Feb 2007 00:28:03 -0500 Received: from ozlabs.org ([203.10.76.45]:53156 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932993AbXBLF2B (ORCPT ); Mon, 12 Feb 2007 00:28:01 -0500 Subject: Re: [PATCH 7/8] lguest: trivial guest block driver From: Rusty Russell To: Jens Axboe Cc: Andrew Morton , lkml - Kernel Mailing List , virtualization In-Reply-To: <20070212044339.GJ3685@kernel.dk> References: <1171251578.10409.17.camel@localhost.localdomain> <1171251698.10409.20.camel@localhost.localdomain> <1171251770.10409.23.camel@localhost.localdomain> <1171251894.10409.26.camel@localhost.localdomain> <1171251965.10409.28.camel@localhost.localdomain> <1171252113.10409.30.camel@localhost.localdomain> <1171252219.10409.33.camel@localhost.localdomain> <1171252321.10409.36.camel@localhost.localdomain> <1171252405.10409.39.camel@localhost.localdomain> <1171252474.10409.42.camel@localhost.localdomain> <20070212044339.GJ3685@kernel.dk> Content-Type: text/plain Date: Mon, 12 Feb 2007 16:27:14 +1100 Message-Id: <1171258034.10409.54.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.8.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2007-02-12 at 05:43 +0100, Jens Axboe wrote: > On Mon, Feb 12 2007, Rusty Russell wrote: > > + end_request(bd->req, bd->lb_page->result == 1); > > You are using the old-style end request handling. So while I generally > discourage use of end_request(), you seem to have a bigger problem here: > > + rq_for_each_bio(bio, req) { > > + struct bio_vec *bvec; > > + bio_for_each_segment(bvec, bio, idx) { > > + BUG_ON(i == LGUEST_MAX_DMA_SECTIONS); > > + BUG_ON(!bvec->bv_len); > > + dma->addr[i] = page_to_phys(bvec->bv_page) > > + + bvec->bv_offset; > > + dma->len[i] = bvec->bv_len; > > + len += bvec->bv_len; > > + i++; > > + } > > + } > > + if (i < LGUEST_MAX_DMA_SECTIONS) > > + dma->len[i] = 0; > > + return len; > > +} > > Here you map the entire request (lets call that segment A..Z), but > end_request() only completes the first chunk of the request. So > elv_next_request() will retrieve the same request again, and you'll then > map B..Z and repeat that transfer. So unless I'm missing some other part > here (just read it over quickly), you are re-doing large parts of a > merged request several times. > > So: don't use end_request(). Add some driver helper that does: > > static void lgb_end_request(struct blockdev *bd) > { > int uptodate = bd->lb_page->result == 1; > struct request *rq = bd->req; > > end_that_request_first(rq, uptodate, req->hard_nr_sectors); > add_disk_randomness(rq->rq_disk); > blkdev_dequeue_request(rq); > end_that_request_last(rq, uptodate); > } > > We could probably even make that a block layer helper, I'm sure others > could be cleaned up with that as well. You want to use that helper in > do_lgb_request() as well. I'm confused. That code looks like end_request: void end_request(struct request *req, int uptodate) { if (!end_that_request_first(req, uptodate, req->hard_cur_sectors)) { add_disk_randomness(req->rq_disk); blkdev_dequeue_request(req); end_that_request_last(req, uptodate); } } Rusty.