From: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
To: Alice Ryhl <aliceryhl@google.com>
Cc: "Miguel Ojeda" <ojeda@kernel.org>,
"Matthew Wilcox" <willy@infradead.org>,
"Al Viro" <viro@zeniv.linux.org.uk>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Kees Cook" <keescook@chromium.org>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Wedson Almeida Filho" <wedsonaf@gmail.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <benno.lossin@proton.me>,
"Andreas Hindborg" <a.hindborg@samsung.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Arve Hjønnevåg" <arve@android.com>,
"Todd Kjos" <tkjos@android.com>,
"Martijn Coenen" <maco@android.com>,
"Joel Fernandes" <joel@joelfernandes.org>,
"Carlos Llamas" <cmllamas@google.com>,
"Suren Baghdasaryan" <surenb@google.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Trevor Gross" <tmgross@umich.edu>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
rust-for-linux@vger.kernel.org,
"Christian Brauner" <brauner@kernel.org>
Subject: Re: [PATCH v7 0/4] Memory management patches needed by Rust Binder
Date: Tue, 9 Jul 2024 10:02:32 +0200 [thread overview]
Message-ID: <CANiq72ka=tMDHq3S2N0dkzj0DBje+kdz0nFtaQZ9RHC0rbii0g@mail.gmail.com> (raw)
In-Reply-To: <20240528-alice-mm-v7-0-78222c31b8f4@google.com>
On Tue, May 28, 2024 at 4:58 PM Alice Ryhl <aliceryhl@google.com> wrote:
>
> This patchset contains some abstractions needed by the Rust
> implementation of the Binder driver for passing data between userspace,
> kernelspace, and directly into other processes.
>
> These abstractions do not exactly match what was included in the Rust
> Binder RFC - I have made various improvements and simplifications since
> then. Nonetheless, please see the Rust Binder RFC [1] to get an
> understanding for how this will be used:
>
> Users of "rust: add userspace pointers"
> and "rust: add typed accessors for userspace pointers":
> rust_binder: add binderfs support to Rust binder
> rust_binder: add threading support
> rust_binder: add nodes and context managers
> rust_binder: add oneway transactions
> rust_binder: add death notifications
> rust_binder: send nodes in transactions
> rust_binder: add BINDER_TYPE_PTR support
> rust_binder: add BINDER_TYPE_FDA support
> rust_binder: add process freezing
>
> Users of "rust: add abstraction for `struct page`":
> rust_binder: add oneway transactions
> rust_binder: add vma shrinker
>
> Links: https://lore.kernel.org/rust-for-linux/20231101-rust-binder-v1-0-08ba9197f637@google.com/ [1]
> Signed-off-by: Alice Ryhl <aliceryhl@google.com>
Applied to `rust-next` -- thanks everyone!
[ Wrapped docs to 100 and added a few intra-doc links. - Miguel ]
[ Fixed typos and added a few intra-doc links. - Miguel ]
Cheers,
Miguel
next prev parent reply other threads:[~2024-07-09 8:02 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-28 14:58 Alice Ryhl
2024-05-28 14:58 ` [PATCH v7 1/4] rust: uaccess: add userspace pointers Alice Ryhl
2024-05-28 14:58 ` [PATCH v7 2/4] uaccess: always export _copy_[from|to]_user with CONFIG_RUST Alice Ryhl
2024-06-11 21:44 ` Andrew Morton
2024-09-22 7:08 ` Sasha Levin
2024-09-22 7:52 ` Arnd Bergmann
2024-09-22 13:16 ` Sasha Levin
2024-05-28 14:58 ` [PATCH v7 3/4] rust: uaccess: add typed accessors for userspace pointers Alice Ryhl
2024-05-28 14:58 ` [PATCH v7 4/4] rust: add abstraction for `struct page` Alice Ryhl
2024-06-10 20:46 ` Abdiel Janulgue
2024-06-11 8:51 ` Alice Ryhl
2024-07-09 8:02 ` Miguel Ojeda [this message]
2024-07-09 9:46 ` [PATCH v7 0/4] Memory management patches needed by Rust Binder Alice Ryhl
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='CANiq72ka=tMDHq3S2N0dkzj0DBje+kdz0nFtaQZ9RHC0rbii0g@mail.gmail.com' \
--to=miguel.ojeda.sandonis@gmail.com \
--cc=a.hindborg@samsung.com \
--cc=akpm@linux-foundation.org \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=arnd@arndb.de \
--cc=arve@android.com \
--cc=benno.lossin@proton.me \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=brauner@kernel.org \
--cc=cmllamas@google.com \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=joel@joelfernandes.org \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=maco@android.com \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=surenb@google.com \
--cc=tkjos@android.com \
--cc=tmgross@umich.edu \
--cc=viro@zeniv.linux.org.uk \
--cc=wedsonaf@gmail.com \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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