Files
QEMU-S5L8950X/stubs/qmp-cpu-s390x-kvm.c
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

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;
}