[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/13] cpu: Correct invalid mentions of 'softmmu' by 'system-mode
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 03/13] cpu: Correct invalid mentions of 'softmmu' by 'system-mode' |
Date: |
Wed, 4 Oct 2023 11:06:18 +0200 |
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
cpu.c | 2 +-
hw/core/cpu-common.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cpu.c b/cpu.c
index 0769b0b153..8cb6790142 100644
--- a/cpu.c
+++ b/cpu.c
@@ -209,7 +209,7 @@ static Property cpu_common_props[] = {
prctl_unalign_sigbus, false),
#else
/*
- * Create a memory property for softmmu CPU object, so users can
+ * Create a memory property for system CPU object, so users can
* wire up its memory. The default if no link is set up is to use
* the system address space.
*/
diff --git a/hw/core/cpu-common.c b/hw/core/cpu-common.c
index ced66c2b34..f04d59c8d5 100644
--- a/hw/core/cpu-common.c
+++ b/hw/core/cpu-common.c
@@ -228,8 +228,8 @@ static void cpu_common_initfn(Object *obj)
cpu->cpu_index = UNASSIGNED_CPU_INDEX;
cpu->cluster_index = UNASSIGNED_CLUSTER_INDEX;
cpu->gdb_num_regs = cpu->gdb_num_g_regs = cc->gdb_num_core_regs;
- /* *-user doesn't have configurable SMP topology */
- /* the default value is changed by qemu_init_vcpu() for softmmu */
+ /* user-mode doesn't have configurable SMP topology */
+ /* the default value is changed by qemu_init_vcpu() for system-mode */
cpu->nr_cores = 1;
cpu->nr_threads = 1;
cpu->cflags_next_tb = -1;
--
2.41.0
- [PATCH 00/13] misc: Rename 'softmmu' -> 'system', Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 01/13] softmmu/trace-events: Fix a typo, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH 02/13] travis-ci: Correct invalid mentions of 'softmmu' by 'system', Philippe Mathieu-Daudé, 2023/10/04
- [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é <=
- [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é, 2023/10/04
- [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