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 7B058C433FE for ; Tue, 1 Mar 2022 12:19:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233774AbiCAMUQ (ORCPT ); Tue, 1 Mar 2022 07:20:16 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49794 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234695AbiCAMUM (ORCPT ); Tue, 1 Mar 2022 07:20:12 -0500 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C99E73077; Tue, 1 Mar 2022 04:19:31 -0800 (PST) Received: by verein.lst.de (Postfix, from userid 2407) id CD72668AFE; Tue, 1 Mar 2022 13:19:26 +0100 (CET) Date: Tue, 1 Mar 2022 13:19:26 +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 03/10] zram: use memcpy_to_bvec in zram_bvec_read Message-ID: <20220301121926.GA3405@lst.de> References: <20220222155156.597597-1-hch@lst.de> <20220222155156.597597-4-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 05:10:09PM -0800, Ira Weiny wrote: > On Tue, Feb 22, 2022 at 04:51:49PM +0100, Christoph Hellwig wrote: > > Use the proper helper instead of open coding the copy. > > > > Signed-off-by: Christoph Hellwig > > Looks fine but I don't see a reason to keep the other operation atomic. Could > the src map also use kmap_local_page()? That switch obviously makes sense, but in this series I've focussed on the bio_vec maps so far.