We use 'HMP' for Human monitor and 'QMP' for 'Machine protocol'. These files aren't about human monitor but QMP, so rename them for clarity using the 'qmp-' prefix instead of 'monitor-'. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Eric Farman <farman@linux.ibm.com> Message-Id: <20260427080738.77138-6-philmd@linaro.org>
23 lines
788 B
C
23 lines
788 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qapi-commands-machine-s390x.h"
|
|
|
|
void qmp_set_cpu_topology(uint16_t core,
|
|
bool has_socket, uint16_t socket,
|
|
bool has_book, uint16_t book,
|
|
bool has_drawer, uint16_t drawer,
|
|
bool has_entitlement, S390CpuEntitlement entitlement,
|
|
bool has_dedicated, bool dedicated,
|
|
Error **errp)
|
|
{
|
|
error_setg(errp, "CPU topology change is not supported on this target");
|
|
}
|
|
|
|
CpuPolarizationInfo *qmp_query_s390x_cpu_polarization(Error **errp)
|
|
{
|
|
error_setg(errp, "CPU polarization is not supported on this target");
|
|
return NULL;
|
|
}
|