Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 May 2010 05:12:55 +0000 (UTC)
From:      Neel Natu <neel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r208253 - head/sys/mips/sibyte
Message-ID:  <201005180512.o4I5CtwH048756@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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());
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005180512.o4I5CtwH048756>