Module Name: src
Committed By: sborrill
Date: Fri Dec 11 09:37:10 UTC 2009
Modified Files:
src/sbin/raidctl [netbsd-5]: raidctl.c
Log Message:
Pull up the following revisions(s) (requested by tron in ticket #1191):
sbin/raidctl/raidctl.c: revision 1.43
Slight change to the wording of the parity map info: the parity is
"marked clean" after however much inactivity; it is *actually* clean
as soon as the component disks all do their thing (on the order of ms,
usually), just the same as before.
To generate a diff of this commit:
cvs rdiff -u -r1.39.4.2 -r1.39.4.3 src/sbin/raidctl/raidctl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/raidctl/raidctl.c
diff -u src/sbin/raidctl/raidctl.c:1.39.4.2 src/sbin/raidctl/raidctl.c:1.39.4.3
--- src/sbin/raidctl/raidctl.c:1.39.4.2 Thu Dec 10 22:59:16 2009
+++ src/sbin/raidctl/raidctl.c Fri Dec 11 09:37:09 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: raidctl.c,v 1.39.4.2 2009/12/10 22:59:16 snj Exp $ */
+/* $NetBSD: raidctl.c,v 1.39.4.3 2009/12/11 09:37:09 sborrill Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -39,7 +39,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: raidctl.c,v 1.39.4.2 2009/12/10 22:59:16 snj Exp $");
+__RCSID("$NetBSD: raidctl.c,v 1.39.4.3 2009/12/11 09:37:09 sborrill Exp $");
#endif
@@ -498,7 +498,7 @@
printf("raid%d: parity map enabled with %u regions of %s\n",
raidID, st.params.regions, srs);
- printf("raid%d: parity cleaned after %d intervals of"
+ printf("raid%d: regions marked clean after %d intervals of"
" %d.%03ds\n", raidID, st.params.cooldown,
st.params.tickms / 1000, st.params.tickms % 1000);
printf("raid%d: write/sync/clean counters "