svn commit: r208253 - head/sys/mips/sibyte

Neel Natu neel at FreeBSD.org
Tue May 18 05:12:55 UTC 2010


Author: neel
Date: Tue May 18 05:12:54 2010
New Revision: 208253
URL: http://svn.freebsd.org/changeset/base/208253

Log:
  Fix Sibyte SMP kernel breakage caused by r208249.
  
  We need to include the header file that provides declaration of the
  smp_topo_none() function.

Modified:
  head/sys/mips/sibyte/sb_machdep.c

Modified: head/sys/mips/sibyte/sb_machdep.c
==============================================================================
--- head/sys/mips/sibyte/sb_machdep.c	Tue May 18 04:21:50 2010	(r208252)
+++ head/sys/mips/sibyte/sb_machdep.c	Tue May 18 05:12:54 2010	(r208253)
@@ -76,6 +76,7 @@ __FBSDID("$FreeBSD$");
 #include <machine/vmparam.h>
 
 #ifdef SMP
+#include <sys/smp.h>
 #include <machine/smp.h>
 #endif
 
@@ -347,6 +348,7 @@ platform_ipi_intrnum(void)
 struct cpu_group *
 platform_smp_topo(void)
 {
+
 	return (smp_topo_none());
 }
 


More information about the svn-src-all mailing list