Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752370AbdF0Hf1 (ORCPT ); Tue, 27 Jun 2017 03:35:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53098 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751543AbdF0HfU (ORCPT ); Tue, 27 Jun 2017 03:35:20 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com E0146C056793 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=ming.lei@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com E0146C056793 Date: Tue, 27 Jun 2017 15:34:55 +0800 From: Ming Lei To: Matthew Wilcox Cc: Jens Axboe , Christoph Hellwig , Huang Ying , Andrew Morton , Alexander Viro , linux-kernel@vger.kernel.org, linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH v2 16/51] block: bounce: avoid direct access to bvec table Message-ID: <20170627073454.GA31283@ming.t460p> References: <20170626121034.3051-1-ming.lei@redhat.com> <20170626121034.3051-17-ming.lei@redhat.com> <20170627061211.GA27359@bombadil.infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170627061211.GA27359@bombadil.infradead.org> User-Agent: Mutt/1.8.0 (2017-02-23) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Tue, 27 Jun 2017 07:35:15 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1066 Lines: 35 On Mon, Jun 26, 2017 at 11:12:11PM -0700, Matthew Wilcox wrote: > On Mon, Jun 26, 2017 at 08:09:59PM +0800, Ming Lei wrote: > > bio_for_each_segment_all(bvec, bio, i) { > > - org_vec = bio_orig->bi_io_vec + i + start; > > - > > - if (bvec->bv_page == org_vec->bv_page) > > - continue; > > + orig_vec = bio_iter_iovec(bio_orig, orig_iter); > > + if (bvec->bv_page == orig_vec.bv_page) > > + goto next; > > > > dec_zone_page_state(bvec->bv_page, NR_BOUNCE); > > mempool_free(bvec->bv_page, pool); > > + next: > > + bio_advance_iter(bio_orig, &orig_iter, orig_vec.bv_len); > > } > > > > I think this might be written more clearly as: > > bio_for_each_segment_all(bvec, bio, i) { > orig_vec = bio_iter_iovec(bio_orig, orig_iter); > if (bvec->bv_page != orig_vec.bv_page) { > dec_zone_page_state(bvec->bv_page, NR_BOUNCE); > mempool_free(bvec->bv_page, pool); > } > bio_advance_iter(bio_orig, &orig_iter, orig_vec.bv_len); > } > > What do you think? Yeah, looks the above code is more clean, will do it in V3. thanks, Ming