aboutsummaryrefslogtreecommitdiff
path: root/rust/kernel/init/__internal.rs
diff options
context:
space:
mode:
authorAlice Ryhl <[email protected]>2023-06-14 11:53:28 +0000
committerMiguel Ojeda <[email protected]>2023-08-10 01:18:34 +0200
commit35cad617df2eeef8440a38e82bb2d81ae32ca50d (patch)
treec242223c7b6afcd9846da86b59d6eeccfefbcda7 /rust/kernel/init/__internal.rs
parent0bb1c9282e2cb38d199347d1d96b77f208b64810 (diff)
rust: make `UnsafeCell` the outer type in `Opaque`
When combining `UnsafeCell` with `MaybeUninit`, it is idiomatic to use `UnsafeCell` as the outer type. Intuitively, this is because a `MaybeUninit<T>` might not contain a `T`, but we always want the effect of the `UnsafeCell`, even if the inner value is uninitialized. Now, strictly speaking, this doesn't really make a difference. The compiler will always apply the `UnsafeCell` effect even if the inner value is uninitialized. But I think we should follow the convention here. Signed-off-by: Alice Ryhl <[email protected]> Reviewed-by: Benno Lossin <[email protected]> Reviewed-by: Gary Guo <[email protected]> Reviewed-by: Martin Rodriguez Reboredo <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'rust/kernel/init/__internal.rs')
0 files changed, 0 insertions, 0 deletions