diff options
author | Chu, Maggie <maggie.chu@intel.com> | 2018-12-25 13:54:25 +0800 |
---|---|---|
committer | Eric Dong <eric.dong@intel.com> | 2019-01-08 09:53:21 +0800 |
commit | 4ec00f82edc845548a2000fe514c6898932b8c95 (patch) | |
tree | 428d1de61bcaecc9cd639a3701e6c4e1244c28e8 /SecurityPkg | |
parent | 7423ba9d499bb0049c5aa327abf6da888dcaba56 (diff) | |
download | edk2-4ec00f82edc845548a2000fe514c6898932b8c95.tar.gz edk2-4ec00f82edc845548a2000fe514c6898932b8c95.tar.bz2 edk2-4ec00f82edc845548a2000fe514c6898932b8c95.zip |
SecurityPkg: Incorrect warning message for Opal admin revert action
https://bugzilla.tianocore.org/show_bug.cgi?id=1421
"revert action will take long time..." warning should be removed
from pop up message when keep user data selected.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Maggie Chu <maggie.chu@intel.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
Diffstat (limited to 'SecurityPkg')
-rw-r--r-- | SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c b/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c index e3f5056953..38268539fb 100644 --- a/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c +++ b/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c @@ -1537,7 +1537,8 @@ ProcessOpalRequestRevert ( PopUpString = OpalGetPopUpString (Dev, RequestString);
- if (Dev->OpalDisk.EstimateTimeCost > MAX_ACCEPTABLE_REVERTING_TIME) {
+ if ((!KeepUserData) &&
+ (Dev->OpalDisk.EstimateTimeCost > MAX_ACCEPTABLE_REVERTING_TIME)) {
BufferSize = StrSize (L"Warning: Revert action will take about ####### seconds, DO NOT power off system during the revert action!");
PopUpString2 = AllocateZeroPool (BufferSize);
ASSERT (PopUpString2 != NULL);
|