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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 98661C433EF for ; Tue, 2 Nov 2021 07:17:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 831EF60C41 for ; Tue, 2 Nov 2021 07:17:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231267AbhKBHTl (ORCPT ); Tue, 2 Nov 2021 03:19:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56012 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229770AbhKBHTj (ORCPT ); Tue, 2 Nov 2021 03:19:39 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D8066C061714; Tue, 2 Nov 2021 00:17:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=bL8ZfuWb+zjIDH0O5SdyK9V15OEbRWOKPoBMcbtUXwY=; b=XrMw6wNxvczpRWUv5nckgKT/qY KSMigTHI8VPjzqK14yHrzjP7ott9zMMImgYPVB7ecowlqcbDDgMsty0/3YY17K6L5BLaEzc3Fw/BD 12//cXMbrrZRlBKlfwwLywuTUejy34PpUvYtWIjDsE0tRYgETuIBBdrxZUSocjBNjkNITFjmn+LL3 IlXIRyuYPIlukwGGgsaPWlWc2JH1GsN0fOlTxTgJxAMtPgcmT/Fd8+H1wMmzWjwX1m+At7kbQjvY4 6X2jYNCj93RegPwqMXFegFNlNbY972NXLk8EHRrA2XyPpjEleqqk6db30K6TKtqVkG0eS/9swvfSx luvmxIpQ==; Received: from hch by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1mho2a-000kcQ-Gl; Tue, 02 Nov 2021 07:17:04 +0000 Date: Tue, 2 Nov 2021 00:17:04 -0700 From: Christoph Hellwig To: "Matthew Wilcox (Oracle)" Cc: "Darrick J. Wong" , linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-block@vger.kernel.org, Jens Axboe , Christoph Hellwig Subject: Re: [PATCH 10/21] iomap: Convert bio completions to use folios Message-ID: References: <20211101203929.954622-1-willy@infradead.org> <20211101203929.954622-11-willy@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211101203929.954622-11-willy@infradead.org> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 01, 2021 at 08:39:18PM +0000, Matthew Wilcox (Oracle) wrote: > Use bio_for_each_folio() to iterate over each folio in the bio > instead of iterating over each page. > > Signed-off-by: Matthew Wilcox (Oracle) > Reviewed-by: Darrick J. Wong Looks good, Reviewed-by: Christoph Hellwig