diff options
author | eivind <eivind@FreeBSD.org> | 1999-01-12 11:49:30 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-01-12 11:49:30 +0000 |
commit | 62a88388759b72eeaf40aa2c6ed2d146fea2e1db (patch) | |
tree | 8ffed145100159d4e80df884708df43277b879f7 /sys/miscfs/fdesc | |
parent | 99c0da083373067f3ff8dc214c50dd144faf722b (diff) | |
download | FreeBSD-src-62a88388759b72eeaf40aa2c6ed2d146fea2e1db.zip FreeBSD-src-62a88388759b72eeaf40aa2c6ed2d146fea2e1db.tar.gz |
Remove declarations for undefined functions and a couple of unused
enotsupp implementations.
Diffstat (limited to 'sys/miscfs/fdesc')
-rw-r--r-- | sys/miscfs/fdesc/fdesc_vfsops.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/miscfs/fdesc/fdesc_vfsops.c b/sys/miscfs/fdesc/fdesc_vfsops.c index de6f03d..881be49 100644 --- a/sys/miscfs/fdesc/fdesc_vfsops.c +++ b/sys/miscfs/fdesc/fdesc_vfsops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94 * - * $Id: fdesc_vfsops.c,v 1.15 1998/05/06 05:29:33 msmith Exp $ + * $Id: fdesc_vfsops.c,v 1.16 1998/09/07 13:17:00 bde Exp $ */ /* @@ -55,13 +55,8 @@ static MALLOC_DEFINE(M_FDESCMNT, "FDESC mount", "FDESC mount structure"); -static int fdesc_fhtovp __P((struct mount *mp, struct fid *fhp, - struct mbuf *nam, struct vnode **vpp, - int *exflagsp, struct ucred **credanonp)); static int fdesc_mount __P((struct mount *mp, char *path, caddr_t data, struct nameidata *ndp, struct proc *p)); -static int fdesc_quotactl __P((struct mount *mp, int cmd, uid_t uid, - caddr_t arg, struct proc *p)); static int fdesc_start __P((struct mount *mp, int flags, struct proc *p)); static int fdesc_unmount __P((struct mount *mp, int mntflags, struct proc *p)); @@ -69,9 +64,6 @@ static int fdesc_statfs __P((struct mount *mp, struct statfs *sbp, struct proc *p)); static int fdesc_sync __P((struct mount *mp, int waitfor, struct ucred *cred, struct proc *p)); -static int fdesc_vget __P((struct mount *mp, ino_t ino, - struct vnode **vpp)); -static int fdesc_vptofh __P((struct vnode *vp, struct fid *fhp)); /* * Mount the per-process file descriptors (/dev/fd) |