summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PerformancePkg/Dp_App/DpStrings.unibin36244 -> 36232 bytes
-rw-r--r--PerformancePkg/Dp_App/DpTrace.c6
2 files changed, 3 insertions, 3 deletions
diff --git a/PerformancePkg/Dp_App/DpStrings.uni b/PerformancePkg/Dp_App/DpStrings.uni
index f120985324..ee3b277b64 100644
--- a/PerformancePkg/Dp_App/DpStrings.uni
+++ b/PerformancePkg/Dp_App/DpStrings.uni
Binary files differ
diff --git a/PerformancePkg/Dp_App/DpTrace.c b/PerformancePkg/Dp_App/DpTrace.c
index bdaa1d9256..b70e3a2208 100644
--- a/PerformancePkg/Dp_App/DpTrace.c
+++ b/PerformancePkg/Dp_App/DpTrace.c
@@ -612,11 +612,11 @@ ProcessPeims(
Duration = GetDuration (&Measurement);
ElapsedTime = DurationInMicroSeconds ( Duration ); // Calculate elapsed time in microseconds
if (ElapsedTime >= mInterestThreshold) {
- GetNameFromHandle ((EFI_HANDLE) Measurement.Handle); // Name placed in mGaugeString
+ // PEIM FILE Handle is the start address of its FFS file that contains its file guid.
PrintToken (STRING_TOKEN (STR_DP_PEIM_STAT2),
TIndex, // 1 based, Which measurement record is being printed
- Measurement.Handle,
- mGaugeString,
+ Measurement.Handle, // base address
+ Measurement.Handle, // file guid
ElapsedTime
);
}