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=-10.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 0E01FC636C8 for ; Tue, 20 Jul 2021 17:13:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E772960FED for ; Tue, 20 Jul 2021 17:13:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233694AbhGTQcY (ORCPT ); Tue, 20 Jul 2021 12:32:24 -0400 Received: from smtp02.tmcz.cz ([93.153.104.113]:43816 "EHLO smtp02.tmcz.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235157AbhGTQ2v (ORCPT ); Tue, 20 Jul 2021 12:28:51 -0400 X-Greylist: delayed 429 seconds by postgrey-1.27 at vger.kernel.org; Tue, 20 Jul 2021 12:28:50 EDT Received: from leontynka.twibright.com (109-183-129-149.customers.tmcz.cz [109.183.129.149]) by smtp02.tmcz.cz (Postfix) with ESMTPS id 537D4402AA; Tue, 20 Jul 2021 19:02:11 +0200 (CEST) Received: from mikulas (helo=localhost) by leontynka.twibright.com with local-esmtp (Exim 4.92) (envelope-from ) id 1m5t8E-0007EN-Q6; Tue, 20 Jul 2021 19:02:10 +0200 Date: Tue, 20 Jul 2021 19:02:10 +0200 (CEST) From: Mikulas Patocka X-X-Sender: mikulas@leontynka To: Christoph Hellwig cc: Jan Kara , Mikulas Patocka , linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: remove generic_block_fiemap In-Reply-To: <20210720133341.405438-1-hch@lst.de> Message-ID: References: <20210720133341.405438-1-hch@lst.de> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Tue, 20 Jul 2021, Christoph Hellwig wrote: > Hi all, > > this series removes the get_block-based generic_block_fiemap helper > by switching the last two users to use the iomap version instead. > > The ext2 version has been tested using xfstests, but the hpfs one > is only compile tested due to the lack of easy to run tests. Hi You can download a test HPFS partition here: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/test-hpfs-partition.gz Mikulas > diffstat: > fs/ext2/inode.c | 15 +-- > fs/hpfs/file.c | 51 ++++++++++++ > fs/ioctl.c | 203 ------------------------------------------------- > include/linux/fiemap.h | 4 > 4 files changed, 58 insertions(+), 215 deletions(-) >