diff options
author | assar <assar@cvs.openbsd.org> | 2000-02-07 04:57:20 +0000 |
---|---|---|
committer | assar <assar@cvs.openbsd.org> | 2000-02-07 04:57:20 +0000 |
commit | 6f7e6bffc9d5d686eb1bdf9b027266f64db28754 (patch) | |
tree | 1b456f9a4be5902545c6b6f0805e173ab4dc3195 /sys/miscfs/procfs/procfs_vfsops.c | |
parent | 3510e94919e26ce8c81fffcb220fc932c7d4aeb3 (diff) |
update to use new checkexp vfs operation
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
-rw-r--r-- | sys/miscfs/procfs/procfs_vfsops.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index 618007642f6..5e997b87abf 100644 --- a/sys/miscfs/procfs/procfs_vfsops.c +++ b/sys/miscfs/procfs/procfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procfs_vfsops.c,v 1.10 1999/05/31 17:34:50 millert Exp $ */ +/* $OpenBSD: procfs_vfsops.c,v 1.11 2000/02/07 04:57:16 assar Exp $ */ /* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */ /* @@ -184,7 +184,7 @@ procfs_statfs(mp, sbp, p) struct proc *)))nullop) #define procfs_fhtovp ((int (*) __P((struct mount *, struct fid *, \ - struct mbuf *, struct vnode **, int *, struct ucred **)))eopnotsupp) + struct vnode **)))eopnotsupp) #define procfs_quotactl ((int (*) __P((struct mount *, int, uid_t, caddr_t, \ struct proc *)))eopnotsupp) #define procfs_sysctl ((int (*) __P((int *, u_int, void *, size_t *, void *, \ @@ -192,6 +192,8 @@ procfs_statfs(mp, sbp, p) #define procfs_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \ eopnotsupp) #define procfs_vptofh ((int (*) __P((struct vnode *, struct fid *)))eopnotsupp) +#define procfs_checkexp ((int (*) __P((struct mount *, struct mbuf *, \ + int *, struct ucred **)))eopnotsupp) struct vfsops procfs_vfsops = { procfs_mount, @@ -205,5 +207,6 @@ struct vfsops procfs_vfsops = { procfs_fhtovp, procfs_vptofh, procfs_init, - procfs_sysctl + procfs_sysctl, + procfs_checkexp }; |