All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] cli: Remove mentions of legacy '-machine foo, accel=bar' command line
@ 2024-12-03  9:21 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 27+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-12-03  9:21 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, Daniel P . Berrangé, xen-devel, qemu-ppc,
	Markus Armbruster, qemu-arm, Thomas Huth,
	Philippe Mathieu-Daudé

Thomas told '-machine foo,accel=bar' is sugar and almost
deprecated. Rather than having bad examples in the tree,
remove the legacy form and update to the new '-accel bar'
one.

Xen uses via MachineClass::default_machine_opts left for later:

hw/i386/pc_piix.c:818:    m->default_machine_opts = "accel=xen,suppress-vmdesc=on";
hw/i386/pc_piix.c:830:    m->default_machine_opts = "accel=xen,suppress-vmdesc=on";
hw/xen/xen-pvh-common.c:381:    mc->default_machine_opts = "accel=xen";
hw/xenpv/xen_machine_pv.c:69:    mc->default_machine_opts = "accel=xen";

Philippe Mathieu-Daudé (7):
  tests/functional/test_ppc64_hv: Remove legacy '-machine foo,accel=bar'
  tests/functional/test_virtio_gpu: Remove legacy '-machine
    foo,accel=bar'
  tests/qtest/fuzz: Remove legacy '-machine foo,accel=bar'
  scripts/device-crash-test: Remove legacy '-machine foo,accel=bar'
  accel/tcg: Remove mentions of legacy '-machine foo,accel=bar'
  accel/kvm: Remove mentions of legacy '-machine foo,accel=bar'
  qemu-options: Remove mentions of legacy '-machine foo,accel=bar'

 docs/about/removed-features.rst                |  2 +-
 docs/bypass-iommu.txt                          |  3 ++-
 docs/nvdimm.txt                                |  2 +-
 docs/specs/tpm.rst                             |  2 +-
 docs/system/arm/cpu-features.rst               |  2 +-
 docs/system/cpu-hotplug.rst                    |  2 +-
 docs/system/ppc/powernv.rst                    |  2 +-
 docs/system/ppc/pseries.rst                    |  4 ++--
 linux-user/s390x/target_proc.h                 |  2 +-
 accel/tcg/monitor.c                            |  4 ++--
 system/vl.c                                    |  2 +-
 tests/qtest/fuzz/generic_fuzz.c                |  2 +-
 tests/qtest/fuzz/i440fx_fuzz.c                 |  2 +-
 tests/qtest/fuzz/qos_fuzz.c                    |  2 +-
 tests/qtest/qmp-cmd-test.c                     |  2 +-
 qemu-options.hx                                |  9 ---------
 scripts/device-crash-test                      | 11 ++++++++---
 scripts/oss-fuzz/output_reproducer.py          |  2 --
 scripts/oss-fuzz/reorder_fuzzer_qtest_trace.py |  6 +++---
 tests/functional/test_ppc64_hv.py              |  3 ++-
 tests/functional/test_virtio_gpu.py            |  6 ++++--
 21 files changed, 35 insertions(+), 37 deletions(-)

-- 
2.45.2


^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2024-12-03 10:34 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-03  9:21 [PATCH 0/7] cli: Remove mentions of legacy '-machine foo, accel=bar' command line Philippe Mathieu-Daudé
2024-12-03  9:21 ` [PATCH 0/7] cli: Remove mentions of legacy '-machine foo,accel=bar' " Philippe Mathieu-Daudé
2024-12-03  9:21 ` [PATCH 1/7] tests/functional/test_ppc64_hv: Remove legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 1/7] tests/functional/test_ppc64_hv: Remove legacy '-machine foo,accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:34   ` Daniel P. Berrangé
2024-12-03 10:20   ` Thomas Huth
2024-12-03  9:21 ` [PATCH 2/7] tests/functional/test_virtio_gpu: Remove legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 2/7] tests/functional/test_virtio_gpu: Remove legacy '-machine foo,accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:34   ` Daniel P. Berrangé
2024-12-03 10:23   ` Thomas Huth
2024-12-03  9:21 ` [PATCH 3/7] tests/qtest/fuzz: " Philippe Mathieu-Daudé
2024-12-03  9:35   ` Daniel P. Berrangé
2024-12-03 10:25   ` Thomas Huth
2024-12-03  9:21 ` [PATCH 4/7] scripts/device-crash-test: Remove legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 4/7] scripts/device-crash-test: Remove legacy '-machine foo,accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:38   ` Daniel P. Berrangé
2024-12-03  9:21 ` [PATCH 5/7] accel/tcg: Remove mentions of " Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 5/7] accel/tcg: Remove mentions of legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:42   ` [PATCH 5/7] accel/tcg: Remove mentions of legacy '-machine foo,accel=bar' Daniel P. Berrangé
2024-12-03  9:21 ` [PATCH 6/7] accel/kvm: Remove mentions of legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 6/7] accel/kvm: Remove mentions of legacy '-machine foo,accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:42   ` Daniel P. Berrangé
2024-12-03 10:34   ` Thomas Huth
2024-12-03  9:21 ` [PATCH 7/7] qemu-options: Remove mentions of legacy '-machine foo, accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:21   ` [PATCH 7/7] qemu-options: Remove mentions of legacy '-machine foo,accel=bar' Philippe Mathieu-Daudé
2024-12-03  9:54   ` Daniel P. Berrangé
2024-12-03 10:00     ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.