aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2020-06-04 14:18:52 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2021-02-08 16:57:38 +1100
commitc9f5aaa6bce819c1863c2a56b187cb9eb521fc92 (patch)
tree63ec7cac1c3fe0d9a45aa044134e00bc36878655 /include
parente0292d7c62673546c01d5c6b245735fdfef81840 (diff)
downloadqemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.zip
qemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.tar.gz
qemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.tar.bz2
sev: Add Error ** to sev_kvm_init()
This allows failures to be reported richly and idiomatically. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/sysemu/sev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/sev.h b/include/sysemu/sev.h
index 3b5b1aa..5c5a13c 100644
--- a/include/sysemu/sev.h
+++ b/include/sysemu/sev.h
@@ -16,7 +16,7 @@
#include "sysemu/kvm.h"
-int sev_kvm_init(ConfidentialGuestSupport *cgs);
+int sev_kvm_init(ConfidentialGuestSupport *cgs, Error **errp);
int sev_encrypt_flash(uint8_t *ptr, uint64_t len, Error **errp);
int sev_inject_launch_secret(const char *hdr, const char *secret,
uint64_t gpa, Error **errp);