diff options
author | obrien <obrien@FreeBSD.org> | 2005-05-20 16:23:15 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-05-20 16:23:15 +0000 |
commit | c7cb6eb3c22a65e93dd813233832abc937a345df (patch) | |
tree | 836f81d236714913ae2bf67778cdc85729814c2a /sys | |
parent | 1fe380f8488d90466b0f19b30c57f356e7716224 (diff) | |
download | FreeBSD-src-c7cb6eb3c22a65e93dd813233832abc937a345df.zip FreeBSD-src-c7cb6eb3c22a65e93dd813233832abc937a345df.tar.gz |
Fix mismerge in rev 1.226: wait 5 seconds as the comment documents,
not .5 seconds.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/mp_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c index d78e36b..9688e93 100644 --- a/sys/amd64/amd64/mp_machdep.c +++ b/sys/amd64/amd64/mp_machdep.c @@ -778,7 +778,7 @@ start_ap(int apic_id) DELAY(200); /* wait ~200uS */ /* Wait up to 5 seconds for it to start. */ - for (ms = 0; ms < 50; ms++) { + for (ms = 0; ms < 5000; ms++) { if (mp_naps > cpus) return 1; /* return SUCCESS */ DELAY(100000); |