Skip to content

Commit c95bbb5

Browse files
nbdd0121ojeda
authored andcommitted
rust: enable arbitrary_self_types and remove Receiver
The term "receiver" means that a type can be used as the type of `self`, and thus enables method call syntax `foo.bar()` instead of `Foo::bar(foo)`. Stable Rust as of today (1.81) enables a limited selection of types (primitives and types in std, e.g. `Box` and `Arc`) to be used as receivers, while custom types cannot. We want the kernel `Arc` type to have the same functionality as the Rust std `Arc`, so we use the `Receiver` trait (gated behind `receiver_trait` unstable feature) to gain the functionality. The `arbitrary_self_types` RFC [1] (tracking issue [2]) is accepted and it will allow all types that implement a new `Receiver` trait (different from today's unstable trait) to be used as receivers. This trait will be automatically implemented for all `Deref` types, which include our `Arc` type, so we no longer have to opt-in to be used as receiver. To prepare us for the change, remove the `Receiver` implementation and the associated feature. To still allow `Arc` and others to be used as method receivers, turn on `arbitrary_self_types` feature instead. This feature gate is introduced in 1.23.0. It used to enable both `Deref` types and raw pointer types to be used as receivers, but the latter is now split into a different feature gate in Rust 1.83 nightly. We do not need receivers on raw pointers so this change would not affect us and usage of `arbitrary_self_types` feature would work for all Rust versions that we support (>=1.78). Cc: Adrian Taylor <ade@hohum.me.uk> Link: rust-lang/rfcs#3519 [1] Link: rust-lang/rust#44874 [2] Signed-off-by: Gary Guo <gary@garyguo.net> Reviewed-by: Benno Lossin <benno.lossin@proton.me> Reviewed-by: Alice Ryhl <aliceryhl@google.com> Link: https://lore.kernel.org/r/20240915132734.1653004-1-gary@garyguo.net Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 1c71ddb commit c95bbb5

File tree

4 files changed

+2
-11
lines changed

4 files changed

+2
-11
lines changed

rust/kernel/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
//! do so first instead of bypassing this crate.
1313
1414
#![no_std]
15+
#![feature(arbitrary_self_types)]
1516
#![feature(coerce_unsized)]
1617
#![feature(dispatch_from_dyn)]
1718
#![feature(lint_reasons)]
1819
#![feature(new_uninit)]
19-
#![feature(receiver_trait)]
2020
#![feature(unsize)]
2121

2222
// Ensure conditional compilation based on the kernel configuration works;

rust/kernel/list/arc.rs

-3
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,6 @@ where
441441
}
442442
}
443443

444-
// This is to allow [`ListArc`] (and variants) to be used as the type of `self`.
445-
impl<T, const ID: u64> core::ops::Receiver for ListArc<T, ID> where T: ListArcSafe<ID> + ?Sized {}
446-
447444
// This is to allow coercion from `ListArc<T>` to `ListArc<U>` if `T` can be converted to the
448445
// dynamically-sized type (DST) `U`.
449446
impl<T, U, const ID: u64> core::ops::CoerceUnsized<ListArc<U, ID>> for ListArc<T, ID>

rust/kernel/sync/arc.rs

-6
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,6 @@ impl<T: ?Sized> ArcInner<T> {
171171
}
172172
}
173173

174-
// This is to allow [`Arc`] (and variants) to be used as the type of `self`.
175-
impl<T: ?Sized> core::ops::Receiver for Arc<T> {}
176-
177174
// This is to allow coercion from `Arc<T>` to `Arc<U>` if `T` can be converted to the
178175
// dynamically-sized type (DST) `U`.
179176
impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::CoerceUnsized<Arc<U>> for Arc<T> {}
@@ -480,9 +477,6 @@ pub struct ArcBorrow<'a, T: ?Sized + 'a> {
480477
_p: PhantomData<&'a ()>,
481478
}
482479

483-
// This is to allow [`ArcBorrow`] (and variants) to be used as the type of `self`.
484-
impl<T: ?Sized> core::ops::Receiver for ArcBorrow<'_, T> {}
485-
486480
// This is to allow `ArcBorrow<U>` to be dispatched on when `ArcBorrow<T>` can be coerced into
487481
// `ArcBorrow<U>`.
488482
impl<T: ?Sized + Unsize<U>, U: ?Sized> core::ops::DispatchFromDyn<ArcBorrow<'_, U>>

scripts/Makefile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ $(obj)/%.lst: $(obj)/%.c FORCE
248248
# Compile Rust sources (.rs)
249249
# ---------------------------------------------------------------------------
250250

251-
rust_allowed_features := lint_reasons,new_uninit
251+
rust_allowed_features := arbitrary_self_types,lint_reasons,new_uninit
252252

253253
# `--out-dir` is required to avoid temporaries being created by `rustc` in the
254254
# current working directory, which may be not accessible in the out-of-tree

0 commit comments

Comments
 (0)