File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ pub enum MapToError<S: PageSize> {
175
175
/// given page is part of an already mapped huge page.
176
176
ParentEntryHugePage ,
177
177
/// The given page is already mapped to a physical frame.
178
- PageAlreadyMapped ( UnusedPhysFrame < S > ) ,
178
+ PageAlreadyMapped ( PhysFrame < S > ) ,
179
179
}
180
180
181
181
/// An error indicating that an `unmap` call failed.
Original file line number Diff line number Diff line change 3
3
//! Page tables translate virtual memory “pages” to physical memory “frames”.
4
4
5
5
pub use self :: frame:: PhysFrame ;
6
- pub use self :: frame_alloc:: { FrameAllocator , FrameDeallocator , UnusedPhysFrame } ;
6
+ pub use self :: frame_alloc:: { FrameAllocator , FrameDeallocator } ;
7
7
#[ doc( no_inline) ]
8
8
pub use self :: mapper:: MappedPageTable ;
9
9
pub use self :: mapper:: { Mapper , MapperAllSizes } ;
You can’t perform that action at this time.
0 commit comments