Module Name: src
Committed By: pooka
Date: Mon Aug 3 23:32:06 UTC 2009
Modified Files:
src/sys/rump/librump/rumpkern: vm.c
Log Message:
g/c cachepgmtx, i have no idea what it was supposed to be useful for.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/rump/librump/rumpkern/vm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/vm.c
diff -u src/sys/rump/librump/rumpkern/vm.c:1.59 src/sys/rump/librump/rumpkern/vm.c:1.60
--- src/sys/rump/librump/rumpkern/vm.c:1.59 Mon Aug 3 17:10:51 2009
+++ src/sys/rump/librump/rumpkern/vm.c Mon Aug 3 23:32:06 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: vm.c,v 1.59 2009/08/03 17:10:51 pooka Exp $ */
+/* $NetBSD: vm.c,v 1.60 2009/08/03 23:32:06 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.59 2009/08/03 17:10:51 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.60 2009/08/03 23:32:06 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -251,8 +251,6 @@
* Misc routines
*/
-static kmutex_t cachepgmtx;
-
void
rumpvm_init(void)
{
@@ -263,7 +261,6 @@
mutex_init(&rvamtx, MUTEX_DEFAULT, 0);
mutex_init(&uvm_pageqlock, MUTEX_DEFAULT, 0);
- mutex_init(&cachepgmtx, MUTEX_DEFAULT, 0);
kernel_map->pmap = pmap_kernel();
callback_head_init(&kernel_map_store.vmk_reclaim_callback, IPL_VM);