summaryrefslogtreecommitdiffstats
path: root/accel/kvm/kvm-all.c
diff options
context:
space:
mode:
authorDavid Gibson2020-06-04 06:18:52 +0200
committerDavid Gibson2021-02-08 06:57:38 +0100
commitc9f5aaa6bce819c1863c2a56b187cb9eb521fc92 (patch)
tree63ec7cac1c3fe0d9a45aa044134e00bc36878655 /accel/kvm/kvm-all.c
parentconfidential guest support: Rework the "memory-encryption" property (diff)
downloadqemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.tar.gz
qemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.tar.xz
qemu-c9f5aaa6bce819c1863c2a56b187cb9eb521fc92.zip
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 'accel/kvm/kvm-all.c')
-rw-r--r--accel/kvm/kvm-all.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
index 88a6b8c19e..226e1556f9 100644
--- a/accel/kvm/kvm-all.c
+++ b/accel/kvm/kvm-all.c
@@ -2185,9 +2185,11 @@ static int kvm_init(MachineState *ms)
* encryption context.
*/
if (ms->cgs) {
+ Error *local_err = NULL;
/* FIXME handle mechanisms other than SEV */
- ret = sev_kvm_init(ms->cgs);
+ ret = sev_kvm_init(ms->cgs, &local_err);
if (ret < 0) {
+ error_report_err(local_err);
goto err;
}
}