summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlice Ryhl <aliceryhl@google.com>2024-03-08 09:36:31 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-05-02 16:35:25 +0200
commit7e69585203a35d5b96b56f9fdf7aa47995ee802a (patch)
treeb5a2aebc0720e78c3607d2c9b4514c3aa8dd3f80
parent17b1d4472e0ebc107505e64a2b2ddce8dec8768d (diff)
downloadlinux-stable-7e69585203a35d5b96b56f9fdf7aa47995ee802a.tar.gz
linux-stable-7e69585203a35d5b96b56f9fdf7aa47995ee802a.tar.bz2
linux-stable-7e69585203a35d5b96b56f9fdf7aa47995ee802a.zip
rust: don't select CONSTRUCTORS
commit 7d49f53af4b988b188d3932deac2c9c80fd7d9ce upstream. This was originally part of commit 4b9a68f2e59a0 ("rust: add support for static synchronisation primitives") from the old Rust branch, which used module constructors to initialize globals containing various synchronisation primitives with pin-init. That commit has never been upstreamed, but the `select CONSTRUCTORS` statement ended up being included in the patch that initially added Rust support to the Linux Kernel. We are not using module constructors, so let's remove the select. Signed-off-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Benno Lossin <benno.lossin@proton.me> Cc: stable@vger.kernel.org Fixes: 2f7ab1267dc9 ("Kbuild: add Rust support") Link: https://lore.kernel.org/r/20240308-constructors-v1-1-4c811342391c@google.com Signed-off-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--init/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig
index bee58f7468c3..e111c44ea2d8 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1908,7 +1908,6 @@ config RUST
depends on !GCC_PLUGINS
depends on !RANDSTRUCT
depends on !DEBUG_INFO_BTF || PAHOLE_HAS_LANG_EXCLUDE
- select CONSTRUCTORS
help
Enables Rust support in the kernel.