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 62351C41513 for ; Fri, 11 Aug 2023 12:45:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235412AbjHKMpd (ORCPT ); Fri, 11 Aug 2023 08:45:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41748 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229379AbjHKMpc (ORCPT ); Fri, 11 Aug 2023 08:45:32 -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 A810626A0; Fri, 11 Aug 2023 05:45:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 4058A63559; Fri, 11 Aug 2023 12:45:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 08A35C433C7; Fri, 11 Aug 2023 12:45:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691757931; bh=SNMTd8zsoEe4ub1GHKwGcoTF0QFTulmWk4kNjO9LX6A=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AeGGaU09IpDwGYxjiqKPGqhRQaMOvOL/7eWHlx87J+fo/n1d/4LmFc5x6NldWgjg+ jnlpujw0Il+eQQPnpJQRtujLYaqwJgespHpBgQRAhQpmHZ/rumqr1PIikkkE1qXAgz nUhUS5+mbQ5U9JW5eR0htjsU4zGy+yRVPiVjI7AEjPFAwxtOp8Jw9rphTXqwqltLiz Kd11cCJkv8BhiB/HwgadRUAQKmSFPSuwYBk8iSkqBDbkYGbr7z3iOOlIee0GHc42n1 Uaix63TD5gXDLCwJH5RPrw0K7SpbbeIHakaITkO9jzEn+TJAinVSn5tdqvghOh1WZV hLchtywH4vGUg== Date: Fri, 11 Aug 2023 14:45:25 +0200 From: Christian Brauner To: Christoph Hellwig Cc: Al Viro , Jens Axboe , Denis Efremov , Josef Bacik , Stefan Haberland , Jan Hoeppner , Heiko Carstens , Vasily Gorbik , Alexander Gordeev , "Darrick J . Wong" , Chris Mason , David Sterba , linux-block@vger.kernel.org, nbd@other.debian.org, linux-s390@vger.kernel.org, linux-btrfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 06/17] btrfs: use the super_block as holder when mounting file systems Message-ID: <20230811-achtzehn-nervt-fbb0de364c25@brauner> References: <20230811100828.1897174-1-hch@lst.de> <20230811100828.1897174-7-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230811100828.1897174-7-hch@lst.de> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, Aug 11, 2023 at 12:08:17PM +0200, Christoph Hellwig wrote: > The file system type is not a very useful holder as it doesn't allow us > to go back to the actual file system instance. Pass the super_block > instead which is useful when passed back to the file system driver. > > This matches what is done for all other block device based file systems. > > Signed-off-by: Christoph Hellwig > --- Looks good to me, Acked-by: Christian Brauner