diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
commit | 2e61cbb7f50878e738849ea4384118c13733f09c (patch) | |
tree | e87cf98a8f654158f3ba922ed4d31607b79c4944 /lkm/vinum | |
parent | 76b5366091f76c9bc73570149ef5055648fc2c39 (diff) |
Diffstat (limited to 'lkm/vinum')
-rw-r--r-- | lkm/vinum/COPYRIGHT | 2 | ||||
-rw-r--r-- | lkm/vinum/Makefile | 2 | ||||
-rw-r--r-- | lkm/vinum/config.c | 2 | ||||
-rw-r--r-- | lkm/vinum/interrupt.c | 2 | ||||
-rw-r--r-- | lkm/vinum/io.c | 2 | ||||
-rw-r--r-- | lkm/vinum/lock.c | 2 | ||||
-rwxr-xr-x | lkm/vinum/makestatetext | 2 | ||||
-rw-r--r-- | lkm/vinum/memory.c | 2 | ||||
-rw-r--r-- | lkm/vinum/parser.c | 2 | ||||
-rw-r--r-- | lkm/vinum/request.c | 2 | ||||
-rw-r--r-- | lkm/vinum/request.h | 2 | ||||
-rw-r--r-- | lkm/vinum/revive.c | 2 | ||||
-rw-r--r-- | lkm/vinum/state.c | 2 | ||||
-rw-r--r-- | lkm/vinum/statetexts.h | 2 | ||||
-rw-r--r-- | lkm/vinum/util.c | 2 | ||||
-rw-r--r-- | lkm/vinum/vinum.c | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumext.h | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumhdr.h | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumio.h | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumioctl.c | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumkw.h | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumstate.h | 2 | ||||
-rw-r--r-- | lkm/vinum/vinumvar.h | 2 |
23 files changed, 23 insertions, 23 deletions
diff --git a/lkm/vinum/COPYRIGHT b/lkm/vinum/COPYRIGHT index 4ee95f20ce5c..ed43ff1f54eb 100644 --- a/lkm/vinum/COPYRIGHT +++ b/lkm/vinum/COPYRIGHT @@ -33,5 +33,5 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: COPYRIGHT,v 1.1 1998/03/05 06:07:05 grog Exp grog $ + * $Id: COPYRIGHT,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ diff --git a/lkm/vinum/Makefile b/lkm/vinum/Makefile index f1f4bb76117a..28e6429ca1a8 100644 --- a/lkm/vinum/Makefile +++ b/lkm/vinum/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ +# $Id: Makefile,v 1.2 1998/09/28 04:21:20 grog Exp $ .PATH: ${.CURDIR}/../../sys/dev/ccd KMOD= vinum_mod diff --git a/lkm/vinum/config.c b/lkm/vinum/config.c index fd31c5e07c46..16a3b4e57338 100644 --- a/lkm/vinum/config.c +++ b/lkm/vinum/config.c @@ -44,7 +44,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: config.c,v 1.17 1998/08/14 04:49:26 grog Exp grog $ + * $Id: config.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define STATIC /* nothing while we're testing XXX */ diff --git a/lkm/vinum/interrupt.c b/lkm/vinum/interrupt.c index e7eb034faf4b..9b1b1039597d 100644 --- a/lkm/vinum/interrupt.c +++ b/lkm/vinum/interrupt.c @@ -35,7 +35,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: interrupt.c,v 1.1 1998/08/13 06:12:27 grog Exp grog $ + * $Id: interrupt.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/io.c b/lkm/vinum/io.c index a16a33a9e8bc..37c7040eaa90 100644 --- a/lkm/vinum/io.c +++ b/lkm/vinum/io.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: io.c,v 1.16 1998/08/10 23:47:21 grog Exp grog $ + * $Id: io.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define STATIC /* nothing while we're testing XXX */ diff --git a/lkm/vinum/lock.c b/lkm/vinum/lock.c index ed69649fccdc..937636476342 100644 --- a/lkm/vinum/lock.c +++ b/lkm/vinum/lock.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: lock.c,v 1.6 1998/07/28 06:32:57 grog Exp grog $ + * $Id: lock.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/makestatetext b/lkm/vinum/makestatetext index ca5eb2dc3c3d..3c39dd066544 100755 --- a/lkm/vinum/makestatetext +++ b/lkm/vinum/makestatetext @@ -1,6 +1,6 @@ #!/bin/sh # Make statetexts.h from vinumstate.h -# $Id: makestatetext,v 1.4 1998/03/13 05:36:16 grog Exp grog $ +# $Id: makestatetext,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ infile=vinumstate.h ofile=statetexts.h cat <COPYRIGHT > $ofile diff --git a/lkm/vinum/memory.c b/lkm/vinum/memory.c index 5dee671167b0..24b1c8960349 100644 --- a/lkm/vinum/memory.c +++ b/lkm/vinum/memory.c @@ -34,7 +34,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: memory.c,v 1.16 1998/08/08 04:43:22 grog Exp grog $ + * $Id: memory.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/parser.c b/lkm/vinum/parser.c index 9e7f791a7d14..1dc425ce4c64 100644 --- a/lkm/vinum/parser.c +++ b/lkm/vinum/parser.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: parser.c,v 1.11 1998/08/10 08:50:42 grog Exp grog $ + * $Id: parser.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* This file contains the parser for the configuration routines. It's used diff --git a/lkm/vinum/request.c b/lkm/vinum/request.c index 589eb3fac0ba..901b19582b9b 100644 --- a/lkm/vinum/request.c +++ b/lkm/vinum/request.c @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: request.c,v 1.17 1998/08/13 06:04:47 grog Exp grog $ + * $Id: request.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/request.h b/lkm/vinum/request.h index b4beccca9b42..66bdceaf130a 100644 --- a/lkm/vinum/request.h +++ b/lkm/vinum/request.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: request.h,v 1.10 1998/08/03 07:15:26 grog Exp grog $ + * $Id: request.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* Information needed to set up a transfer */ diff --git a/lkm/vinum/revive.c b/lkm/vinum/revive.c index 216dc4887d41..2e373b9fa53a 100644 --- a/lkm/vinum/revive.c +++ b/lkm/vinum/revive.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: revive.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ + * $Id: revive.c,v 1.2 1998/09/28 04:24:10 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/state.c b/lkm/vinum/state.c index 2ce2ed0c29e5..b01d23ffd806 100644 --- a/lkm/vinum/state.c +++ b/lkm/vinum/state.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: state.c,v 2.6 1998/08/19 08:04:47 grog Exp grog $ + * $Id: state.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL diff --git a/lkm/vinum/statetexts.h b/lkm/vinum/statetexts.h index b7ce4eb54bef..8205e9629433 100644 --- a/lkm/vinum/statetexts.h +++ b/lkm/vinum/statetexts.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: COPYRIGHT,v 1.1 1998/03/05 06:07:05 grog Exp grog $ + * $Id: statetexts.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* Created by ./makestatetext on Tue 4 Aug 15:53:16 CST 1998. Do not edit */ diff --git a/lkm/vinum/util.c b/lkm/vinum/util.c index 512140438fc9..84cfabcd1bba 100644 --- a/lkm/vinum/util.c +++ b/lkm/vinum/util.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: util.c,v 1.7 1998/08/07 09:23:10 grog Exp grog $ + * $Id: util.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* This file contains utility routines used both in kernel and user context */ diff --git a/lkm/vinum/vinum.c b/lkm/vinum/vinum.c index bffdf6d435d6..df224bfd36fd 100644 --- a/lkm/vinum/vinum.c +++ b/lkm/vinum/vinum.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinum.c,v 1.19 1998/08/13 05:24:02 grog Exp grog $ + * $Id: vinum.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define STATIC /* nothing while we're testing XXX */ diff --git a/lkm/vinum/vinumext.h b/lkm/vinum/vinumext.h index 4b7d5a01d642..049eee07c910 100644 --- a/lkm/vinum/vinumext.h +++ b/lkm/vinum/vinumext.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumext.h,v 1.14 1998/08/11 00:03:57 grog Exp grog $ + * $Id: vinumext.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* vinumext.h: external definitions */ diff --git a/lkm/vinum/vinumhdr.h b/lkm/vinum/vinumhdr.h index 22a856182396..1aeb36ce2a4d 100644 --- a/lkm/vinum/vinumhdr.h +++ b/lkm/vinum/vinumhdr.h @@ -36,7 +36,7 @@ */ /* Header files used by all modules */ -/* $Id: vinumhdr.h,v 1.7 1998/08/07 04:41:18 grog Exp grog $ */ +/* $Id: vinumhdr.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #ifdef KERNEL #define REALLYKERNEL diff --git a/lkm/vinum/vinumio.h b/lkm/vinum/vinumio.h index be79528a6db8..f2e835c12439 100644 --- a/lkm/vinum/vinumio.h +++ b/lkm/vinum/vinumio.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumio.h,v 1.10 1998/08/10 05:46:19 grog Exp grog $ + * $Id: vinumio.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define MAX_IOCTL_REPLY 256 diff --git a/lkm/vinum/vinumioctl.c b/lkm/vinum/vinumioctl.c index 6dbe3c6bf4d6..c5fa895d28ce 100644 --- a/lkm/vinum/vinumioctl.c +++ b/lkm/vinum/vinumioctl.c @@ -35,7 +35,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumioctl.c,v 1.1 1998/08/14 08:46:10 grog Exp grog $ + * $Id: vinumioctl.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define STATIC /* nothing while we're testing XXX */ diff --git a/lkm/vinum/vinumkw.h b/lkm/vinum/vinumkw.h index 1a81f37656f4..fe0fb99c04bb 100644 --- a/lkm/vinum/vinumkw.h +++ b/lkm/vinum/vinumkw.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumkw.h,v 1.7 1998/08/07 02:35:51 grog Exp grog $ + * $Id: vinumkw.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* Command keywords that vinum knows. These include both user-level diff --git a/lkm/vinum/vinumstate.h b/lkm/vinum/vinumstate.h index 0b07590b2cf6..78bec4e8881f 100644 --- a/lkm/vinum/vinumstate.h +++ b/lkm/vinum/vinumstate.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumstate.h,v 1.11 1998/08/04 06:22:49 grog Exp grog $ + * $Id: vinumstate.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* This file gets read by makestatetext to create text files diff --git a/lkm/vinum/vinumvar.h b/lkm/vinum/vinumvar.h index ca54f76aad02..2f72b1772b4d 100644 --- a/lkm/vinum/vinumvar.h +++ b/lkm/vinum/vinumvar.h @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumvar.h,v 1.15 1998/08/14 06:36:41 grog Exp grog $ + * $Id: vinumvar.h,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ /* XXX gdb can't find our global pointers, so use this kludge to |