File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/structures/paging/mapper Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ mod offset_page_table;
2+
3+ #[ cfg( target_pointer_width = "64" ) ]
4+ pub use self :: offset_page_table:: { OffsetPageTable , PhysOffset } ;
15use crate :: structures:: paging:: {
26 mapper:: * ,
37 page:: AddressNotAligned ,
File renamed without changes.
Original file line number Diff line number Diff line change 22
33pub use self :: mapped_page_table:: { MappedPageTable , PageTableFrameMapping } ;
44#[ cfg( target_pointer_width = "64" ) ]
5- pub use self :: offset_page_table :: { OffsetPageTable , PhysOffset } ;
5+ pub use self :: mapped_page_table :: { OffsetPageTable , PhysOffset } ;
66#[ cfg( all( feature = "instructions" , target_arch = "x86_64" ) ) ]
77pub use self :: recursive_page_table:: { InvalidPageTable , RecursivePageTable } ;
88
@@ -15,7 +15,6 @@ use crate::structures::paging::{
1515use crate :: { PhysAddr , VirtAddr } ;
1616
1717mod mapped_page_table;
18- mod offset_page_table;
1918#[ cfg( all( feature = "instructions" , target_arch = "x86_64" ) ) ]
2019mod recursive_page_table;
2120
You can’t perform that action at this time.
0 commit comments