On Tue, Mar 15, 2016 at 02:24:07PM +0100, Igor Mammedov wrote: [...] > diff --git a/stubs/qmp_query_hotpluggable_cpus.c > b/stubs/qmp_query_hotpluggable_cpus.c > new file mode 100644 > index 0000000..21a75a3 > --- /dev/null > +++ b/stubs/qmp_query_hotpluggable_cpus.c > @@ -0,0 +1,9 @@ > +#include "qemu/osdep.h" > +#include "qapi/qmp/qerror.h" > +#include "qmp-commands.h" > + > +HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp) > +{ > + error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus"); > + return NULL; > +}
Sorry if this was discussed in previous threads that I haven't read, but: isn't this supposed to be a MachineClass method? I remember David saying once that we have the habit of assuming that a single QEMU binary can run only one family of machines that are very similar (like x86), but that's not always true. -- Eduardo