Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
21 lines
522 B
C
21 lines
522 B
C
/*
|
|
* Stub interface for CPER payload parser for error injection
|
|
*
|
|
* Copyright(C) 2024-2025 Huawei LTD.
|
|
*
|
|
* This code is licensed under the GPL version 2 or later. See the
|
|
* COPYING file in the top-level directory.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qapi-commands-acpi-hest.h"
|
|
#include "hw/acpi/ghes.h"
|
|
|
|
void qmp_inject_ghes_v2_error(const char *cper, Error **errp)
|
|
{
|
|
error_setg(errp, "GHES QMP error inject is not compiled in");
|
|
}
|