qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 00/10] pc: Don't use QEMUMachine, simplify compat+in


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 00/10] pc: Don't use QEMUMachine, simplify compat+init code
Date: Fri, 15 May 2015 14:18:51 -0300

This series changes the PC code to not need QEMUMachine anymore, removes ~200
lines of code and simplifies the steps needed to new PC machines in the future.

Previously, a new PC machine required:
 * A new PC_COMPAT_* macro;
 * A new pc_compat_*() function[1];
 * A new pc_init_*() function;
 * A new MACHINE_OPTIONS macro;
 * A new QEMUMachine declaration;
 * A new qemu_register_pc_machine() call in the machine_init() function.

Now it just needs:
 * A new PC_COMPAT_* macro;
 * A new pc_compat_*() function[1];
 * A new pc_*_machine_options() function;
 * A DEFINE_*_MACHINE line.

This series depends on the series I submitted recently:
  [PATCH v2 00/13] pc, hw, spapr: Cleanup of {HW, PC, SPAPR}_COMPAT_* macros

A git tree can be seen at:
  git://github.com/ehabkost/qemu-hacks.git work/pc-compat-macros

[1] I still plan to eliminate the need for the pc_compat_*() functions, and
move all compat data inside MachineClass/PCMachineClass, but that will be done
later.

Eduardo Habkost (10):
  pc: Define MACHINE_OPTIONS macros consistently for all machines
  pc: Define machines using a DEFINE_PC_MACHINE macro
  pc: Convert *_MACHINE_OPTIONS macros into functions
  pc: Move compat_props setting inside *_machine_options() functions
  pc: Don't use QEMUMachine anymore
  pc: Remove qemu_register_pc_machine() function
  machine: Remove unused fields from QEMUMachine
  piix: Add kvmclock_enabled, pci_enabled globals
  piix: Eliminate pc_init_pci()
  pc: Generate init functions with a macro

 hw/i386/pc.c         |  45 -----
 hw/i386/pc_piix.c    | 554 +++++++++++++++++++++------------------------------
 hw/i386/pc_q35.c     | 240 ++++++++--------------
 include/hw/boards.h  |  15 +-
 include/hw/i386/pc.h |  45 ++++-
 vl.c                 |  15 --
 6 files changed, 358 insertions(+), 556 deletions(-)

-- 
2.1.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]