@samitouri / QOSamiQemu / commits / 7dc6376090

stubs: Rename monitor* -> qmp* files

We use 'HMP' for Human monitor and 'QMP' for 'Machine protocol'. These files aren't about human monitor but QMP, so rename them for clarity using the 'qmp-' prefix instead of 'monitor-'. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Eric Farman <farman@linux.ibm.com> Message-Id: <20260427080738.77138-6-philmd@linaro.org>

Philippe Mathieu-Daudé committed Apr 10, 2026 at 19:24 UTC 7dc6376090b6d0427fbc6af92bc2fd8f8456c766
10 files changed +14 -8
MAINTAINERS
+6
@@ -121,6 +121,7 @@ F: include/hw/s390x/
121 F: include/hw/watchdog/wdt_diag288.h
122 F: pc-bios/s390-ccw/
123 F: pc-bios/s390-ccw.img
124 +F: stubs/qmp-cpu-s390x.c
125 F: target/s390x/
126 F: docs/system/target-s390x.rst
127 F: docs/system/s390x/
@@ -497,6 +498,7 @@ M: Christian Borntraeger <borntraeger@linux.ibm.com>
498 R: Eric Farman <farman@linux.ibm.com>
499 R: Matthew Rosato <mjrosato@linux.ibm.com>
500 S: Supported
501 +F: stubs/qmp-cpu-s390x-kvm.c
502 F: target/s390x/kvm/
503 F: target/s390x/machine.c
504 F: target/s390x/sigp.c
@@ -510,6 +512,8 @@ L: kvm@vger.kernel.org
512 S: Supported
513 F: docs/system/i386/amd-memory-encryption.rst
514 F: docs/system/i386/sgx.rst
515 +F: stubs/qmp-i386-sev.c
516 +F: stubs/qmp-i386-sgx.c
517 F: target/i386/kvm/
518 F: target/i386/sev*
519 F: scripts/kvm/vmxcap
@@ -522,6 +526,7 @@ S: Supported
526 F: include/system/kvm_xen.h
527 F: target/i386/kvm/xen*
528 F: hw/i386/kvm/xen*
529 +F: stubs/qmp-i386-xen.c
530 F: tests/functional/x86_64/test_kvm_xen.py
531
532 Guest CPU Cores (other accelerators)
@@ -797,6 +802,7 @@ F: include/hw/timer/a9gtimer.h
802 F: include/hw/timer/arm_mptimer.h
803 F: include/hw/timer/armv7m_systick.h
804 F: include/hw/misc/armv7m_ras.h
805 +F: stubs/qmp-arm-gic.c
806 F: tests/qtest/test-arm-mptimer.c
807
808 Bananapi M2U
stubs/meson.build
+8 -8
@@ -79,14 +79,14 @@ if have_system
79 stub_ss.add(files('target-monitor-defs.c'))
80 stub_ss.add(files('win32-kbd-hook.c'))
81 stub_ss.add(files('xen-hw-stub.c'))
82 - stub_ss.add(files('monitor-arm-gic.c'))
83 - stub_ss.add(files('monitor-i386-rtc.c'))
84 - stub_ss.add(files('monitor-i386-sev.c'))
85 - stub_ss.add(files('monitor-i386-sgx.c'))
86 - stub_ss.add(files('monitor-i386-xen.c'))
87 - stub_ss.add(files('monitor-cpu.c'))
88 - stub_ss.add(files('monitor-cpu-s390x.c'))
89 - stub_ss.add(files('monitor-cpu-s390x-kvm.c'))
82 + stub_ss.add(files('qmp-arm-gic.c'))
83 + stub_ss.add(files('qmp-i386-rtc.c'))
84 + stub_ss.add(files('qmp-i386-sev.c'))
85 + stub_ss.add(files('qmp-i386-sgx.c'))
86 + stub_ss.add(files('qmp-i386-xen.c'))
87 + stub_ss.add(files('qmp-cpu.c'))
88 + stub_ss.add(files('qmp-cpu-s390x.c'))
89 + stub_ss.add(files('qmp-cpu-s390x-kvm.c'))
90 endif
91
92 if have_system or have_user
stubs/qmp-arm-gic.c renamed
stubs/qmp-cpu-s390x-kvm.c renamed
stubs/qmp-cpu-s390x.c renamed
stubs/qmp-cpu.c renamed
stubs/qmp-i386-rtc.c renamed
stubs/qmp-i386-sev.c renamed
stubs/qmp-i386-sgx.c renamed
stubs/qmp-i386-xen.c renamed