Skip to content
This repository has been archived by the owner on May 17, 2020. It is now read-only.

Commit

Permalink
Extend the time out to 5 seconds. 1 second is too short for processor…
Browse files Browse the repository at this point in the history
…s with lots of cores and dual processor systems.
  • Loading branch information
M. R. Miller authored and vit9696 committed Aug 6, 2019
1 parent 57e81d9 commit 127e6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Application/VerifyMsrE2/VerifyMsrE2.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ UefiMain (

Print (L"Starting All APs to verify 0xE2 register...\n", Status);

Status = mMpServices->StartupAllAPs (mMpServices, ReadMsrE2, TRUE, NULL, 1000000, NULL, NULL);
Status = mMpServices->StartupAllAPs (mMpServices, ReadMsrE2, TRUE, NULL, 5e6, NULL, NULL);
if (EFI_ERROR (Status)) {
Print (L"Failed to StartupAllAPs - %r\n", Status);
return Status;
Expand Down

0 comments on commit 127e6ab

Please sign in to comment.