From owner-svn-src-head@FreeBSD.ORG Thu Feb 21 17:54:15 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 60623FD1; Thu, 21 Feb 2013 17:54:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5365AB38; Thu, 21 Feb 2013 17:54:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1LHsFOB012321; Thu, 21 Feb 2013 17:54:15 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1LHsFup012320; Thu, 21 Feb 2013 17:54:15 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201302211754.r1LHsFup012320@svn.freebsd.org> From: Warner Losh Date: Thu, 21 Feb 2013 17:54:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r247110 - head/sys/sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2013 17:54:15 -0000 Author: imp Date: Thu Feb 21 17:54:14 2013 New Revision: 247110 URL: http://svnweb.freebsd.org/changeset/base/247110 Log: splsoftvm() is no longer in the tree. gc. Modified: head/sys/sys/systm.h Modified: head/sys/sys/systm.h ============================================================================== --- head/sys/sys/systm.h Thu Feb 21 17:50:21 2013 (r247109) +++ head/sys/sys/systm.h Thu Feb 21 17:54:14 2013 (r247110) @@ -330,7 +330,6 @@ static __inline intrmask_t splclock(void static __inline intrmask_t splhigh(void) { return 0; } static __inline intrmask_t splimp(void) { return 0; } static __inline intrmask_t splnet(void) { return 0; } -static __inline intrmask_t splsoftvm(void) { return 0; } static __inline intrmask_t spltty(void) { return 0; } static __inline intrmask_t splvm(void) { return 0; } static __inline void splx(intrmask_t ipl __unused) { return; }