Module Name: src
Committed By: pooka
Date: Thu May 2 20:37:33 UTC 2013
Modified Files:
src/sys/rump/librump/rumpkern: locks.c
Log Message:
g/c stale comment
To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/rump/librump/rumpkern/locks.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/locks.c
diff -u src/sys/rump/librump/rumpkern/locks.c:1.61 src/sys/rump/librump/rumpkern/locks.c:1.62
--- src/sys/rump/librump/rumpkern/locks.c:1.61 Thu May 2 20:33:54 2013
+++ src/sys/rump/librump/rumpkern/locks.c Thu May 2 20:37:32 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: locks.c,v 1.61 2013/05/02 20:33:54 pooka Exp $ */
+/* $NetBSD: locks.c,v 1.62 2013/05/02 20:37:32 pooka Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.61 2013/05/02 20:33:54 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.62 2013/05/02 20:37:32 pooka Exp $");
#include <sys/param.h>
#include <sys/kmem.h>
@@ -113,7 +113,6 @@ mutex_init(kmutex_t *mtx, kmutex_type_t
isspin = 1;
}
- /* spin mutex support needs some cpu scheduler rework */
if (isspin)
ruflags |= RUMPUSER_MTX_SPIN;
rumpuser_mutex_init((struct rumpuser_mtx **)mtx, ruflags);