From: Gary Guo <gary@garyguo.net>
To: Alice Ryhl <aliceryhl@google.com>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Carlos Llamas" <cmllamas@google.com>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Boqun Feng" <boqun@kernel.org>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <lossin@kernel.org>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Trevor Gross" <tmgross@umich.edu>,
"Danilo Krummrich" <dakr@kernel.org>,
rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] rust: task: implement == operator for Task
Date: Thu, 19 Feb 2026 14:28:26 +0000 [thread overview]
Message-ID: <7b287fa96f6fde752067d44da2f1d99a@garyguo.net> (raw)
In-Reply-To: <20260219-close-fd-check-current-v1-2-fcab8d8469f5@google.com>
On 2026-02-19 13:52, Alice Ryhl wrote:
> It's useful to compare if two tasks are the same task or not. Rust
> Binder wants this to check if a certain task is equal to the group
> leader of current.
>
> Signed-off-by: Alice Ryhl <aliceryhl@google.com>
> ---
> rust/kernel/task.rs | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/rust/kernel/task.rs b/rust/kernel/task.rs
> index
> cc907fb531bceea6e8dc1175d9350bd24780a3d5..8834bf25cce5e7b7f48cd649c977eb92fbfb61e9
> 100644
> --- a/rust/kernel/task.rs
> +++ b/rust/kernel/task.rs
> @@ -362,6 +362,14 @@ unsafe fn dec_ref(obj: ptr::NonNull<Self>) {
> }
> }
>
> +impl PartialEq for Task {
Missing `#[inline]`. With this fixed:
Reviewed-by: Gary Guo <gary@garyguo.net>
> + fn eq(&self, other: &Self) -> bool {
> + ptr::eq(self.as_ptr(), other.as_ptr())
> + }
> +}
> +
> +impl Eq for Task {}
> +
> impl Kuid {
> /// Get the current euid.
> #[inline]
next prev parent reply other threads:[~2026-02-19 14:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-19 13:52 [PATCH 0/3] rust_binder: check current before closing fds Alice Ryhl
2026-02-19 13:52 ` [PATCH 1/3] rust: sync: implement == operator for ARef Alice Ryhl
2026-02-19 14:27 ` Gary Guo
2026-02-19 14:34 ` Alice Ryhl
2026-02-19 13:52 ` [PATCH 2/3] rust: task: implement == operator for Task Alice Ryhl
2026-02-19 14:28 ` Gary Guo [this message]
2026-02-19 13:52 ` [PATCH 3/3] rust_binder: check current before closing fds 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=7b287fa96f6fde752067d44da2f1d99a@garyguo.net \
--to=gary@garyguo.net \
--cc=a.hindborg@kernel.org \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=cmllamas@google.com \
--cc=dakr@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
/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