Searched refs:end_pa (Results 1 – 1 of 1) sorted by relevance
72 static void filter_mem_from_service_vm_e820(struct acrn_vm *vm, uint64_t start_pa, uint64_t end_pa) in filter_mem_from_service_vm_e820() argument86 if ((entry->type != E820_TYPE_RAM) || (entry_end <= start_pa) || (entry_start >= end_pa)) { in filter_mem_from_service_vm_e820()91 if ((entry_start < start_pa) && (entry_end <= end_pa)) { in filter_mem_from_service_vm_e820()97 if ((entry_start < start_pa) && (entry_end > end_pa)) { in filter_mem_from_service_vm_e820()99 new_entry.baseaddr = end_pa; in filter_mem_from_service_vm_e820()100 new_entry.length = entry_end - end_pa; in filter_mem_from_service_vm_e820()108 if ((entry_start >= start_pa) && (entry_end <= end_pa)) { in filter_mem_from_service_vm_e820()113 if ((entry_start >= start_pa) && (entry_start < end_pa) && (entry_end > end_pa)) { in filter_mem_from_service_vm_e820()114 entry->baseaddr = end_pa; in filter_mem_from_service_vm_e820()115 entry->length = entry_end - end_pa; in filter_mem_from_service_vm_e820()
Completed in 6 milliseconds