From patchwork Thu Nov 23 03:08:38 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Biggers X-Patchwork-Id: 13465715 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 05224612A; Thu, 23 Nov 2023 03:09:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="BF8A4rj3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5EB53C433C8; Thu, 23 Nov 2023 03:09:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700708972; bh=TkK855alf7nqTmEIjo0bAeEYufIA+X8RIV+JdcV2wWQ=; h=From:To:Cc:Subject:Date:From; b=BF8A4rj3Qsb4FbpSmugMfp+9kXTjfmLb0lOJntQXAlGq3qWrHwknQZ42PYohvxKuc aCELQSiiNeN8nYC5KtgQRUJHpeGC22G65K99R19PNOMv9dq2HJi43kxSrEvUR4wI8I ZNOSc9Ovo54/ycdfnQe+N2fhchOjpcoifmxYYY/OQU4J/OmxTVT0Zr2kEdB+bov2+d dfa9/CagVQNucDcziBrYk1MhtJJJXaRQtVdSLw+Rhv53E5wCMYUASplNNK8YNYYlKJ FF+wAlOsSzrdY41LL1iejyq/2v6Nf8K/HJ6+Y1PEt3BQxsFREcEN9qpt4fASh6kdNQ zbOnhddiONmyA== From: Eric Biggers To: ceph-devel@vger.kernel.org Cc: linux-fscrypt@vger.kernel.org, stable@vger.kernel.org Subject: [PATCH] ceph: select FS_ENCRYPTION_ALGS if FS_ENCRYPTION Date: Wed, 22 Nov 2023 19:08:38 -0800 Message-ID: <20231123030838.46158-1-ebiggers@kernel.org> X-Mailer: git-send-email 2.42.1 Precedence: bulk X-Mailing-List: ceph-devel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Eric Biggers The kconfig options for filesystems that support FS_ENCRYPTION are supposed to select FS_ENCRYPTION_ALGS. This is needed to ensure that required crypto algorithms get enabled as loadable modules or builtin as is appropriate for the set of enabled filesystems. Do this for CEPH_FS so that there aren't any missing algorithms if someone happens to have CEPH_FS as their only enabled filesystem that supports encryption. Fixes: f061feda6c54 ("ceph: add fscrypt ioctls and ceph.fscrypt.auth vxattr") Cc: stable@vger.kernel.org Signed-off-by: Eric Biggers Reviewed-by: Xiubo Li --- fs/ceph/Kconfig | 1 + 1 file changed, 1 insertion(+) base-commit: 9b6de136b5f0158c60844f85286a593cb70fb364 diff --git a/fs/ceph/Kconfig b/fs/ceph/Kconfig index 94df854147d35..7249d70e1a43f 100644 --- a/fs/ceph/Kconfig +++ b/fs/ceph/Kconfig @@ -1,19 +1,20 @@ # SPDX-License-Identifier: GPL-2.0-only config CEPH_FS tristate "Ceph distributed file system" depends on INET select CEPH_LIB select LIBCRC32C select CRYPTO_AES select CRYPTO select NETFS_SUPPORT + select FS_ENCRYPTION_ALGS if FS_ENCRYPTION default n help Choose Y or M here to include support for mounting the experimental Ceph distributed file system. Ceph is an extremely scalable file system designed to provide high performance, reliable access to petabytes of storage. More information at https://ceph.io/. If unsure, say N.