rust: init: implement `Zeroable` for `UnsafeCell<T>` and `Opaque<T>`
authorBenno Lossin <benno.lossin@proton.me>
Mon, 14 Aug 2023 08:47:32 +0000 (08:47 +0000)
committerMiguel Ojeda <ojeda@kernel.org>
Mon, 21 Aug 2023 12:31:49 +0000 (14:31 +0200)
commit2e704f1883f5dd2f1380944c7d969c817fcd189e
treea1fdc5b19b6b24890542983a3033093f8a450a84
parent674b1c7aed6082e1ce329bb3bcb49e7eb9913e79
rust: init: implement `Zeroable` for `UnsafeCell<T>` and `Opaque<T>`

`UnsafeCell<T>` and `T` have the same layout so if `T` is `Zeroable`
then so should `UnsafeCell<T>` be. This allows using the derive macro
for `Zeroable` on types that contain an `UnsafeCell<T>`.
Since `Opaque<T>` contains a `MaybeUninit<T>`, all bytes zero is a valid
bit pattern for that type.

Reviewed-by: Gary Guo <gary@garyguo.net>
Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
Signed-off-by: Benno Lossin <benno.lossin@proton.me>
Link: https://lore.kernel.org/r/20230814084602.25699-11-benno.lossin@proton.me
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
rust/kernel/init.rs