[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/13] target/i386: Rename i386_softmmu_kvm_ss -> i386_kvm_ss
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 09/13] target/i386: Rename i386_softmmu_kvm_ss -> i386_kvm_ss |
Date: |
Wed, 4 Oct 2023 11:06:24 +0200 |
Software MMU is TCG specific. Here 'softmmu' is misused
for system emulation. Anyhow, since KVM is system emulation
specific, just rename as 'i386_kvm_ss'.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/i386/kvm/meson.build | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/target/i386/kvm/meson.build b/target/i386/kvm/meson.build
index 5d9174bbb5..84d9143e60 100644
--- a/target/i386/kvm/meson.build
+++ b/target/i386/kvm/meson.build
@@ -1,14 +1,14 @@
-i386_softmmu_kvm_ss = ss.source_set()
+i386_kvm_ss = ss.source_set()
-i386_softmmu_kvm_ss.add(files(
+i386_kvm_ss.add(files(
'kvm.c',
'kvm-cpu.c',
))
-i386_softmmu_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files('xen-emu.c'))
+i386_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files('xen-emu.c'))
-i386_softmmu_kvm_ss.add(when: 'CONFIG_SEV', if_false: files('sev-stub.c'))
+i386_kvm_ss.add(when: 'CONFIG_SEV', if_false: files('sev-stub.c'))
i386_system_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c'),
if_false: files('hyperv-stub.c'))
-i386_system_ss.add_all(when: 'CONFIG_KVM', if_true: i386_softmmu_kvm_ss)
+i386_system_ss.add_all(when: 'CONFIG_KVM', if_true: i386_kvm_ss)
--
2.41.0
- [PATCH 04/13] fuzz: Correct invalid mentions of 'softmmu' by 'system', (continued)
- [PATCH 04/13] fuzz: Correct invalid mentions of 'softmmu' by 'system', Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 05/13] tcg: Correct invalid mentions of 'softmmu' by 'system-mode', Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 03/13] cpu: Correct invalid mentions of 'softmmu' by 'system-mode', Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 06/13] accel: Rename accel_softmmu* -> accel_system*, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 07/13] gdbstub: Rename 'softmmu' -> 'system', Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 08/13] semihosting: Rename softmmu_FOO_user() -> uaccess_FOO_user(), Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 10/13] hw/virtio/meson: Rename softmmu_virtio_ss -> system_virtio_ss, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 11/13] meson: Rename softmmu_mods -> system_mods, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 09/13] target/i386: Rename i386_softmmu_kvm_ss -> i386_kvm_ss,
Philippe Mathieu-Daudé <=
- [PATCH 12/13] meson: Rename target_softmmu_arch -> target_system_arch, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 13/13] system: Rename softmmu/ directory as system/, Philippe Mathieu-Daudé, 2023/10/04
- Re: [PATCH 00/13] misc: Rename 'softmmu' -> 'system', Daniel P . Berrangé, 2023/10/04