From c8dddf0d55bea8048ef77fe997e4327bef793677 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Fri, 20 May 2005 16:25:08 +0000 Subject: [PATCH] Adjust the start_ap delay to match i386. --- sys/amd64/amd64/mp_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c index 9688e936591..bf3486ba479 100644 --- a/sys/amd64/amd64/mp_machdep.c +++ b/sys/amd64/amd64/mp_machdep.c @@ -781,7 +781,7 @@ start_ap(int apic_id) for (ms = 0; ms < 5000; ms++) { if (mp_naps > cpus) return 1; /* return SUCCESS */ - DELAY(100000); + DELAY(1000); } return 0; /* return FAILURE */ }