mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-21 08:50:27 +00:00
hv: mmu: remove alloc_page() API
No one would call this API for now. So remove it. Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
@@ -134,10 +134,10 @@ struct iommu_domain {
|
||||
};
|
||||
|
||||
struct context_table {
|
||||
struct cpu_page buses[CONFIG_IOMMU_INIT_BUS_LIMIT];
|
||||
struct page buses[CONFIG_IOMMU_INIT_BUS_LIMIT];
|
||||
};
|
||||
|
||||
static struct cpu_page root_tables[CONFIG_MAX_IOMMU_NUM] __aligned(CPU_PAGE_SIZE);
|
||||
static struct page root_tables[CONFIG_MAX_IOMMU_NUM] __aligned(CPU_PAGE_SIZE);
|
||||
static struct context_table ctx_tables[CONFIG_MAX_IOMMU_NUM] __aligned(CPU_PAGE_SIZE);
|
||||
|
||||
static inline uint8_t*
|
||||
|
Reference in New Issue
Block a user