Module Name:    src
Committed By:   pgoyette
Date:           Wed Aug 11 11:43:13 UTC 2010

Modified Files:
        src/sys/fs/nilfs: nilfs_subr.c nilfs_vfsops.c

Log Message:
Keep condvar wmesg's within 8-char limit


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/fs/nilfs/nilfs_subr.c
cvs rdiff -u -r1.3 -r1.4 src/sys/fs/nilfs/nilfs_vfsops.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/fs/nilfs/nilfs_subr.c
diff -u src/sys/fs/nilfs/nilfs_subr.c:1.6 src/sys/fs/nilfs/nilfs_subr.c:1.7
--- src/sys/fs/nilfs/nilfs_subr.c:1.6	Wed Jul 21 17:52:10 2010
+++ src/sys/fs/nilfs/nilfs_subr.c	Wed Aug 11 11:43:13 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_subr.c,v 1.6 2010/07/21 17:52:10 hannken Exp $ */
+/* $NetBSD: nilfs_subr.c,v 1.7 2010/08/11 11:43:13 pgoyette Exp $ */
 
 /*
  * Copyright (c) 2008, 2009 Reinoud Zandijk
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: nilfs_subr.c,v 1.6 2010/07/21 17:52:10 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nilfs_subr.c,v 1.7 2010/08/11 11:43:13 pgoyette Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -841,7 +841,7 @@
 
 	/* needed? */
 	mutex_init(&node->node_mutex, MUTEX_DEFAULT, IPL_NONE);
-	cv_init(&node->node_lock, "nilfs_nlk");
+	cv_init(&node->node_lock, "nilfsnlk");
 
 	/* initialise genfs */
 	genfs_node_init(nvp, &nilfs_genfsops);

Index: src/sys/fs/nilfs/nilfs_vfsops.c
diff -u src/sys/fs/nilfs/nilfs_vfsops.c:1.3 src/sys/fs/nilfs/nilfs_vfsops.c:1.4
--- src/sys/fs/nilfs/nilfs_vfsops.c:1.3	Thu Jun 24 13:03:10 2010
+++ src/sys/fs/nilfs/nilfs_vfsops.c	Wed Aug 11 11:43:13 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_vfsops.c,v 1.3 2010/06/24 13:03:10 hannken Exp $ */
+/* $NetBSD: nilfs_vfsops.c,v 1.4 2010/08/11 11:43:13 pgoyette Exp $ */
 
 /*
  * Copyright (c) 2008, 2009 Reinoud Zandijk
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: nilfs_vfsops.c,v 1.3 2010/06/24 13:03:10 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nilfs_vfsops.c,v 1.4 2010/08/11 11:43:13 pgoyette Exp $");
 #endif /* not lint */
 
 
@@ -632,7 +632,7 @@
 	nilfsdev->refcnt        = 1;
 	nilfsdev->devvp         = devvp;
 	nilfsdev->uncomitted_bl = 0;
-	cv_init(&nilfsdev->sync_cv, "nilfssync");
+	cv_init(&nilfsdev->sync_cv, "nilfsisyn");
 	STAILQ_INIT(&nilfsdev->mounts);
 
 	/* get our device's size */

Reply via email to