pub struct DeferredPageTableFrames<A: FrameAllocator> { /* private fields */ }Expand description
Intermediate page-table frames detached by one leaf removal.
The frames remain allocated until the stage-1 owner confirms that every CPU which could walk the old hierarchy has completed a TLB invalidation. Dropping this token without confirmation intentionally leaks the frames; reclaiming them early would turn a recoverable shootdown failure into a use-after-free in a remote hardware page-table walk.
Implementations§
Source§impl<A: FrameAllocator> DeferredPageTableFrames<A>
impl<A: FrameAllocator> DeferredPageTableFrames<A>
Trait Implementations§
Source§impl<A: FrameAllocator> Debug for DeferredPageTableFrames<A>
impl<A: FrameAllocator> Debug for DeferredPageTableFrames<A>
Source§impl<A: FrameAllocator> Drop for DeferredPageTableFrames<A>
impl<A: FrameAllocator> Drop for DeferredPageTableFrames<A>
Auto Trait Implementations§
impl<A> Freeze for DeferredPageTableFrames<A>where
A: Freeze,
impl<A> RefUnwindSafe for DeferredPageTableFrames<A>where
A: RefUnwindSafe,
impl<A> Send for DeferredPageTableFrames<A>
impl<A> Sync for DeferredPageTableFrames<A>
impl<A> Unpin for DeferredPageTableFrames<A>where
A: Unpin,
impl<A> UnsafeUnpin for DeferredPageTableFrames<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for DeferredPageTableFrames<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more