From owner-svn-src-all@FreeBSD.ORG Fri May 28 05:34:44 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 4149F1065680; Fri, 28 May 2010 05:34:44 +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 308278FC1D; Fri, 28 May 2010 05:34:44 +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 o4S5Yibu097231; Fri, 28 May 2010 05:34:44 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4S5Yi4p097229; Fri, 28 May 2010 05:34:44 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201005280534.o4S5Yi4p097229@svn.freebsd.org> From: Neel Natu Date: Fri, 28 May 2010 05:34:44 +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: r208608 - 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: Fri, 28 May 2010 05:34:44 -0000 Author: neel Date: Fri May 28 05:34:43 2010 New Revision: 208608 URL: http://svn.freebsd.org/changeset/base/208608 Log: Get rid of unused variable 'virtual_sys_start'. Modified: head/sys/mips/mips/pmap.c Modified: head/sys/mips/mips/pmap.c ============================================================================== --- head/sys/mips/mips/pmap.c Fri May 28 02:00:15 2010 (r208607) +++ head/sys/mips/mips/pmap.c Fri May 28 05:34:43 2010 (r208608) @@ -211,7 +211,6 @@ struct local_sysmaps { * bit mode this goes away. */ static struct local_sysmaps sysmap_lmem[MAXCPU]; -caddr_t virtual_sys_start = (caddr_t)0; #define PMAP_LMEM_MAP1(va, phys) \ int cpu; \ @@ -443,7 +442,7 @@ again: PMAP_LGMEM_LOCK_INIT(&sysmap_lmem[i]); } } - virtual_sys_start = (caddr_t)virtual_avail; + /* * Allocate segment table for the kernel */