aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Fontana <cfontana@suse.de>2020-12-12 16:55:10 +0100
committerEduardo Habkost <ehabkost@redhat.com>2020-12-16 14:06:53 -0500
commit7fdef0d4f240208daf973e85ba1d498242e4fefc (patch)
tree1a0fd70be9674fd204c4ec174f13eaf3d156f9fa
parent1fc33bb9f05b2c263232ab01dd66d6e33d31cedc (diff)
downloadqemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.zip
qemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.tar.gz
qemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.tar.bz2
i386: move hax accel files into hax/
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-4-cfontana@suse.de> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
-rw-r--r--MAINTAINERS2
-rw-r--r--target/i386/hax/hax-all.c (renamed from target/i386/hax-all.c)0
-rw-r--r--target/i386/hax/hax-cpus.c (renamed from target/i386/hax-cpus.c)0
-rw-r--r--target/i386/hax/hax-cpus.h (renamed from target/i386/hax-cpus.h)0
-rw-r--r--target/i386/hax/hax-i386.h (renamed from target/i386/hax-i386.h)6
-rw-r--r--target/i386/hax/hax-interface.h (renamed from target/i386/hax-interface.h)0
-rw-r--r--target/i386/hax/hax-mem.c (renamed from target/i386/hax-mem.c)0
-rw-r--r--target/i386/hax/hax-posix.c (renamed from target/i386/hax-posix.c)0
-rw-r--r--target/i386/hax/hax-posix.h (renamed from target/i386/hax-posix.h)0
-rw-r--r--target/i386/hax/hax-windows.c (renamed from target/i386/hax-windows.c)0
-rw-r--r--target/i386/hax/hax-windows.h (renamed from target/i386/hax-windows.h)0
-rw-r--r--target/i386/hax/meson.build7
-rw-r--r--target/i386/meson.build8
13 files changed, 12 insertions, 11 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 6f29b37..e03615d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -492,7 +492,7 @@ W: https://github.com/intel/haxm/issues
S: Maintained
F: accel/stubs/hax-stub.c
F: include/sysemu/hax.h
-F: target/i386/hax-*
+F: target/i386/hax/
Hosts
-----
diff --git a/target/i386/hax-all.c b/target/i386/hax/hax-all.c
index fecfe8c..fecfe8c 100644
--- a/target/i386/hax-all.c
+++ b/target/i386/hax/hax-all.c
diff --git a/target/i386/hax-cpus.c b/target/i386/hax/hax-cpus.c
index f72c85b..f72c85b 100644
--- a/target/i386/hax-cpus.c
+++ b/target/i386/hax/hax-cpus.c
diff --git a/target/i386/hax-cpus.h b/target/i386/hax/hax-cpus.h
index ee8ab7a..ee8ab7a 100644
--- a/target/i386/hax-cpus.h
+++ b/target/i386/hax/hax-cpus.h
diff --git a/target/i386/hax-i386.h b/target/i386/hax/hax-i386.h
index 48c4abe..efbb346 100644
--- a/target/i386/hax-i386.h
+++ b/target/i386/hax/hax-i386.h
@@ -84,13 +84,13 @@ void hax_memory_init(void);
#ifdef CONFIG_POSIX
-#include "target/i386/hax-posix.h"
+#include "hax-posix.h"
#endif
#ifdef CONFIG_WIN32
-#include "target/i386/hax-windows.h"
+#include "hax-windows.h"
#endif
-#include "target/i386/hax-interface.h"
+#include "hax-interface.h"
#endif
diff --git a/target/i386/hax-interface.h b/target/i386/hax/hax-interface.h
index 537ae08..537ae08 100644
--- a/target/i386/hax-interface.h
+++ b/target/i386/hax/hax-interface.h
diff --git a/target/i386/hax-mem.c b/target/i386/hax/hax-mem.c
index 71e637c..71e637c 100644
--- a/target/i386/hax-mem.c
+++ b/target/i386/hax/hax-mem.c
diff --git a/target/i386/hax-posix.c b/target/i386/hax/hax-posix.c
index 735a749..735a749 100644
--- a/target/i386/hax-posix.c
+++ b/target/i386/hax/hax-posix.c
diff --git a/target/i386/hax-posix.h b/target/i386/hax/hax-posix.h
index fb7c644..fb7c644 100644
--- a/target/i386/hax-posix.h
+++ b/target/i386/hax/hax-posix.h
diff --git a/target/i386/hax-windows.c b/target/i386/hax/hax-windows.c
index 6c82dfb..6c82dfb 100644
--- a/target/i386/hax-windows.c
+++ b/target/i386/hax/hax-windows.c
diff --git a/target/i386/hax-windows.h b/target/i386/hax/hax-windows.h
index a5ce12d..a5ce12d 100644
--- a/target/i386/hax-windows.h
+++ b/target/i386/hax/hax-windows.h
diff --git a/target/i386/hax/meson.build b/target/i386/hax/meson.build
new file mode 100644
index 0000000..77ea431
--- /dev/null
+++ b/target/i386/hax/meson.build
@@ -0,0 +1,7 @@
+i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files(
+ 'hax-all.c',
+ 'hax-mem.c',
+ 'hax-cpus.c',
+))
+i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c'))
+i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c'))
diff --git a/target/i386/meson.build b/target/i386/meson.build
index 62cd042..284d52a 100644
--- a/target/i386/meson.build
+++ b/target/i386/meson.build
@@ -27,15 +27,9 @@ i386_softmmu_ss.add(files(
'machine.c',
'monitor.c',
))
-i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files(
- 'hax-all.c',
- 'hax-mem.c',
- 'hax-cpus.c',
-))
-i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c'))
-i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c'))
subdir('kvm')
+subdir('hax')
subdir('whpx')
subdir('hvf')