All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Make MachineClass::is_default boolean, refuse  multiple default machines
@ 2020-02-07 16:19 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 42+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-02-07 16:19 UTC (permalink / raw)
  To: qemu-devel
  Cc: Chris Wulff, Sagar Karandikar, Michael S. Tsirkin, Anthony Green,
	Mark Cave-Ayland, Alistair Francis, Edgar E. Iglesias,
	Guan Xuetao, Marek Vasut, Jia Liu, qemu-trivial, Helge Deller,
	David Hildenbrand, Magnus Damm, Halil Pasic,
	Christian Borntraeger, Palmer Dabbelt, Aleksandar Rikalo,
	Richard Henderson, Philippe Mathieu-Daudé,
	Artyom Tarasenko, Eduardo Habkost, Richard Henderson, qemu-s390x,
	Stafford Horne, David Gibson, qemu-riscv, Thomas Huth,
	Bastian Koppelmann, Cornelia Huck, Laurent Vivier, Michael Walle,
	qemu-ppc, Aleksandar Markovic, Paolo Bonzini, Aurelien Jarno

Cleanup after reviewing "ppc: function to setup latest class options":
https://www.mail-archive.com/qemu-devel@nongnu.org/msg677709.html

Since v3:
- addressed Laurent & Michael comments

Philippe Mathieu-Daudé (3):
  hw: Do not initialize MachineClass::is_default to 0
  hw: Make MachineClass::is_default a boolean type
  vl: Abort if multiple machines are registered as default

 include/hw/boards.h                      |  4 +++-
 hw/alpha/dp264.c                         |  2 +-
 hw/cris/axis_dev88.c                     |  2 +-
 hw/hppa/machine.c                        |  2 +-
 hw/i386/pc_piix.c                        | 10 +++++-----
 hw/lm32/lm32_boards.c                    |  3 +--
 hw/lm32/milkymist.c                      |  1 -
 hw/m68k/mcf5208.c                        |  2 +-
 hw/m68k/q800.c                           |  1 -
 hw/microblaze/petalogix_ml605_mmu.c      |  1 -
 hw/microblaze/petalogix_s3adsp1800_mmu.c |  2 +-
 hw/mips/mips_malta.c                     |  2 +-
 hw/moxie/moxiesim.c                      |  2 +-
 hw/nios2/10m50_devboard.c                |  2 +-
 hw/openrisc/openrisc_sim.c               |  2 +-
 hw/ppc/mac_oldworld.c                    |  2 +-
 hw/ppc/spapr.c                           |  2 +-
 hw/riscv/spike.c                         |  2 +-
 hw/s390x/s390-virtio-ccw.c               |  2 +-
 hw/sh4/shix.c                            |  2 +-
 hw/sparc/sun4m.c                         |  2 +-
 hw/sparc64/sun4u.c                       |  2 +-
 hw/tricore/tricore_testboard.c           |  1 -
 hw/unicore32/puv3.c                      |  2 +-
 vl.c                                     |  6 ++++--
 25 files changed, 30 insertions(+), 31 deletions(-)

-- 
2.21.1



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

end of thread, other threads:[~2020-02-10 13:26 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 16:19 [PATCH v4 0/3] Make MachineClass::is_default boolean, refuse multiple default machines Philippe Mathieu-Daudé
2020-02-07 16:19 ` Philippe Mathieu-Daudé
2020-02-07 16:19 ` [PATCH v4 1/3] hw: Do not initialize MachineClass::is_default to 0 Philippe Mathieu-Daudé
2020-02-07 16:19   ` Philippe Mathieu-Daudé
2020-02-07 17:44   ` Laurent Vivier
2020-02-07 17:44     ` Laurent Vivier
2020-02-08  9:23   ` David Gibson
2020-02-08  9:23     ` David Gibson
2020-02-10  9:35   ` Tricore default machine (was: [PATCH v4 1/3] hw: Do not initialize MachineClass::is_default to 0) Thomas Huth
2020-02-10  9:35     ` Thomas Huth
2020-02-10 10:08     ` Tricore default machine Philippe Mathieu-Daudé
2020-02-10 10:08       ` Philippe Mathieu-Daudé
2020-02-10 10:26       ` Thomas Huth
2020-02-10 10:26         ` Thomas Huth
2020-02-10 12:31         ` Bastian Koppelmann
2020-02-10 12:31           ` Bastian Koppelmann
2020-02-10 13:22           ` Peter Maydell
2020-02-10 13:22             ` Peter Maydell
2020-02-10 13:25             ` Philippe Mathieu-Daudé
2020-02-10 13:25               ` Philippe Mathieu-Daudé
2020-02-07 16:19 ` [PATCH v4 2/3] hw: Make MachineClass::is_default a boolean type Philippe Mathieu-Daudé
2020-02-07 16:19   ` Philippe Mathieu-Daudé
2020-02-07 16:32   ` Marc-André Lureau
2020-02-07 16:32     ` Marc-André Lureau
2020-02-07 17:48   ` Laurent Vivier
2020-02-07 17:48     ` Laurent Vivier
2020-02-08  9:24   ` David Gibson
2020-02-08  9:24     ` David Gibson
2020-02-10  8:51   ` Cornelia Huck
2020-02-10  8:51     ` Cornelia Huck
2020-02-10  9:22   ` Thomas Huth
2020-02-10  9:22     ` Thomas Huth
2020-02-07 16:19 ` [PATCH v4 3/3] vl: Abort if multiple machines are registered as default Philippe Mathieu-Daudé
2020-02-07 16:19   ` Philippe Mathieu-Daudé
2020-02-07 16:31   ` Marc-André Lureau
2020-02-07 16:31     ` Marc-André Lureau
2020-02-07 18:05   ` Laurent Vivier
2020-02-07 18:05     ` Laurent Vivier
2020-02-08  9:25   ` David Gibson
2020-02-08  9:25     ` David Gibson
2020-02-07 18:03 ` [PATCH v4 0/3] Make MachineClass::is_default boolean, refuse multiple default machines Eduardo Habkost
2020-02-07 18:03   ` Eduardo Habkost

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.