mirror of
https://github.com/qemu/qemu.git
synced 2026-02-04 05:35:39 +00:00
Prepare for arch-specific igvm code being added to the code base. Reviewed-by: Ani Sinha <anisinha@redhat.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Reviewed-by: Luigi Leonardi <leonardi@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-ID: <20251029105555.2492276-2-kraxel@redhat.com>
23 lines
495 B
C
23 lines
495 B
C
/*
|
|
* QEMU IGVM configuration backend for Confidential Guests
|
|
*
|
|
* Copyright (C) 2023-2024 SUSE
|
|
*
|
|
* Authors:
|
|
* Roy Hopkins <roy.hopkins@randomman.co.uk>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef BACKENDS_IGVM_H
|
|
#define BACKENDS_IGVM_H
|
|
|
|
#include "system/confidential-guest-support.h"
|
|
#include "system/igvm-cfg.h"
|
|
#include "qapi/error.h"
|
|
|
|
int qigvm_process_file(IgvmCfg *igvm, ConfidentialGuestSupport *cgs,
|
|
bool onlyVpContext, Error **errp);
|
|
|
|
#endif
|