From 127e6abf01a296ab71dadad14ef344dd99c7a4f9 Mon Sep 17 00:00:00 2001 From: "M. R. Miller" Date: Mon, 5 Aug 2019 22:04:27 -0700 Subject: [PATCH] Extend the time out to 5 seconds. 1 second is too short for processors with lots of cores and dual processor systems. --- Application/VerifyMsrE2/VerifyMsrE2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/VerifyMsrE2/VerifyMsrE2.c b/Application/VerifyMsrE2/VerifyMsrE2.c index 137e3cf..b0f1654 100644 --- a/Application/VerifyMsrE2/VerifyMsrE2.c +++ b/Application/VerifyMsrE2/VerifyMsrE2.c @@ -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;