[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHk-=wj6sDFk8ZXSEKUMj-J9zfrMSSO3jhBEaveVaJSUpr=O=w@mail.gmail.com>
Date: Mon, 19 Sep 2022 17:15:13 -0700
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Alex Gaynor <alex.gaynor@...il.com>
Cc: Wedson Almeida Filho <wedsonaf@...il.com>,
Matthew Wilcox <willy@...radead.org>,
Kees Cook <keescook@...omium.org>,
Miguel Ojeda <miguel.ojeda.sandonis@...il.com>,
Konstantin Shelekhin <k.shelekhin@...ro.com>, ojeda@...nel.org,
ark.email@...il.com, bjorn3_gh@...tonmail.com, bobo1239@....de,
bonifaido@...il.com, boqun.feng@...il.com, davidgow@...gle.com,
dev@...lasmohrin.de, dsosnowski@...snowski.pl, foxhlchen@...il.com,
gary@...yguo.net, geofft@...reload.com, gregkh@...uxfoundation.org,
jarkko@...nel.org, john.m.baublitz@...il.com,
leseulartichaut@...il.com, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org, me@...enk.de, milan@...verde.com,
mjmouse9999@...il.com, patches@...ts.linux.dev,
rust-for-linux@...r.kernel.org, thesven73@...il.com,
viktor@...ar.de, Andreas Hindborg <andreas.hindborg@....com>
Subject: Re: [PATCH v9 12/27] rust: add `kernel` crate
On Mon, Sep 19, 2022 at 4:58 PM Linus Torvalds
<torvalds@...ux-foundation.org> wrote:
>
> This is not some kind of "a few special things".
>
> This is things like absolutely _anything_ that allocates memory, or
> takes a lock, or does a number of other things.
Examples of "number of other things" ends up being things like
"accessing user memory", which depending on what you are doing may be
very common too.
And btw, it's not only about the (multiple kinds of) atomic regions.
We have other context rules in the kernel too, like "does floating
point or vector unit calculations". Which you can actually do, but
only in a kernel_fpu_begin/kernel_fpu_end region.
Now, the floating point thing is rare enough that it's probably fine
to just say "no floating point at all in Rust code". It tends to be
very special code, so you'd write it in C or inline assembly, because
you're doing special things like using the vector unit for crypto
hashes using special CPU instructions.
Linus
Powered by blists - more mailing lists