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());
 }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to