diff options
| author | Eduardo Habkost | 2015-05-15 19:18:53 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-05-31 16:26:42 +0200 |
| commit | 61f219dfb093c0df91926928c780299cdf429619 (patch) | |
| tree | 7eb9ac3dd6e3ad3c0d7fc8e7d0b5724f331d1596 /include | |
| parent | pc: Define MACHINE_OPTIONS macros consistently for all machines (diff) | |
| download | qemu-61f219dfb093c0df91926928c780299cdf429619.tar.gz qemu-61f219dfb093c0df91926928c780299cdf429619.tar.xz qemu-61f219dfb093c0df91926928c780299cdf429619.zip | |
pc: Define machines using a DEFINE_PC_MACHINE macro
This will automatically generate the existing QEMUMachine structs based
on the *_MACHINE_OPTIONS macros, and automatically add registration code
for them.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/pc.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 672f1f7b41..a5b1fb02bb 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -525,4 +525,20 @@ bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *); .hot_add_cpu = pc_hot_add_cpu, \ .max_cpus = 255 +#define DEFINE_PC_MACHINE(suffix, namestr, initfn, OPTS, COMPAT) \ + static QEMUMachine pc_machine_##suffix = { \ + OPTS, \ + .name = namestr, \ + .init = initfn, \ + .compat_props = (GlobalProperty[]) { \ + COMPAT \ + { /* end of list */ } \ + }, \ + }; \ + static void pc_machine_init_##suffix(void) \ + { \ + qemu_register_pc_machine(&pc_machine_##suffix); \ + } \ + machine_init(pc_machine_init_##suffix) + #endif |
