mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-11 18:04:25 +00:00
add struct sched_object, and use it as input param instead of vcpu for below functions: - add_to_cpu_runqueue renamed from add_vcpu_to_runqueue - remove_from_cpu_runqueue renamed from remove_vcpu_from_runqueue - get_next_sched_obj added to get next sched object Tracked-On: #1842 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com> Acked-by: Eddie Dong <edide.dong@intel.com>
46 lines
802 B
C
46 lines
802 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef HV_ARCH_H
|
|
#define HV_ARCH_H
|
|
|
|
#include <cpu.h>
|
|
#include <gdt.h>
|
|
#include <idt.h>
|
|
#include <apicreg.h>
|
|
#include <lapic.h>
|
|
#include <msr.h>
|
|
#include <io.h>
|
|
#include <ioreq.h>
|
|
#include <vmtrr.h>
|
|
#include <timer.h>
|
|
#include <vlapic.h>
|
|
#include <schedule.h>
|
|
#include <vcpu.h>
|
|
#include <trusty.h>
|
|
#include <guest_pm.h>
|
|
#include <host_pm.h>
|
|
#include <vpic.h>
|
|
#include <vuart.h>
|
|
#include <vioapic.h>
|
|
#include <vm.h>
|
|
#include <cpuid.h>
|
|
#include <vcpuid.h>
|
|
#include <page.h>
|
|
#include <mmu.h>
|
|
#include <pgtable.h>
|
|
#include <irq.h>
|
|
#include <vmx.h>
|
|
#include <vmcs.h>
|
|
#include <assign.h>
|
|
#include <vtd.h>
|
|
|
|
#include <guest.h>
|
|
#include <vmexit.h>
|
|
#include <cpufeatures.h>
|
|
|
|
#endif /* HV_ARCH_H */
|