mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-21 08:50:27 +00:00
mmu: identify VA and PA in mmu.c
- read/write page table entries should use VA which defined as "void *" - the address data in page table entries should us PA which defined as "uint64_t" Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
@@ -255,7 +255,7 @@ struct map_params {
|
||||
struct entry_params {
|
||||
uint32_t entry_level;
|
||||
uint32_t entry_present;
|
||||
uint64_t entry_base;
|
||||
void *entry_base;
|
||||
uint64_t entry_off;
|
||||
uint64_t entry_val;
|
||||
uint64_t page_size;
|
||||
|
Reference in New Issue
Block a user