diff options
author | Min M Xu <min.m.xu@intel.com> | 2023-01-11 09:22:33 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-01-15 10:26:15 +0000 |
commit | 2ef0ff39e53d2d2af3859b783882eea6f0beda64 (patch) | |
tree | c04cc4c04f6a697de8fa721e0483a033063a33bd /OvmfPkg/AcpiPlatformDxe | |
parent | 165f1e49361a9a5f5936f2d582641096d0d7a2a2 (diff) | |
download | edk2-2ef0ff39e53d2d2af3859b783882eea6f0beda64.tar.gz edk2-2ef0ff39e53d2d2af3859b783882eea6f0beda64.tar.bz2 edk2-2ef0ff39e53d2d2af3859b783882eea6f0beda64.zip |
OvmfPkg/AcpiPlatformDxe: Add log to show the installed tables
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4237
Commit 9fdc70af6ba8 wrongly removed the log from InstallQemuFwCfgTables
after ACPI tables are successfully installed. This patch add the log
back after all operations succeed.
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Erdem Aktas <erdemaktas@google.com>
Cc: James Bottomley <jejb@linux.ibm.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Reported-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
Message-Id: <20230111012235.189-5-min.m.xu@intel.com>
Diffstat (limited to 'OvmfPkg/AcpiPlatformDxe')
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c index 9711335c6c..4629214666 100644 --- a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c +++ b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c @@ -1264,6 +1264,8 @@ InstallQemuFwCfgTables ( S3Context = NULL;
}
+ DEBUG ((DEBUG_INFO, "%a: installed %d tables\n", __FUNCTION__, Installed));
+
UninstallAcpiTables:
if (EFI_ERROR (Status)) {
//
|