Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
32 lines
578 B
C
32 lines
578 B
C
/*
|
|
* QEMU IGVM, stubs
|
|
*
|
|
* Copyright (C) 2026 Red Hat
|
|
*
|
|
* Authors:
|
|
* Gerd Hoffmann <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "system/igvm.h"
|
|
|
|
int qigvm_x86_get_mem_map_entry(int index,
|
|
ConfidentialGuestMemoryMapEntry *entry,
|
|
Error **errp)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int qigvm_x86_set_vp_context(void *data, int index, Error **errp)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int qigvm_directive_madt(QIgvm *ctx, const uint8_t *header_data, Error **errp)
|
|
{
|
|
return -1;
|
|
}
|