Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

rust: types: improve `ForeignOwnable` documentation

There are no guarantees for the pointer returned by `into_foreign`.
This is simply because there is no safety documentation stating any
guarantees. Therefore dereferencing and all other operations for that
pointer are not allowed in a general context (i.e. when the concrete
type implementing the trait is not known).
This might be confusing, therefore add normal documentation to state
that there are no guarantees given for the pointer.

Signed-off-by: Benno Lossin <benno.lossin@proton.me>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Link: https://lore.kernel.org/r/20240730182251.1466684-1-benno.lossin@proton.me
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

authored by

Benno Lossin and committed by
Miguel Ojeda
7adcdd57 6c2d0ad5

+4 -1
+4 -1
rust/kernel/types.rs
··· 27 27 28 28 /// Converts a Rust-owned object to a foreign-owned one. 29 29 /// 30 - /// The foreign representation is a pointer to void. 30 + /// The foreign representation is a pointer to void. There are no guarantees for this pointer. 31 + /// For example, it might be invalid, dangling or pointing to uninitialized memory. Using it in 32 + /// any way except for [`ForeignOwnable::from_foreign`], [`ForeignOwnable::borrow`], 33 + /// [`ForeignOwnable::try_from_foreign`] can result in undefined behavior. 31 34 fn into_foreign(self) -> *const core::ffi::c_void; 32 35 33 36 /// Borrows a foreign-owned object.