Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
31 lines
1.0 KiB
Rust
31 lines
1.0 KiB
Rust
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
//! Rust standard library vendored code.
|
|
//!
|
|
//! The contents of this file come from the Rust standard library, hosted in
|
|
//! the <https://github.com/rust-lang/rust> repository, licensed under
|
|
//! "Apache-2.0 OR MIT" and adapted for kernel use. For copyright details,
|
|
//! see <https://github.com/rust-lang/rust/blob/master/COPYRIGHT>.
|
|
|
|
use crate::sync::{arc::ArcInner, Arc};
|
|
use core::any::Any;
|
|
|
|
impl Arc<dyn Any + Send + Sync> {
|
|
/// Attempt to downcast the `Arc<dyn Any + Send + Sync>` to a concrete type.
|
|
pub fn downcast<T>(self) -> core::result::Result<Arc<T>, Self>
|
|
where
|
|
T: Any + Send + Sync,
|
|
{
|
|
if (*self).is::<T>() {
|
|
// SAFETY: We have just checked that the type is correct, so we can cast the pointer.
|
|
unsafe {
|
|
let ptr = self.ptr.cast::<ArcInner<T>>();
|
|
core::mem::forget(self);
|
|
Ok(Arc::from_inner(ptr))
|
|
}
|
|
} else {
|
|
Err(self)
|
|
}
|
|
}
|
|
}
|