mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-22 01:16:26 +04:00
Fix #69.
This commit is contained in:
parent
527076757c
commit
b662f9752d
@ -83,7 +83,11 @@ impl From<PhysPageNum> for usize {
|
||||
}
|
||||
impl From<VirtAddr> for usize {
|
||||
fn from(v: VirtAddr) -> Self {
|
||||
v.0
|
||||
if v.0 >= (1 << (VA_WIDTH_SV39 - 1)) {
|
||||
v.0 | (!((1 << VA_WIDTH_SV39) - 1))
|
||||
} else {
|
||||
v.0
|
||||
}
|
||||
}
|
||||
}
|
||||
impl From<VirtPageNum> for usize {
|
||||
|
Loading…
Reference in New Issue
Block a user