svn commit: r274054 - head/sys/i386/xen

John Baldwin jhb at FreeBSD.org
Mon Nov 3 16:31:32 UTC 2014


Author: jhb
Date: Mon Nov  3 16:31:31 2014
New Revision: 274054
URL: https://svnweb.freebsd.org/changeset/base/274054

Log:
  Fix XEN kernel build.
  
  Pointy hat to:	jhb

Modified:
  head/sys/i386/xen/mp_machdep.c

Modified: head/sys/i386/xen/mp_machdep.c
==============================================================================
--- head/sys/i386/xen/mp_machdep.c	Mon Nov  3 16:01:44 2014	(r274053)
+++ head/sys/i386/xen/mp_machdep.c	Mon Nov  3 16:31:31 2014	(r274054)
@@ -604,7 +604,7 @@ init_secondary(void)
 #endif
 
 	/* set up FPU state on the AP */
-	npxinit();
+	npxinit(false);
 #if 0
 	/* A quick check from sanity claus */
 	if (PCPU_GET(apic_id) != lapic_id()) {


More information about the svn-src-all mailing list