diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2018-12-03 13:52:53 -0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-12-14 12:34:21 +0100 |
commit | 199b118ab3d528371f6e3ac9f6001a0f3fd11d04 (patch) | |
tree | 58694d2ca877caa8e31336e32873a71348a86821 /arch/x86/kvm/vmx.c | |
parent | dfae3c03b89fd5547b1adee857b10dc6f1c66132 (diff) | |
download | blackbird-op-linux-199b118ab3d528371f6e3ac9f6001a0f3fd11d04.tar.gz blackbird-op-linux-199b118ab3d528371f6e3ac9f6001a0f3fd11d04.zip |
KVM: VMX: Alphabetize the includes in vmx.c
...to prepare for the creation of a "vmx" subdirectory that will contain
a variety of headers. Clean things up now to avoid making a bigger mess
in the future.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r-- | arch/x86/kvm/vmx.c | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 49c5b155e07d..589230c923e2 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -16,49 +16,48 @@ * */ -#include "irq.h" -#include "mmu.h" -#include "cpuid.h" -#include "lapic.h" -#include "hyperv.h" - +#include <linux/frame.h> +#include <linux/highmem.h> +#include <linux/hrtimer.h> +#include <linux/kernel.h> #include <linux/kvm_host.h> #include <linux/module.h> -#include <linux/kernel.h> -#include <linux/mm.h> -#include <linux/highmem.h> -#include <linux/sched.h> #include <linux/moduleparam.h> #include <linux/mod_devicetable.h> -#include <linux/trace_events.h> +#include <linux/mm.h> +#include <linux/nospec.h> +#include <linux/sched.h> #include <linux/slab.h> #include <linux/tboot.h> -#include <linux/hrtimer.h> -#include <linux/frame.h> -#include <linux/nospec.h> -#include "kvm_cache_regs.h" -#include "x86.h" +#include <linux/trace_events.h> +#include <asm/apic.h> #include <asm/asm.h> #include <asm/cpu.h> -#include <asm/io.h> +#include <asm/debugreg.h> #include <asm/desc.h> -#include <asm/vmx.h> -#include <asm/virtext.h> -#include <asm/mce.h> #include <asm/fpu/internal.h> -#include <asm/perf_event.h> -#include <asm/debugreg.h> -#include <asm/kexec.h> -#include <asm/apic.h> +#include <asm/io.h> #include <asm/irq_remapping.h> +#include <asm/kexec.h> +#include <asm/perf_event.h> +#include <asm/mce.h> #include <asm/mmu_context.h> -#include <asm/spec-ctrl.h> #include <asm/mshyperv.h> +#include <asm/spec-ctrl.h> +#include <asm/virtext.h> +#include <asm/vmx.h> -#include "trace.h" +#include "cpuid.h" +#include "hyperv.h" +#include "irq.h" +#include "kvm_cache_regs.h" +#include "lapic.h" +#include "mmu.h" #include "pmu.h" +#include "trace.h" #include "vmx_evmcs.h" +#include "x86.h" #define __ex(x) __kvm_handle_fault_on_reboot(x) #define __ex_clear(x, reg) \ |