]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
i386: move whpx accel files into whpx/
authorClaudio Fontana <cfontana@suse.de>
Sat, 12 Dec 2020 15:55:09 +0000 (16:55 +0100)
committerEduardo Habkost <ehabkost@redhat.com>
Wed, 16 Dec 2020 19:06:53 +0000 (14:06 -0500)
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201212155530.23098-3-cfontana@suse.de>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
MAINTAINERS
target/i386/meson.build
target/i386/whpx/meson.build [new file with mode: 0644]
target/i386/whpx/whp-dispatch.h [moved from target/i386/whp-dispatch.h with 100% similarity]
target/i386/whpx/whpx-all.c [moved from target/i386/whpx-all.c with 100% similarity]
target/i386/whpx/whpx-apic.c [moved from target/i386/whpx-apic.c with 100% similarity]
target/i386/whpx/whpx-cpus.c [moved from target/i386/whpx-cpus.c with 100% similarity]
target/i386/whpx/whpx-cpus.h [moved from target/i386/whpx-cpus.h with 100% similarity]

index a77553833a0cd4241511d22035b4a76eac1fa892..6f29b37834aaf784ae6b9dccfb45c4ccbf064da2 100644 (file)
@@ -452,11 +452,7 @@ F: include/sysemu/hvf.h
 WHPX CPUs
 M: Sunil Muthuswamy <sunilmut@microsoft.com>
 S: Supported
-F: target/i386/whpx-all.c
-F: target/i386/whpx-apic.c
-F: target/i386/whpx-cpus.c
-F: target/i386/whp-dispatch.h
-F: accel/stubs/whpx-stub.c
+F: target/i386/whpx/
 F: include/sysemu/whpx.h
 
 Guest CPU Cores (Xen)
index 53637571315e488a116cc3eeb7fa247311def1c9..62cd042915179e8e2220b82714571f5522fd0e05 100644 (file)
@@ -27,11 +27,6 @@ i386_softmmu_ss.add(files(
   'machine.c',
   'monitor.c',
 ))
-i386_softmmu_ss.add(when: 'CONFIG_WHPX', if_true: files(
-  'whpx-all.c',
-  'whpx-cpus.c',
-  'whpx-apic.c',
-))
 i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files(
   'hax-all.c',
   'hax-mem.c',
@@ -41,6 +36,7 @@ i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-po
 i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c'))
 
 subdir('kvm')
+subdir('whpx')
 subdir('hvf')
 
 target_arch += {'i386': i386_ss}
diff --git a/target/i386/whpx/meson.build b/target/i386/whpx/meson.build
new file mode 100644 (file)
index 0000000..d8aa683
--- /dev/null
@@ -0,0 +1,5 @@
+i386_softmmu_ss.add(when: 'CONFIG_WHPX', if_true: files(
+  'whpx-all.c',
+  'whpx-apic.c',
+  'whpx-cpus.c',
+))