From owner-svn-src-all@FreeBSD.ORG Thu Jan 15 07:48:39 2009 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 49B86106564A; Thu, 15 Jan 2009 07:48:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3916A8FC19; Thu, 15 Jan 2009 07:48:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n0F7mbJX068509; Thu, 15 Jan 2009 07:48:37 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n0F7mbAY068508; Thu, 15 Jan 2009 07:48:37 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200901150748.n0F7mbAY068508@svn.freebsd.org> From: Warner Losh Date: Thu, 15 Jan 2009 07:48:37 +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: r187293 - head/sys/mips/mips 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: Thu, 15 Jan 2009 07:48:39 -0000 Author: imp Date: Thu Jan 15 07:48:37 2009 New Revision: 187293 URL: http://svn.freebsd.org/changeset/base/187293 Log: Reverse order of dumpsys and cpu_idle_wakeup to reduce diffs to p4. Modified: head/sys/mips/mips/machdep.c Modified: head/sys/mips/mips/machdep.c ============================================================================== --- head/sys/mips/mips/machdep.c Thu Jan 15 07:45:40 2009 (r187292) +++ head/sys/mips/mips/machdep.c Thu Jan 15 07:48:37 2009 (r187293) @@ -418,16 +418,16 @@ cpu_idle(int busy) panic("ints disabled in idleproc!"); } -int -cpu_idle_wakeup(int cpu) +void +dumpsys(struct dumperinfo *di __unused) { - return (0); + printf("Kernel dumps not implemented on this architecture\n"); } -void -dumpsys(struct dumperinfo *di __unused) +int +cpu_idle_wakeup(int cpu) { - printf("Kernel dumps not implemented on this architecture\n"); + return (0); }