Skip to content

Commit 21b7002

Browse files
committed
[feat] set VM_ASPACE_SIZE to 1 << 48
1 parent 4b0aed1 commit 21b7002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use crate::vcpu::AxArchVCpuImpl;
2121
use crate::{AxVMHal, has_hardware_support};
2222

2323
const VM_ASPACE_BASE: usize = 0x0;
24-
const VM_ASPACE_SIZE: usize = 0x7fff_ffff_f000;
24+
const VM_ASPACE_SIZE: usize = 1 << 48;
2525

2626
/// A vCPU with architecture-independent interface.
2727
#[allow(type_alias_bounds)]

0 commit comments

Comments
 (0)