* [PATCH 1/2] device: rust: improve safety comments
@ 2024-06-19 13:39 Danilo Krummrich
2024-06-19 13:39 ` [PATCH 2/2] MAINTAINERS: add Rust device abstractions to DRIVER CORE Danilo Krummrich
0 siblings, 1 reply; 2+ messages in thread
From: Danilo Krummrich @ 2024-06-19 13:39 UTC (permalink / raw)
To: gregkh, rafael
Cc: linux-kernel, rust-for-linux, Danilo Krummrich, Benno Lossin
Improve the wording of safety comments to be more explicit about what
exactly is guaranteed to be valid.
Suggested-by: Benno Lossin <benno.lossin@proton.me>
Signed-off-by: Danilo Krummrich <dakr@redhat.com>
---
rust/kernel/device.rs | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/rust/kernel/device.rs b/rust/kernel/device.rs
index e445e87fb7d7..851018eef885 100644
--- a/rust/kernel/device.rs
+++ b/rust/kernel/device.rs
@@ -30,8 +30,10 @@
///
/// # Invariants
///
-/// The pointer stored in `Self` is non-null and valid for the lifetime of the `ARef` instance. In
-/// particular, the `ARef` instance owns an increment on the underlying object’s reference count.
+/// A `Device` instance represents a valid `struct device` created by the C portion of the kernel.
+///
+/// Instances of this type are always reference-counted, that is, a call to `get_device` ensures
+/// that the allocation remains valid at least until the matching call to `put_device`.
///
/// `bindings::device::release` is valid to be called from any thread, hence `ARef<Device>` can be
/// dropped from any thread.
@@ -58,7 +60,8 @@ pub unsafe fn from_raw(ptr: *mut bindings::device) -> ARef<Self> {
// CAST: `Self` is a `repr(transparent)` wrapper around `bindings::device`.
let ptr = ptr.cast::<Self>();
- // SAFETY: By the safety requirements, ptr is valid.
+ // SAFETY: `ptr` is valid by the safety requirements of this function. By the above call to
+ // `bindings::get_device` we also own a reference to the underlying `struct device`.
unsafe { ARef::from_raw(ptr::NonNull::new_unchecked(ptr)) }
}
base-commit: de6582833db0e695ba0c548e3cc2ad7dbb6aa260
--
2.45.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH 2/2] MAINTAINERS: add Rust device abstractions to DRIVER CORE
2024-06-19 13:39 [PATCH 1/2] device: rust: improve safety comments Danilo Krummrich
@ 2024-06-19 13:39 ` Danilo Krummrich
0 siblings, 0 replies; 2+ messages in thread
From: Danilo Krummrich @ 2024-06-19 13:39 UTC (permalink / raw)
To: gregkh, rafael; +Cc: linux-kernel, rust-for-linux, Danilo Krummrich
Add missing file path of the Rust abstractions to the maintainers entry,
until we can move it to 'drivers/base/'.
Signed-off-by: Danilo Krummrich <dakr@redhat.com>
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index cf9c9221c388..6dc6f264f800 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6714,6 +6714,7 @@ F: include/linux/fwnode.h
F: include/linux/kobj*
F: include/linux/property.h
F: lib/kobj*
+F: rust/kernel/device.rs
DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
M: Nishanth Menon <nm@ti.com>
--
2.45.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-19 13:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-19 13:39 [PATCH 1/2] device: rust: improve safety comments Danilo Krummrich
2024-06-19 13:39 ` [PATCH 2/2] MAINTAINERS: add Rust device abstractions to DRIVER CORE Danilo Krummrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).