43 lines
1.7 KiB
Diff
43 lines
1.7 KiB
Diff
From 37b7e2185f1d23dd5f5a95b545b8d760492915ed Mon Sep 17 00:00:00 2001
|
|
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
Date: Fri, 2 Aug 2024 01:43:37 +0200
|
|
Subject: [PATCH 091/100] target/i386: SEV: fix mismatch in vcek-disabled
|
|
property name
|
|
|
|
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
RH-MergeRequest: 245: SEV-SNP support
|
|
RH-Jira: RHEL-39544
|
|
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
RH-Acked-by: Bandan Das <bdas@redhat.com>
|
|
RH-Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
|
|
RH-Commit: [91/91] 3a8abc4a0547b985cb79cef29bd3e8350d3d4b48 (bonzini/rhel-qemu-kvm)
|
|
|
|
The vcek-disabled property of the sev-snp-guest object is misspelled
|
|
vcek-required (which I suppose would use the opposite polarity) in
|
|
the call to object_class_property_add_bool(). Fix it.
|
|
|
|
Reported-by: Zixi Chen <zixchen@redhat.com>
|
|
Reviewed-by: Pankaj Gupta <pankaj.gupta@amd.com>
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
(cherry picked from commit d4392415c328f83b2e30517a3561be523874f441)
|
|
---
|
|
target/i386/sev.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/target/i386/sev.c b/target/i386/sev.c
|
|
index b921defb63..aed565dbe8 100644
|
|
--- a/target/i386/sev.c
|
|
+++ b/target/i386/sev.c
|
|
@@ -2378,7 +2378,7 @@ sev_snp_guest_class_init(ObjectClass *oc, void *data)
|
|
object_class_property_add_bool(oc, "author-key-enabled",
|
|
sev_snp_guest_get_author_key_enabled,
|
|
sev_snp_guest_set_author_key_enabled);
|
|
- object_class_property_add_bool(oc, "vcek-required",
|
|
+ object_class_property_add_bool(oc, "vcek-disabled",
|
|
sev_snp_guest_get_vcek_disabled,
|
|
sev_snp_guest_set_vcek_disabled);
|
|
object_class_property_add_str(oc, "host-data",
|
|
--
|
|
2.39.3
|
|
|