Module Name:    src
Committed By:   mrg
Date:           Mon May  2 01:14:06 UTC 2011

Modified Files:
        src/sys/dev/raidframe: rf_engine.c

Log Message:
use a unique wchan identifier for node_queue_cv than the old default.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/raidframe/rf_engine.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/dev/raidframe/rf_engine.c
diff -u src/sys/dev/raidframe/rf_engine.c:1.44 src/sys/dev/raidframe/rf_engine.c:1.45
--- src/sys/dev/raidframe/rf_engine.c:1.44	Wed Apr 27 07:55:15 2011
+++ src/sys/dev/raidframe/rf_engine.c	Mon May  2 01:14:06 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_engine.c,v 1.44 2011/04/27 07:55:15 mrg Exp $	*/
+/*	$NetBSD: rf_engine.c,v 1.45 2011/05/02 01:14:06 mrg Exp $	*/
 /*
  * Copyright (c) 1995 Carnegie-Mellon University.
  * All rights reserved.
@@ -55,7 +55,7 @@
  ****************************************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_engine.c,v 1.44 2011/04/27 07:55:15 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_engine.c,v 1.45 2011/05/02 01:14:06 mrg Exp $");
 
 #include <sys/errno.h>
 
@@ -138,7 +138,7 @@
 	rf_init_cond2(raidPtr->iodone_cv, "raidiow");
 
 	rf_init_mutex2(raidPtr->node_queue_mutex, IPL_VM);
-	rf_init_cond2(raidPtr->node_queue_cv, "rfwcond");
+	rf_init_cond2(raidPtr->node_queue_cv, "rfnodeq");
 	raidPtr->node_queue = NULL;
 	raidPtr->dags_in_flight = 0;
 

Reply via email to