diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-12-17 21:14:36 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-12-17 21:14:36 +0000 |
commit | b8dce649f17f6608e7550dc4d6da9d2006cf0db5 (patch) | |
tree | 0abc9dfd2498cac032fdc78b264f4351548fce5a /sys/nfsclient/nfsmount.h | |
parent | 3ac9f819ae6220840810e456696e197eb69712ec (diff) |
Staticize.
Notes
Notes:
svn path=/head/; revision=12911
Diffstat (limited to 'sys/nfsclient/nfsmount.h')
-rw-r--r-- | sys/nfsclient/nfsmount.h | 49 |
1 files changed, 1 insertions, 48 deletions
diff --git a/sys/nfsclient/nfsmount.h b/sys/nfsclient/nfsmount.h index 5bfcab03c291..1bd71c5219cb 100644 --- a/sys/nfsclient/nfsmount.h +++ b/sys/nfsclient/nfsmount.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93 - * $Id: nfsmount.h,v 1.5 1995/06/27 11:06:56 dfr Exp $ + * $Id: nfsmount.h,v 1.6 1995/11/21 12:54:40 bde Exp $ */ #ifndef _NFS_NFSMOUNT_H_ @@ -91,51 +91,4 @@ struct nfsmount { #define VFSTONFS(mp) ((struct nfsmount *)((mp)->mnt_data)) #endif /* KERNEL */ -/* - * Prototypes for NFS mount operations - */ -int nfs_mount __P(( - struct mount *mp, - char *path, - caddr_t data, - struct nameidata *ndp, - struct proc *p)); -int nfs_start __P(( - struct mount *mp, - int flags, - struct proc *p)); -int nfs_unmount __P(( - struct mount *mp, - int mntflags, - struct proc *p)); -int nfs_root __P(( - struct mount *mp, - struct vnode **vpp)); -int nfs_quotactl __P(( - struct mount *mp, - int cmds, - uid_t uid, - caddr_t arg, - struct proc *p)); -int nfs_statfs __P(( - struct mount *mp, - struct statfs *sbp, - struct proc *p)); -int nfs_sync __P(( - struct mount *mp, - int waitfor, - struct ucred *cred, - struct proc *p)); -int nfs_fhtovp __P(( - struct mount *mp, - struct fid *fhp, - struct mbuf *nam, - struct vnode **vpp, - int *exflagsp, - struct ucred **credanonp)); -int nfs_vptofh __P(( - struct vnode *vp, - struct fid *fhp)); -int nfs_init __P((void)); - #endif |