Revision 83a9cdbd65ceb4a443630aed011a00ef217ed408 authored by Michael Tokarev on 07 August 2023, 12:05:10 UTC, committed by Michael Tokarev on 07 August 2023, 12:05:10 UTC
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
1 parent 7cb0210
Raw File
cxl_type3_stubs.c

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-cxl.h"

void qmp_cxl_inject_uncorrectable_errors(const char *path,
                                         CXLUncorErrorRecordList *errors,
                                         Error **errp)
{
    error_setg(errp, "CXL Type 3 support is not compiled in");
}

void qmp_cxl_inject_correctable_error(const char *path, CxlCorErrorType type,
                                      Error **errp)
{
    error_setg(errp, "CXL Type 3 support is not compiled in");
}
back to top