From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 53699C433F5 for ; Tue, 1 Mar 2022 12:20:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234711AbiCAMV1 (ORCPT ); Tue, 1 Mar 2022 07:21:27 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51316 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234710AbiCAMV0 (ORCPT ); Tue, 1 Mar 2022 07:21:26 -0500 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 04EA757170; Tue, 1 Mar 2022 04:20:46 -0800 (PST) Received: by verein.lst.de (Postfix, from userid 2407) id DB11D68BEB; Tue, 1 Mar 2022 13:20:42 +0100 (CET) Date: Tue, 1 Mar 2022 13:20:42 +0100 From: Christoph Hellwig To: Ira Weiny Cc: Christoph Hellwig , Jens Axboe , Chris Zankel , Max Filippov , Justin Sanders , Philipp Reisner , Lars Ellenberg , Denis Efremov , Minchan Kim , Nitin Gupta , Coly Li , Dan Williams , Vishal Verma , linux-xtensa@linux-xtensa.org, linux-block@vger.kernel.org, drbd-dev@lists.linbit.com, linux-bcache@vger.kernel.org, nvdimm@lists.linux.dev Subject: Re: [PATCH 06/10] nvdimm-btt: use bvec_kmap_local in btt_rw_integrity Message-ID: <20220301122042.GB3405@lst.de> References: <20220222155156.597597-1-hch@lst.de> <20220222155156.597597-7-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Mon, Feb 28, 2022 at 07:59:06PM -0800, Ira Weiny wrote: > On Tue, Feb 22, 2022 at 04:51:52PM +0100, Christoph Hellwig wrote: > > Using local kmaps slightly reduces the chances to stray writes, and > > the bvec interface cleans up the code a little bit. > > > > Signed-off-by: Christoph Hellwig > > --- > > drivers/nvdimm/btt.c | 10 ++++------ > > 1 file changed, 4 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c > > index cbd994f7f1fe6..9613e54c7a675 100644 > > --- a/drivers/nvdimm/btt.c > > +++ b/drivers/nvdimm/btt.c > > @@ -1163,17 +1163,15 @@ static int btt_rw_integrity(struct btt *btt, struct bio_integrity_payload *bip, > > */ > > > > cur_len = min(len, bv.bv_len); > > - mem = kmap_atomic(bv.bv_page); > > + mem = bvec_kmap_local(&bv); > > if (rw) > > - ret = arena_write_bytes(arena, meta_nsoff, > > - mem + bv.bv_offset, cur_len, > > + ret = arena_write_bytes(arena, meta_nsoff, mem, cur_len, > > Why drop bv.bv_offset here and below? Because bvec_kmap_local includes bv_offset in the pointer that it returns.