hv: mmu: rename e820 to hv_e820

Now the e820 structure store ACRN HV memory layout, not the physical memory layout.
Rename e820 to hv_hv_e820 to show this explicitly.

Tracked-On: #4007
Signed-off-by: Li Fei1 <fei1.li@intel.com>
This commit is contained in:
Li Fei1
2019-11-06 17:51:30 +08:00
committed by wenlingz
parent 33eea943a1
commit 620a1c5215
4 changed files with 48 additions and 45 deletions

View File

@@ -28,7 +28,7 @@ struct e820_entry {
uint32_t type;
} __packed;
struct e820_mem_params {
struct mem_range {
uint64_t mem_bottom;
uint64_t mem_top;
uint64_t total_mem_size;
@@ -47,6 +47,6 @@ uint32_t get_e820_entries_count(void);
const struct e820_entry *get_e820_entry(void);
/* get the e820 total memory info */
const struct e820_mem_params *get_e820_mem_info(void);
const struct mem_range *get_mem_range_info(void);
#endif