Fix #69.
This commit is contained in:
parent
40b5370f6b
commit
daf439cff4
1 changed files with 5 additions and 1 deletions
|
@ -87,9 +87,13 @@ impl From<PhysPageNum> for usize {
|
|||
}
|
||||
impl From<VirtAddr> for usize {
|
||||
fn from(v: VirtAddr) -> Self {
|
||||
if v.0 >= (1 << (VA_WIDTH_SV39 - 1)) {
|
||||
v.0 | (!((1 << VA_WIDTH_SV39) - 1))
|
||||
} else {
|
||||
v.0
|
||||
}
|
||||
}
|
||||
}
|
||||
impl From<VirtPageNum> for usize {
|
||||
fn from(v: VirtPageNum) -> Self {
|
||||
v.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue