Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/fs/nilfs Keep condvar wmesg's within 8-char limit



details:   https://anonhg.NetBSD.org/src/rev/0ce9d49a5bd8
branches:  trunk
changeset: 757030:0ce9d49a5bd8
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Aug 11 11:43:13 2010 +0000

description:
Keep condvar wmesg's within 8-char limit

diffstat:

 sys/fs/nilfs/nilfs_subr.c   |  6 +++---
 sys/fs/nilfs/nilfs_vfsops.c |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r fcd27e99fc30 -r 0ce9d49a5bd8 sys/fs/nilfs/nilfs_subr.c
--- a/sys/fs/nilfs/nilfs_subr.c Wed Aug 11 11:40:51 2010 +0000
+++ b/sys/fs/nilfs/nilfs_subr.c Wed Aug 11 11:43:13 2010 +0000
@@ -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);
diff -r fcd27e99fc30 -r 0ce9d49a5bd8 sys/fs/nilfs/nilfs_vfsops.c
--- a/sys/fs/nilfs/nilfs_vfsops.c       Wed Aug 11 11:40:51 2010 +0000
+++ b/sys/fs/nilfs/nilfs_vfsops.c       Wed Aug 11 11:43:13 2010 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index