diff options
author | bde <bde@FreeBSD.org> | 1997-09-07 13:49:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-09-07 13:49:56 +0000 |
commit | fc775e371133c2aa822367f169269142da8f1a45 (patch) | |
tree | 89605403e05fcab12e10f0891225847448ba00e8 | |
parent | 996bf127fa143c0b4235fc2a2d220a9b633cd3fa (diff) | |
download | FreeBSD-src-fc775e371133c2aa822367f169269142da8f1a45.zip FreeBSD-src-fc775e371133c2aa822367f169269142da8f1a45.tar.gz |
Removed vestiges of config-time "argument processing" configuration.
-rw-r--r-- | sys/conf/nfsswapkernel.c | 3 | ||||
-rw-r--r-- | sys/kern/vfs_export.c | 4 | ||||
-rw-r--r-- | sys/kern/vfs_subr.c | 4 | ||||
-rw-r--r-- | sys/miscfs/devfs/devfs_tree.c | 4 |
4 files changed, 7 insertions, 8 deletions
diff --git a/sys/conf/nfsswapkernel.c b/sys/conf/nfsswapkernel.c index aedf7ef..12722ff 100644 --- a/sys/conf/nfsswapkernel.c +++ b/sys/conf/nfsswapkernel.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)nfsswapvmunix.c 8.1 (Berkeley) 6/10/93 - * $Id: nfsswapkernel.c,v 1.3 1997/02/22 09:28:14 peter Exp $ + * $Id: nfsswapkernel.c,v 1.4 1997/09/07 12:56:37 bde Exp $ */ /* @@ -56,7 +56,6 @@ extern int nfs_mountroot(); int (*mountroot)() = nfs_mountroot; dev_t rootdev = NODEV; -dev_t argdev = NODEV; dev_t dumpdev = NODEV; struct nfs_diskless nfs_diskless = { diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index 5208346..fb71b96 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.98 1997/09/03 09:18:48 phk Exp $ + * $Id: vfs_subr.c,v 1.99 1997/09/03 13:29:41 phk Exp $ */ /* @@ -703,7 +703,7 @@ reassignbuf(bp, newvp) #ifndef DEVFS_ROOT /* * Create a vnode for a block device. - * Used for root filesystem, argdev, and swap areas. + * Used for root filesystem and swap areas. * Also used for memory file system special devices. */ int diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 5208346..fb71b96 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.98 1997/09/03 09:18:48 phk Exp $ + * $Id: vfs_subr.c,v 1.99 1997/09/03 13:29:41 phk Exp $ */ /* @@ -703,7 +703,7 @@ reassignbuf(bp, newvp) #ifndef DEVFS_ROOT /* * Create a vnode for a block device. - * Used for root filesystem, argdev, and swap areas. + * Used for root filesystem and swap areas. * Also used for memory file system special devices. */ int diff --git a/sys/miscfs/devfs/devfs_tree.c b/sys/miscfs/devfs/devfs_tree.c index 4121741..5d4290e 100644 --- a/sys/miscfs/devfs/devfs_tree.c +++ b/sys/miscfs/devfs/devfs_tree.c @@ -2,7 +2,7 @@ /* * Written by Julian Elischer (julian@DIALix.oz.au) * - * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_tree.c,v 1.37 1997/07/14 04:53:52 julian Exp $ + * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_tree.c,v 1.38 1997/08/26 17:17:52 julian Exp $ */ #include "opt_devfs.h" @@ -868,7 +868,7 @@ findbdev(dev_t dev, dn_p dir) /* * Create a vnode for a block device. - * Used for root filesystem, argdev, and swap areas. + * Used for root filesystem and swap areas. * Also used for memory file system special devices. */ |