Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Keep condvar wmesg within 8-char limit
details: https://anonhg.NetBSD.org/src/rev/791b4f862d11
branches: trunk
changeset: 757028:791b4f862d11
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Wed Aug 11 11:32:58 2010 +0000
description:
Keep condvar wmesg within 8-char limit
diffstat:
sys/arch/xen/xen/balloon.c | 6 +++---
sys/dev/isa/fd.c | 6 +++---
sys/dev/tprof/tprof.c | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diffs (81 lines):
diff -r cf0f831f3df1 -r 791b4f862d11 sys/arch/xen/xen/balloon.c
--- a/sys/arch/xen/xen/balloon.c Wed Aug 11 11:31:45 2010 +0000
+++ b/sys/arch/xen/xen/balloon.c Wed Aug 11 11:32:58 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: balloon.c,v 1.4 2010/07/10 11:20:48 cherry Exp $ */
+/* $NetBSD: balloon.c,v 1.5 2010/08/11 11:32:58 pgoyette Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -55,7 +55,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: balloon.c,v 1.4 2010/07/10 11:20:48 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: balloon.c,v 1.5 2010/08/11 11:32:58 pgoyette Exp $");
#include <sys/inttypes.h>
#include <sys/param.h>
@@ -707,7 +707,7 @@
/* Setup flaglocks, condvars et. al */
mutex_init(&balloon_conf.flaglock, MUTEX_DEFAULT, IPL_NONE);
mutex_init(&balloon_conf.tgtlock, MUTEX_DEFAULT, IPL_HIGH);
- cv_init(&balloon_conf.cv_memchanged, "ballooning");
+ cv_init(&balloon_conf.cv_memchanged, "balloon");
SLIST_INIT(&balloon_conf.balloon_page_entries);
balloon_conf.balloon_num_page_entries = 0;
diff -r cf0f831f3df1 -r 791b4f862d11 sys/dev/isa/fd.c
--- a/sys/dev/isa/fd.c Wed Aug 11 11:31:45 2010 +0000
+++ b/sys/dev/isa/fd.c Wed Aug 11 11:32:58 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fd.c,v 1.97 2010/08/08 18:24:34 chs Exp $ */
+/* $NetBSD: fd.c,v 1.98 2010/08/11 11:35:08 pgoyette Exp $ */
/*-
* Copyright (c) 1998, 2003, 2008 The NetBSD Foundation, Inc.
@@ -81,7 +81,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.97 2010/08/08 18:24:34 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.98 2010/08/11 11:35:08 pgoyette Exp $");
#include "rnd.h"
#include "opt_ddb.h"
@@ -355,7 +355,7 @@
fdcattach(struct fdc_softc *fdc)
{
mutex_init(&fdc->sc_mtx, MUTEX_DEFAULT, IPL_BIO);
- cv_init(&fdc->sc_cv, "fdcwakeup");
+ cv_init(&fdc->sc_cv, "fdcwake");
callout_init(&fdc->sc_timo_ch, 0);
callout_init(&fdc->sc_intr_ch, 0);
diff -r cf0f831f3df1 -r 791b4f862d11 sys/dev/tprof/tprof.c
--- a/sys/dev/tprof/tprof.c Wed Aug 11 11:31:45 2010 +0000
+++ b/sys/dev/tprof/tprof.c Wed Aug 11 11:32:58 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tprof.c,v 1.6 2009/03/13 11:06:26 yamt Exp $ */
+/* $NetBSD: tprof.c,v 1.7 2010/08/11 11:36:02 pgoyette Exp $ */
/*-
* Copyright (c)2008,2009 YAMAMOTO Takashi,
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.6 2009/03/13 11:06:26 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.7 2010/08/11 11:36:02 pgoyette Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -667,7 +667,7 @@
mutex_init(&tprof_reader_lock, MUTEX_DEFAULT, IPL_NONE);
mutex_init(&tprof_startstop_lock, MUTEX_DEFAULT, IPL_NONE);
cv_init(&tprof_cv, "tprof");
- cv_init(&tprof_reader_cv, "tprofread");
+ cv_init(&tprof_reader_cv, "tprof_rd");
STAILQ_INIT(&tprof_list);
}
Home |
Main Index |
Thread Index |
Old Index