From patchwork Tue May 9 11:52:03 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Filipe Manana X-Patchwork-Id: 13235659 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 2EFA6C7EE22 for ; Tue, 9 May 2023 11:52:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235565AbjEILwU (ORCPT ); Tue, 9 May 2023 07:52:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235164AbjEILwT (ORCPT ); Tue, 9 May 2023 07:52:19 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 61266198E; Tue, 9 May 2023 04:52:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E5E9E60C61; Tue, 9 May 2023 11:52:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5FAF2C433EF; Tue, 9 May 2023 11:52:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1683633137; bh=zeBMUttKuTVFhakseT/Pmy+1VxrbZaip+28YxAcj540=; h=From:To:Cc:Subject:Date:From; b=CLu9S08zYKkJs8lU7UXH1LDszBwwLFNvSK0Bh/JFw0c4g8WW1HFZvusEb0rSgEVUe kcAbe5BjZcG63M5CVGqnyIwjF0Dz4WgZF/daAwpIbenZUWBvrWHV6tELHtHBidJily IrGwUSf/jjvMKJ8fVd8dO6jG8p5d2EultO+VjLfQZO/yfLqgVDw95jmRW7Vvo40lOB cCzOyDGy6Xx79ambsg0174S5DID3p41/M8c57a30ycxMGHRaIw66yioi93ZRfF+pCu AYKf+sFZBy2a3DnkewdEHruzh2G4vEGVslllWOG/9EVM7X1eLXAmU4DzOmpiVRlvvt IntwesX9uwDzA== From: fdmanana@kernel.org To: fstests@vger.kernel.org Cc: linux-btrfs@vger.kernel.org, Filipe Manana Subject: [PATCH 0/3] btrfs: add test case for logical-resolve Date: Tue, 9 May 2023 12:52:03 +0100 Message-Id: X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org From: Filipe Manana Add a test case for btrfs' logical to ino ioctls (v1 and v2). More details on the changelogs. Filipe Manana (3): common/btrfs: add helper to get the bytenr for a file extent item btrfs: add a test case for the logical to ino ioctl groups: add logical_resolve group for btrfs common/btrfs | 52 +++++++++++++++ doc/group-names.txt | 1 + tests/btrfs/004 | 2 +- tests/btrfs/287 | 154 ++++++++++++++++++++++++++++++++++++++++++++ tests/btrfs/287.out | 95 +++++++++++++++++++++++++++ tests/btrfs/299 | 20 +----- 6 files changed, 305 insertions(+), 19 deletions(-) create mode 100755 tests/btrfs/287 create mode 100644 tests/btrfs/287.out