diff options
author | Dandan Bi <dandan.bi@intel.com> | 2018-07-19 11:26:21 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2018-07-26 13:37:58 +0800 |
commit | 05aba7e37b06d035b2fbae280c6b4e3f7d2f28ba (patch) | |
tree | 1d4ca71331edb1d8eea465920ebf39104141622e /ShellPkg/DynamicCommand | |
parent | a1583a877b9aba07facd567dfe4c72679ae3ca04 (diff) | |
download | edk2-05aba7e37b06d035b2fbae280c6b4e3f7d2f28ba.tar.gz edk2-05aba7e37b06d035b2fbae280c6b4e3f7d2f28ba.tar.bz2 edk2-05aba7e37b06d035b2fbae280c6b4e3f7d2f28ba.zip |
ShellPkg/Dp: Cumulate the perf data of "DB:Stop"
Currently DP tool will cumulate the performance data for
Driver Binding Support/Start, will count the number they
appears, and record the maximum/minimum time value...
Now add Driver Binding Stop performance data to the
cumulative data to keep consistency.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Jaben Carsey <jaben.carsey@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'ShellPkg/DynamicCommand')
-rw-r--r-- | ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c b/ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c index 213f6057c9..2c094b63c9 100644 --- a/ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c +++ b/ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c @@ -73,7 +73,8 @@ PERF_CUM_DATA CumData[] = { PERF_INIT_CUM_DATA (LOAD_IMAGE_TOK),
PERF_INIT_CUM_DATA (START_IMAGE_TOK),
PERF_INIT_CUM_DATA (DRIVERBINDING_START_TOK),
- PERF_INIT_CUM_DATA (DRIVERBINDING_SUPPORT_TOK)
+ PERF_INIT_CUM_DATA (DRIVERBINDING_SUPPORT_TOK),
+ PERF_INIT_CUM_DATA (DRIVERBINDING_STOP_TOK)
};
/// Number of items for which we are gathering cumulative statistics.
|