From owner-svn-src-all@FreeBSD.ORG Tue May 18 05:12:55 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FC4A106566C; Tue, 18 May 2010 05:12:55 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3E26C8FC0C; Tue, 18 May 2010 05:12:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o4I5Ct1Z048758; Tue, 18 May 2010 05:12:55 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4I5CtwH048756; Tue, 18 May 2010 05:12:55 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201005180512.o4I5CtwH048756@svn.freebsd.org> From: Neel Natu Date: Tue, 18 May 2010 05:12:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208253 - head/sys/mips/sibyte X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 May 2010 05:12:55 -0000 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 #ifdef SMP +#include #include #endif @@ -347,6 +348,7 @@ platform_ipi_intrnum(void) struct cpu_group * platform_smp_topo(void) { + return (smp_topo_none()); }