diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-12-14 19:04:09 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-14 19:04:09 +0000 |
| commit | a899362e406d7565515ad8ef617dabc7248a8ebe (patch) | |
| tree | 7633e3d8108b2c3856b4d3f2b2697578efca0bc0 | |
| parent | e9fc6a73db114ac2aedf78b2cb7bca5114a0fc74 (diff) | |
Notes
| -rw-r--r-- | sys/miscfs/devfs/devfs_proto.h | 1 | ||||
| -rw-r--r-- | sys/miscfs/devfs/devfs_vfsops.c | 3 | ||||
| -rw-r--r-- | sys/miscfs/devfs/devfs_vnops.c | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/sys/miscfs/devfs/devfs_proto.h b/sys/miscfs/devfs/devfs_proto.h index ad82e45ae3b6..92bdb17de742 100644 --- a/sys/miscfs/devfs/devfs_proto.h +++ b/sys/miscfs/devfs/devfs_proto.h @@ -16,5 +16,6 @@ int devfs_vntodn(struct vnode *vn_p, dn_p *dn_pp) /*proto*/; int devfs_dntovn(dn_p dnp, struct vnode **vn_pp) /*proto*/; int dev_add_entry(char *name, dn_p parent, int type, union typeinfo *by, devnm_p *nm_pp) /*proto*/ ; int devfs_mount( struct mount *mp, char *path, caddr_t data, struct nameidata *ndp, struct proc *p) /*proto*/; +void devfs_dropvnode(dn_p dnp) /*proto*/; /* THIS FILE PRODUCED AUTOMATICALLY */ /* DO NOT EDIT (see reproto.sh) */ diff --git a/sys/miscfs/devfs/devfs_vfsops.c b/sys/miscfs/devfs/devfs_vfsops.c index f76822cd2377..2da45679dd15 100644 --- a/sys/miscfs/devfs/devfs_vfsops.c +++ b/sys/miscfs/devfs/devfs_vfsops.c @@ -1,7 +1,7 @@ /* * Written by Julian Elischer (julian@DIALix.oz.au) * - * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vfsops.c,v 1.6 1995/09/07 06:01:35 julian Exp $ + * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vfsops.c,v 1.7 1995/12/14 09:52:55 phk Exp $ * * */ @@ -20,6 +20,7 @@ #include "devfsdefs.h" static int devfs_statfs( struct mount *mp, struct statfs *sbp, struct proc *p); +static int mountdevfs( struct mount *mp, struct proc *p); static int devfs_init(void) diff --git a/sys/miscfs/devfs/devfs_vnops.c b/sys/miscfs/devfs/devfs_vnops.c index b27aed2edea6..e7ef14f2cb6b 100644 --- a/sys/miscfs/devfs/devfs_vnops.c +++ b/sys/miscfs/devfs/devfs_vnops.c @@ -1,7 +1,7 @@ /* * Written by Julian Elischer (julian@DIALix.oz.au) * - * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vnops.c,v 1.16 1995/11/09 08:16:50 bde Exp $ + * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vnops.c,v 1.17 1995/12/14 09:52:56 phk Exp $ * * symlinks can wait 'til later. */ @@ -1617,7 +1617,7 @@ devfs_nullop(void *junk) } -void devfs_dropvnode(dn_p dnp) +void devfs_dropvnode(dn_p dnp) /*proto*/ { struct vnode *vn_p; |
