Module Name:    src
Committed By:   pooka
Date:           Sun Apr 28 23:21:00 UTC 2013

Modified Files:
        src/sys/rump/librump/rumpkern: vm.c

Log Message:
Appearances count: spell "IPL_NONE" correctly.


To generate a diff of this commit:
cvs rdiff -u -r1.139 -r1.140 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.139 src/sys/rump/librump/rumpkern/vm.c:1.140
--- src/sys/rump/librump/rumpkern/vm.c:1.139	Sun Apr 28 13:17:25 2013
+++ src/sys/rump/librump/rumpkern/vm.c	Sun Apr 28 23:21:00 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: vm.c,v 1.139 2013/04/28 13:17:25 pooka Exp $	*/
+/*	$NetBSD: vm.c,v 1.140 2013/04/28 23:21:00 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007-2011 Antti Kantee.  All Rights Reserved.
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.139 2013/04/28 13:17:25 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.140 2013/04/28 23:21:00 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -335,11 +335,11 @@ uvm_init(void)
 #undef FAKE_PAGE_SHIFT
 #endif
 
-	mutex_init(&pagermtx, MUTEX_DEFAULT, 0);
-	mutex_init(&uvm_pageqlock, MUTEX_DEFAULT, 0);
-	mutex_init(&uvm_swap_data_lock, MUTEX_DEFAULT, 0);
+	mutex_init(&pagermtx, MUTEX_DEFAULT, IPL_NONE);
+	mutex_init(&uvm_pageqlock, MUTEX_DEFAULT, IPL_NONE);
+	mutex_init(&uvm_swap_data_lock, MUTEX_DEFAULT, IPL_NONE);
 
-	mutex_init(&pdaemonmtx, MUTEX_DEFAULT, 0);
+	mutex_init(&pdaemonmtx, MUTEX_DEFAULT, IPL_NONE);
 	cv_init(&pdaemoncv, "pdaemon");
 	cv_init(&oomwait, "oomwait");
 

Reply via email to