public inbox for linuxppc-dev@ozlabs.org 
 help / color / mirror / Atom feed
From: "Russell King (Oracle)" <linux@armlinux•org.uk>
To: Miguel Ojeda <ojeda@kernel•org>
Cc: Sven Van Asbroeck <thesven73@gmail•com>,
	Catalin Marinas <catalin.marinas@arm•com>,
	Dave Hansen <dave.hansen@linux•intel.com>,
	Miguel Cano <macanroj@gmail•com>,
	Paul Mackerras <paulus@samba•org>, Gary Guo <gary@garyguo•net>,
	Douglas Su <d0u9.su@outlook•com>, Borislav Petkov <bp@alien8•de>,
	linux-riscv@lists•infradead.org, Will Deacon <will@kernel•org>,
	Thomas Gleixner <tglx@linutronix•de>,
	"H. Peter Anvin" <hpa@zytor•com>,
	Masahiro Yamada <masahiroy@kernel•org>,
	x86@kernel•org, Ingo Molnar <mingo@redhat•com>,
	Wedson Almeida Filho <wedsonaf@google•com>,
	Alex Gaynor <alex.gaynor@gmail•com>,
	Antonio Terceiro <antonio.terceiro@linaro•org>,
	Adam Bratschi-Kaye <ark.email@gmail•com>,
	Albert Ou <aou@eecs•berkeley.edu>,
	rust-for-linux@vger•kernel.org, linux-kbuild@vger•kernel.org,
	Boqun Feng <boqun.feng@gmail•com>,
	linuxppc-dev@lists•ozlabs.org, Daniel Xu <dxu@dxuuu•xyz>,
	Paul Walmsley <paul.walmsley@sifive•com>,
	Dariusz Sosnowski <dsosnowski@dsosnowski•pl>,
	linux-arm-kernel@lists•infradead.org,
	Michal Marek <michal.lkml@markovi•net>,
	Greg Kroah-Hartman <gregkh@linuxfoundation•org>,
	Nick Desaulniers <ndesaulniers@google•com>,
	linux-kernel@vger•kernel.org,
	Boris-Chengbiao Zhou <bobo1239@web•de>,
	Palmer Dabbelt <palmer@dabbelt•com>, Finn Behrens <me@kloenk•de>,
	Linus Torvalds <torvalds@linux-foundation•org>
Subject: Re: [PATCH v4 16/20] Kbuild: add Rust support
Date: Sat, 12 Feb 2022 14:16:50 +0000	[thread overview]
Message-ID: <YgfBUhYdLXA46kOX@shell.armlinux.org.uk> (raw)
In-Reply-To: <20220212130410.6901-17-ojeda@kernel.org>

On Sat, Feb 12, 2022 at 02:03:42PM +0100, Miguel Ojeda wrote:
> +config RUST
> +	bool "Rust support"
> +	depends on RUST_IS_AVAILABLE
> +	depends on ARM64 || CPU_32v6 || CPU_32v6K || (PPC64 && CPU_LITTLE_ENDIAN) || X86_64 || RISCV

Please don't use CPU_32v6* here.

It probably makes more sense to add a symbol "HAVE_RUST" and have the
appropriate architecture Kconfig files select HAVE_RUST.

Does Rust support Thumb on ARMv6 and ARMv7 architectures?

> +	depends on !MODVERSIONS
> +	depends on !GCC_PLUGIN_RANDSTRUCT
> +	select CONSTRUCTORS
> +	default n

Please remove every utterance of "default n" from your patch; n is the
default default which default defaults to, so you don't need to specify
default n to make the option default to n. It will default to n purely
because n is the default when no default is specified.

> +	help
> +	  Enables Rust support in the kernel.
> +
> +	  This allows other Rust-related options, like drivers written in Rust,
> +	  to be selected.

As Rust doesn't support all the architectures that the kernel supports,
Rust must not be used for core infrastructure.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

  reply	other threads:[~2022-02-12 14:30 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-12 13:03 [PATCH v4 00/20] Rust support Miguel Ojeda
2022-02-12 13:03 ` [PATCH v4 16/20] Kbuild: add " Miguel Ojeda
2022-02-12 14:16   ` Russell King (Oracle) [this message]
2022-02-12 15:47     ` Miguel Ojeda
2022-02-12 16:18       ` Russell King (Oracle)
2022-02-12 18:32         ` Miguel Ojeda
2022-02-12 18:27   ` John Paul Adrian Glaubitz
2022-02-12 18:57     ` Miguel Ojeda

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YgfBUhYdLXA46kOX@shell.armlinux.org.uk \
    --to=linux@armlinux$(echo .)org.uk \
    --cc=alex.gaynor@gmail$(echo .)com \
    --cc=antonio.terceiro@linaro$(echo .)org \
    --cc=aou@eecs$(echo .)berkeley.edu \
    --cc=ark.email@gmail$(echo .)com \
    --cc=bobo1239@web$(echo .)de \
    --cc=boqun.feng@gmail$(echo .)com \
    --cc=bp@alien8$(echo .)de \
    --cc=catalin.marinas@arm$(echo .)com \
    --cc=d0u9.su@outlook$(echo .)com \
    --cc=dave.hansen@linux$(echo .)intel.com \
    --cc=dsosnowski@dsosnowski$(echo .)pl \
    --cc=dxu@dxuuu$(echo .)xyz \
    --cc=gary@garyguo$(echo .)net \
    --cc=gregkh@linuxfoundation$(echo .)org \
    --cc=hpa@zytor$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-kbuild@vger$(echo .)kernel.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-riscv@lists$(echo .)infradead.org \
    --cc=linuxppc-dev@lists$(echo .)ozlabs.org \
    --cc=macanroj@gmail$(echo .)com \
    --cc=masahiroy@kernel$(echo .)org \
    --cc=me@kloenk$(echo .)de \
    --cc=michal.lkml@markovi$(echo .)net \
    --cc=mingo@redhat$(echo .)com \
    --cc=ndesaulniers@google$(echo .)com \
    --cc=ojeda@kernel$(echo .)org \
    --cc=palmer@dabbelt$(echo .)com \
    --cc=paul.walmsley@sifive$(echo .)com \
    --cc=paulus@samba$(echo .)org \
    --cc=rust-for-linux@vger$(echo .)kernel.org \
    --cc=tglx@linutronix$(echo .)de \
    --cc=thesven73@gmail$(echo .)com \
    --cc=torvalds@linux-foundation$(echo .)org \
    --cc=wedsonaf@google$(echo .)com \
    --cc=will@kernel$(echo .)org \
    --cc=x86@kernel$(echo .)org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox