Commit d4cf5766 authored by Alice Ryhl's avatar Alice Ryhl
Browse files

rust: workqueue: use new sync::aref path for imports



ARef and AlwaysRefCounted are being moved to sync::aref, and the
re-exports under types are planned to be removed. Thus, update imports
to the new path.

Acked-by: default avatarDanilo Krummrich <dakr@kernel.org>
Reviewed-by: default avatarGary Guo <gary@garyguo.net>
Link: https://patch.msgid.link/20260326-drm-rust-next-fix-aref-v1-1-7f6f58d2828a@google.com


Signed-off-by: default avatarAlice Ryhl <aliceryhl@google.com>
parent 206bada3
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -189,10 +189,16 @@
    alloc::{AllocError, Flags},
    container_of,
    prelude::*,
    sync::Arc,
    sync::LockClassKey,
    sync::{
        aref::{
            ARef,
            AlwaysRefCounted, //
        },
        Arc,
        LockClassKey, //
    },
    time::Jiffies,
    types::{ARef, AlwaysRefCounted, Opaque},
    types::Opaque,
};
use core::{marker::PhantomData, ptr::NonNull};