diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1998-03-01 22:46:53 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1998-03-01 22:46:53 +0000 |
| commit | 34bdbbd0de4e7ac29ca2f107fa68bc704a19521b (patch) | |
| tree | 0955e71756fb34bf7bac114488dd78275a29271d /sys/fs/procfs/procfs_vfsops.c | |
| parent | 53b86afb7df27ea596e0e4c56e388d9fa821598f (diff) | |
Notes
Diffstat (limited to 'sys/fs/procfs/procfs_vfsops.c')
| -rw-r--r-- | sys/fs/procfs/procfs_vfsops.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index 9379da674b3a..fddc277f6d86 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95 * - * $Id: procfs_vfsops.c,v 1.18 1997/12/08 01:06:24 sef Exp $ + * $Id: procfs_vfsops.c,v 1.19 1997/12/30 08:46:44 bde Exp $ */ /* @@ -193,6 +193,8 @@ procfs_init(vfsp) size_t, struct proc *)))eopnotsupp) #define procfs_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \ eopnotsupp) +#define procfs_vrele ((int (*) __P((struct mount *, struct vnode *))) \ + eopnotsupp) #define procfs_vptofh ((int (*) __P((struct vnode *, struct fid *)))einval) static struct vfsops procfs_vfsops = { @@ -204,6 +206,7 @@ static struct vfsops procfs_vfsops = { procfs_statfs, procfs_sync, procfs_vget, + procfs_vrele, procfs_fhtovp, procfs_vptofh, procfs_init, |
