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 X-Spam-Level: X-Spam-Status: No, score=-5.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 54B0EC4BA12 for ; Wed, 26 Feb 2020 13:08:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1E03A24688 for ; Wed, 26 Feb 2020 13:08:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="AIUiGp2x" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726918AbgBZNIX (ORCPT ); Wed, 26 Feb 2020 08:08:23 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:44134 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726592AbgBZNIX (ORCPT ); Wed, 26 Feb 2020 08:08:23 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; 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=2IY2GB7i/mwF4XIOgJDt/lQwAFNzsE0mMABE5WbvmUo=; b=AIUiGp2xB8oDNwPH9CLnnSK+Mt Ij91K8QhHlgdauRQyycZeFF2KqhqoBDiMYqAci0/1uKmmkEqP9K1pFGOX2vEoY08DO5lbyEwl/Kj3 0y8cCYNhIRvy/5RPdZhSlsTL/LfT1/7yNhD9L7idGxioeuC9IRPcBYObfxvO/Ocs8n3YoHeREVBQw vberjXfNkORkCH2EthTZwsMYwXGnt+VfiIfGV/BAy6wTvOVlAmGnlD2Amm9XOMKy62h+5Zh03arhW sMHo/IfgGbstv+JyOcmwYicq2+wQ7gtlymVgVZEmS0WpGxHwuchsm02qtcogs0L440ronFnxDqUR3 N/YN274g==; Received: from willy by bombadil.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1j6wQG-0003fw-W1; Wed, 26 Feb 2020 13:08:20 +0000 Date: Wed, 26 Feb 2020 05:08:20 -0800 From: Matthew Wilcox To: Ritesh Harjani Cc: jack@suse.cz, tytso@mit.edu, linux-ext4@vger.kernel.org, adilger.kernel@dilger.ca, linux-fsdevel@vger.kernel.org, darrick.wong@oracle.com, hch@infradead.org, cmaiolino@redhat.com Subject: Re: [PATCHv3 0/6] ext4: bmap & fiemap conversion to use iomap Message-ID: <20200226130820.GZ24185@bombadil.infradead.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Feb 26, 2020 at 03:27:02PM +0530, Ritesh Harjani wrote: > Background > ========== > These are v3 patches to move ext4 bmap & fiemap calls to use iomap APIs. Are you also planning to switch readpages over in the future? If so, I think you'll want this patch: http://git.infradead.org/users/willy/linux-dax.git/commitdiff/2ef99d3d1dd1941cbf9214f2a49b50f8c9e6f021 I haven't done any performance evaluation here; just reading the code.