diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-10-03 15:33:29 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-12-22 15:02:05 +0100 |
commit | 69e0a03c3f28f5bd35f54a47cd4996cc14e135ba (patch) | |
tree | 5a2a715a6844f03dc2d34eeff7edb537ad441968 /target | |
parent | 3010460fb99776bdf0a8b170555f2ab076382f9c (diff) |
i386: hvf: move all hvf files in the same directory
Just call it hvf/, no need for the "utils" suffix.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/i386/Makefile.objs | 2 | ||||
-rw-r--r-- | target/i386/hvf/Makefile.objs (renamed from target/i386/hvf-utils/Makefile.objs) | 1 | ||||
-rw-r--r-- | target/i386/hvf/README.md (renamed from target/i386/hvf-utils/README.md) | 0 | ||||
-rw-r--r-- | target/i386/hvf/hvf-i386.h (renamed from target/i386/hvf-i386.h) | 2 | ||||
-rw-r--r-- | target/i386/hvf/hvf.c (renamed from target/i386/hvf-all.c) | 19 | ||||
-rw-r--r-- | target/i386/hvf/vmcs.h (renamed from target/i386/hvf-utils/vmcs.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/vmx.h (renamed from target/i386/hvf-utils/vmx.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86.c (renamed from target/i386/hvf-utils/x86.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86.h (renamed from target/i386/hvf-utils/x86.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_cpuid.c (renamed from target/i386/hvf-utils/x86_cpuid.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_decode.c (renamed from target/i386/hvf-utils/x86_decode.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_decode.h (renamed from target/i386/hvf-utils/x86_decode.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_descr.c (renamed from target/i386/hvf-utils/x86_descr.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_descr.h (renamed from target/i386/hvf-utils/x86_descr.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_emu.c (renamed from target/i386/hvf-utils/x86_emu.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_emu.h (renamed from target/i386/hvf-utils/x86_emu.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_flags.c (renamed from target/i386/hvf-utils/x86_flags.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_flags.h (renamed from target/i386/hvf-utils/x86_flags.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_gen.h (renamed from target/i386/hvf-utils/x86_gen.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_mmu.c (renamed from target/i386/hvf-utils/x86_mmu.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_mmu.h (renamed from target/i386/hvf-utils/x86_mmu.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86_task.c (renamed from target/i386/hvf-utils/x86_task.c) | 18 | ||||
-rw-r--r-- | target/i386/hvf/x86_task.h (renamed from target/i386/hvf-utils/x86_task.h) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86hvf.c (renamed from target/i386/hvf-utils/x86hvf.c) | 0 | ||||
-rw-r--r-- | target/i386/hvf/x86hvf.h (renamed from target/i386/hvf-utils/x86hvf.h) | 0 |
25 files changed, 21 insertions, 21 deletions
diff --git a/target/i386/Makefile.objs b/target/i386/Makefile.objs index 0bef89c099..44103a693b 100644 --- a/target/i386/Makefile.objs +++ b/target/i386/Makefile.objs @@ -12,5 +12,5 @@ obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-windows.o endif ifdef CONFIG_DARWIN obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-darwin.o -obj-$(CONFIG_HVF) += hvf-utils/ hvf-all.o +obj-$(CONFIG_HVF) += hvf/ endif diff --git a/target/i386/hvf-utils/Makefile.objs b/target/i386/hvf/Makefile.objs index 79d8969ca8..927b86bc67 100644 --- a/target/i386/hvf-utils/Makefile.objs +++ b/target/i386/hvf/Makefile.objs @@ -1 +1,2 @@ +obj-y += hvf.o obj-y += x86.o x86_cpuid.o x86_decode.o x86_descr.o x86_emu.o x86_flags.o x86_mmu.o x86hvf.o x86_task.o diff --git a/target/i386/hvf-utils/README.md b/target/i386/hvf/README.md index 0d27a0d52b..0d27a0d52b 100644 --- a/target/i386/hvf-utils/README.md +++ b/target/i386/hvf/README.md diff --git a/target/i386/hvf-i386.h b/target/i386/hvf/hvf-i386.h index 797718ce34..2232501552 100644 --- a/target/i386/hvf-i386.h +++ b/target/i386/hvf/hvf-i386.h @@ -18,7 +18,7 @@ #include "sysemu/hvf.h" #include "cpu.h" -#include "hvf-utils/x86.h" +#include "x86.h" #define HVF_MAX_VCPU 0x10 #define MAX_VM_ID 0x40 diff --git a/target/i386/hvf-all.c b/target/i386/hvf/hvf.c index 126344f5be..445082c2cb 100644 --- a/target/i386/hvf-all.c +++ b/target/i386/hvf/hvf.c @@ -24,15 +24,15 @@ #include "sysemu/hvf.h" #include "hvf-i386.h" -#include "hvf-utils/vmcs.h" -#include "hvf-utils/vmx.h" -#include "hvf-utils/x86.h" -#include "hvf-utils/x86_descr.h" -#include "hvf-utils/x86_mmu.h" -#include "hvf-utils/x86_decode.h" -#include "hvf-utils/x86_emu.h" -#include "hvf-utils/x86_task.h" -#include "hvf-utils/x86hvf.h" +#include "vmcs.h" +#include "vmx.h" +#include "x86.h" +#include "x86_descr.h" +#include "x86_mmu.h" +#include "x86_decode.h" +#include "x86_emu.h" +#include "x86_task.h" +#include "x86hvf.h" #include <Hypervisor/hv.h> #include <Hypervisor/hv_vmx.h> @@ -44,7 +44,6 @@ #include "hw/boards.h" #include "qemu/main-loop.h" #include "strings.h" -#include "trace.h" #include "sysemu/accel.h" #include "sysemu/sysemu.h" #include "target/i386/cpu.h" diff --git a/target/i386/hvf-utils/vmcs.h b/target/i386/hvf/vmcs.h index 2a8c0424a5..2a8c0424a5 100644 --- a/target/i386/hvf-utils/vmcs.h +++ b/target/i386/hvf/vmcs.h diff --git a/target/i386/hvf-utils/vmx.h b/target/i386/hvf/vmx.h index 102075d0d4..102075d0d4 100644 --- a/target/i386/hvf-utils/vmx.h +++ b/target/i386/hvf/vmx.h diff --git a/target/i386/hvf-utils/x86.c b/target/i386/hvf/x86.c index 625ea6cac0..625ea6cac0 100644 --- a/target/i386/hvf-utils/x86.c +++ b/target/i386/hvf/x86.c diff --git a/target/i386/hvf-utils/x86.h b/target/i386/hvf/x86.h index 250364b448..250364b448 100644 --- a/target/i386/hvf-utils/x86.h +++ b/target/i386/hvf/x86.h diff --git a/target/i386/hvf-utils/x86_cpuid.c b/target/i386/hvf/x86_cpuid.c index 103223a85d..103223a85d 100644 --- a/target/i386/hvf-utils/x86_cpuid.c +++ b/target/i386/hvf/x86_cpuid.c diff --git a/target/i386/hvf-utils/x86_decode.c b/target/i386/hvf/x86_decode.c index 623c051339..623c051339 100644 --- a/target/i386/hvf-utils/x86_decode.c +++ b/target/i386/hvf/x86_decode.c diff --git a/target/i386/hvf-utils/x86_decode.h b/target/i386/hvf/x86_decode.h index 329131360f..329131360f 100644 --- a/target/i386/hvf-utils/x86_decode.h +++ b/target/i386/hvf/x86_decode.h diff --git a/target/i386/hvf-utils/x86_descr.c b/target/i386/hvf/x86_descr.c index 0b9562818f..0b9562818f 100644 --- a/target/i386/hvf-utils/x86_descr.c +++ b/target/i386/hvf/x86_descr.c diff --git a/target/i386/hvf-utils/x86_descr.h b/target/i386/hvf/x86_descr.h index 1285dd3897..1285dd3897 100644 --- a/target/i386/hvf-utils/x86_descr.h +++ b/target/i386/hvf/x86_descr.h diff --git a/target/i386/hvf-utils/x86_emu.c b/target/i386/hvf/x86_emu.c index f0f68f1c30..f0f68f1c30 100644 --- a/target/i386/hvf-utils/x86_emu.c +++ b/target/i386/hvf/x86_emu.c diff --git a/target/i386/hvf-utils/x86_emu.h b/target/i386/hvf/x86_emu.h index cd4acb0030..cd4acb0030 100644 --- a/target/i386/hvf-utils/x86_emu.h +++ b/target/i386/hvf/x86_emu.h diff --git a/target/i386/hvf-utils/x86_flags.c b/target/i386/hvf/x86_flags.c index c833774485..c833774485 100644 --- a/target/i386/hvf-utils/x86_flags.c +++ b/target/i386/hvf/x86_flags.c diff --git a/target/i386/hvf-utils/x86_flags.h b/target/i386/hvf/x86_flags.h index 57a524240c..57a524240c 100644 --- a/target/i386/hvf-utils/x86_flags.h +++ b/target/i386/hvf/x86_flags.h diff --git a/target/i386/hvf-utils/x86_gen.h b/target/i386/hvf/x86_gen.h index 2045b0e69d..2045b0e69d 100644 --- a/target/i386/hvf-utils/x86_gen.h +++ b/target/i386/hvf/x86_gen.h diff --git a/target/i386/hvf-utils/x86_mmu.c b/target/i386/hvf/x86_mmu.c index 26e9e95b0b..26e9e95b0b 100644 --- a/target/i386/hvf-utils/x86_mmu.c +++ b/target/i386/hvf/x86_mmu.c diff --git a/target/i386/hvf-utils/x86_mmu.h b/target/i386/hvf/x86_mmu.h index b786af280b..b786af280b 100644 --- a/target/i386/hvf-utils/x86_mmu.h +++ b/target/i386/hvf/x86_mmu.h diff --git a/target/i386/hvf-utils/x86_task.c b/target/i386/hvf/x86_task.c index 2806814f90..c8cb16d3fa 100644 --- a/target/i386/hvf-utils/x86_task.c +++ b/target/i386/hvf/x86_task.c @@ -12,15 +12,15 @@ #include "sysemu/hvf.h" #include "hvf-i386.h" -#include "hvf-utils/vmcs.h" -#include "hvf-utils/vmx.h" -#include "hvf-utils/x86.h" -#include "hvf-utils/x86_descr.h" -#include "hvf-utils/x86_mmu.h" -#include "hvf-utils/x86_decode.h" -#include "hvf-utils/x86_emu.h" -#include "hvf-utils/x86_task.h" -#include "hvf-utils/x86hvf.h" +#include "vmcs.h" +#include "vmx.h" +#include "x86.h" +#include "x86_descr.h" +#include "x86_mmu.h" +#include "x86_decode.h" +#include "x86_emu.h" +#include "x86_task.h" +#include "x86hvf.h" #include <Hypervisor/hv.h> #include <Hypervisor/hv_vmx.h> diff --git a/target/i386/hvf-utils/x86_task.h b/target/i386/hvf/x86_task.h index 4f1b188d2e..4f1b188d2e 100644 --- a/target/i386/hvf-utils/x86_task.h +++ b/target/i386/hvf/x86_task.h diff --git a/target/i386/hvf-utils/x86hvf.c b/target/i386/hvf/x86hvf.c index c7a72d1890..c7a72d1890 100644 --- a/target/i386/hvf-utils/x86hvf.c +++ b/target/i386/hvf/x86hvf.c diff --git a/target/i386/hvf-utils/x86hvf.h b/target/i386/hvf/x86hvf.h index 79539f7282..79539f7282 100644 --- a/target/i386/hvf-utils/x86hvf.h +++ b/target/i386/hvf/x86hvf.h |