svn commit: r221686 - user/avg/xcpu/sys/amd64/amd64

Andriy Gapon avg at FreeBSD.org
Mon May 9 07:11:36 UTC 2011


Author: avg
Date: Mon May  9 07:11:35 2011
New Revision: 221686
URL: http://svn.freebsd.org/changeset/base/221686

Log:
  increase how long we wait for BSP to become active, amd64 only

Modified:
  user/avg/xcpu/sys/amd64/amd64/vm_machdep.c

Modified: user/avg/xcpu/sys/amd64/amd64/vm_machdep.c
==============================================================================
--- user/avg/xcpu/sys/amd64/amd64/vm_machdep.c	Mon May  9 07:11:01 2011	(r221685)
+++ user/avg/xcpu/sys/amd64/amd64/vm_machdep.c	Mon May  9 07:11:35 2011	(r221686)
@@ -548,7 +548,7 @@ cpu_reset()
 			cpustop_hook = cpu_reset_proxy;
 
 			cnt = 0;
-			while (cpu_reset_proxy_active == 0 && cnt < 10000000)
+			while (cpu_reset_proxy_active == 0 && cnt < 100000000)
 				cnt++;	/* Wait for BSP to announce restart */
 			if (cpu_reset_proxy_active == 0)
 				printf("cpu_reset: Failed to restart BSP\n");


More information about the svn-src-user mailing list