]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
i386: hvf: move all hvf files in the same directory
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 3 Oct 2017 13:33:29 +0000 (15:33 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 22 Dec 2017 14:02:05 +0000 (15:02 +0100)
Just call it hvf/, no need for the "utils" suffix.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
25 files changed:
target/i386/Makefile.objs
target/i386/hvf/Makefile.objs [moved from target/i386/hvf-utils/Makefile.objs with 87% similarity]
target/i386/hvf/README.md [moved from target/i386/hvf-utils/README.md with 100% similarity]
target/i386/hvf/hvf-i386.h [moved from target/i386/hvf-i386.h with 97% similarity]
target/i386/hvf/hvf.c [moved from target/i386/hvf-all.c with 98% similarity]
target/i386/hvf/vmcs.h [moved from target/i386/hvf-utils/vmcs.h with 100% similarity]
target/i386/hvf/vmx.h [moved from target/i386/hvf-utils/vmx.h with 100% similarity]
target/i386/hvf/x86.c [moved from target/i386/hvf-utils/x86.c with 100% similarity]
target/i386/hvf/x86.h [moved from target/i386/hvf-utils/x86.h with 100% similarity]
target/i386/hvf/x86_cpuid.c [moved from target/i386/hvf-utils/x86_cpuid.c with 100% similarity]
target/i386/hvf/x86_decode.c [moved from target/i386/hvf-utils/x86_decode.c with 100% similarity]
target/i386/hvf/x86_decode.h [moved from target/i386/hvf-utils/x86_decode.h with 100% similarity]
target/i386/hvf/x86_descr.c [moved from target/i386/hvf-utils/x86_descr.c with 100% similarity]
target/i386/hvf/x86_descr.h [moved from target/i386/hvf-utils/x86_descr.h with 100% similarity]
target/i386/hvf/x86_emu.c [moved from target/i386/hvf-utils/x86_emu.c with 100% similarity]
target/i386/hvf/x86_emu.h [moved from target/i386/hvf-utils/x86_emu.h with 100% similarity]
target/i386/hvf/x86_flags.c [moved from target/i386/hvf-utils/x86_flags.c with 100% similarity]
target/i386/hvf/x86_flags.h [moved from target/i386/hvf-utils/x86_flags.h with 100% similarity]
target/i386/hvf/x86_gen.h [moved from target/i386/hvf-utils/x86_gen.h with 100% similarity]
target/i386/hvf/x86_mmu.c [moved from target/i386/hvf-utils/x86_mmu.c with 100% similarity]
target/i386/hvf/x86_mmu.h [moved from target/i386/hvf-utils/x86_mmu.h with 100% similarity]
target/i386/hvf/x86_task.c [moved from target/i386/hvf-utils/x86_task.c with 96% similarity]
target/i386/hvf/x86_task.h [moved from target/i386/hvf-utils/x86_task.h with 100% similarity]
target/i386/hvf/x86hvf.c [moved from target/i386/hvf-utils/x86hvf.c with 100% similarity]
target/i386/hvf/x86hvf.h [moved from target/i386/hvf-utils/x86hvf.h with 100% similarity]

index 0bef89c09974044d43d74347180d9c5e581a254e..44103a693b661bafe6a0e577de88b66645062eb2 100644 (file)
@@ -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
similarity index 87%
rename from target/i386/hvf-utils/Makefile.objs
rename to target/i386/hvf/Makefile.objs
index 79d8969ca82b9de5e0a743cd9336ceb96efed250..927b86bc6704699172853de66e3e18e6cb61beed 100644 (file)
@@ -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
similarity index 97%
rename from target/i386/hvf-i386.h
rename to target/i386/hvf/hvf-i386.h
index 797718ce34f03d03f31efce23fc58229f549972b..2232501552ed80e90f42cce5c6a6cacb157ee516 100644 (file)
@@ -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
similarity index 98%
rename from target/i386/hvf-all.c
rename to target/i386/hvf/hvf.c
index 126344f5be8255f49782aa3cf2c48d00f2e2091b..445082c2cb815819f20cb5b5a40df9cd36848d20 100644 (file)
 
 #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"
similarity index 96%
rename from target/i386/hvf-utils/x86_task.c
rename to target/i386/hvf/x86_task.c
index 2806814f903f043a2c6d853c132bf9a4db830b17..c8cb16d3fa7c768a68c4e56a6cdb48069b6218d3 100644 (file)
 
 #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>