From: Xiaoyao Li Date: Tue, 3 Jun 2025 05:03:04 +0000 (-0400) Subject: i386/tdx: Fix the typo of the comment of struct TdxGuest X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a38da9f4876bb17d7ed9c6e24964b12b61877d38;p=thirdparty%2Fqemu.git i386/tdx: Fix the typo of the comment of struct TdxGuest Change sha348 to sha384. Signed-off-by: Xiaoyao Li Reviewed-by: Daniel P. Berrangé Reviewed-by: Igor Mammedov Link: https://lore.kernel.org/r/20250603050305.1704586-3-xiaoyao.li@intel.com Signed-off-by: Paolo Bonzini --- diff --git a/target/i386/kvm/tdx.h b/target/i386/kvm/tdx.h index 04b5afe199..8dd66e9014 100644 --- a/target/i386/kvm/tdx.h +++ b/target/i386/kvm/tdx.h @@ -40,9 +40,9 @@ typedef struct TdxGuest { bool initialized; uint64_t attributes; /* TD attributes */ uint64_t xfam; - char *mrconfigid; /* base64 encoded sha348 digest */ - char *mrowner; /* base64 encoded sha348 digest */ - char *mrownerconfig; /* base64 encoded sha348 digest */ + char *mrconfigid; /* base64 encoded sha384 digest */ + char *mrowner; /* base64 encoded sha384 digest */ + char *mrownerconfig; /* base64 encoded sha384 digest */ MemoryRegion *tdvf_mr; TdxFirmware tdvf;