diff options
| author | Thomas Huth <thuth@redhat.com> | 2017-01-20 14:01:16 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-01-27 18:07:31 +0100 |
| commit | ba31cc7226ebcee639f18faa90c1542bd364fba3 (patch) | |
| tree | dfdbb34ad6f79658cd2929f411f0bc19ac6d9277 /qom/cpu.c | |
| parent | 1da45e0c4cf4719fa75898d019e0874b9b2bc774 (diff) | |
| download | focaccia-qemu-ba31cc7226ebcee639f18faa90c1542bd364fba3.tar.gz focaccia-qemu-ba31cc7226ebcee639f18faa90c1542bd364fba3.zip | |
Introduce DEVICE_CATEGORY_CPU for CPU devices
Now that CPUs show up in the help text of "-device ?", we should group them into an appropriate category. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <1484917276-7107-1-git-send-email-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom/cpu.c')
| -rw-r--r-- | qom/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qom/cpu.c b/qom/cpu.c index 7f575879f6..e815db7799 100644 --- a/qom/cpu.c +++ b/qom/cpu.c @@ -415,6 +415,7 @@ static void cpu_class_init(ObjectClass *klass, void *data) k->cpu_exec_enter = cpu_common_noop; k->cpu_exec_exit = cpu_common_noop; k->cpu_exec_interrupt = cpu_common_exec_interrupt; + set_bit(DEVICE_CATEGORY_CPU, dc->categories); dc->realize = cpu_common_realizefn; dc->unrealize = cpu_common_unrealizefn; /* |