[BACK]Return to kernfs_vfsops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / miscfs / kernfs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/miscfs/kernfs/kernfs_vfsops.c between version 1.68 and 1.69

version 1.68, 2005/08/30 20:08:01 version 1.69, 2005/09/23 12:10:33
Line 77  int kernfs_quotactl(struct mount *, int,
Line 77  int kernfs_quotactl(struct mount *, int,
                              struct proc *);                               struct proc *);
 int     kernfs_sync(struct mount *, int, struct ucred *, struct proc *);  int     kernfs_sync(struct mount *, int, struct ucred *, struct proc *);
 int     kernfs_vget(struct mount *, ino_t, struct vnode **);  int     kernfs_vget(struct mount *, ino_t, struct vnode **);
 int     kernfs_fhtovp(struct mount *, struct fid *, struct vnode **);  
 int     kernfs_checkexp(struct mount *, struct mbuf *, int *,  
                            struct ucred **);  
 int     kernfs_vptofh(struct vnode *, struct fid *);  
   
 void  void
 kernfs_init()  kernfs_init()
Line 276  kernfs_vget(mp, ino, vpp)
Line 272  kernfs_vget(mp, ino, vpp)
         return (EOPNOTSUPP);          return (EOPNOTSUPP);
 }  }
   
 /*ARGSUSED*/  
 int  
 kernfs_fhtovp(mp, fhp, vpp)  
         struct mount *mp;  
         struct fid *fhp;  
         struct vnode **vpp;  
 {  
   
         return (EOPNOTSUPP);  
 }  
   
 /*ARGSUSED*/  
 int  
 kernfs_checkexp(mp, mb, what, anon)  
         struct mount *mp;  
         struct mbuf *mb;  
         int *what;  
         struct ucred **anon;  
 {  
   
         return (EOPNOTSUPP);  
 }  
   
 /*ARGSUSED*/  
 int  
 kernfs_vptofh(vp, fhp)  
         struct vnode *vp;  
         struct fid *fhp;  
 {  
   
         return (EOPNOTSUPP);  
 }  
   
 SYSCTL_SETUP(sysctl_vfs_kernfs_setup, "sysctl vfs.kern subtree setup")  SYSCTL_SETUP(sysctl_vfs_kernfs_setup, "sysctl vfs.kern subtree setup")
 {  {
   
Line 347  struct vfsops kernfs_vfsops = {
Line 310  struct vfsops kernfs_vfsops = {
         kernfs_statvfs,          kernfs_statvfs,
         kernfs_sync,          kernfs_sync,
         kernfs_vget,          kernfs_vget,
         kernfs_fhtovp,          NULL,                           /* vfs_fhtovp */
         kernfs_vptofh,          NULL,                           /* vfs_vptofh */
         kernfs_init,          kernfs_init,
         kernfs_reinit,          kernfs_reinit,
         kernfs_done,          kernfs_done,
         NULL,  
         NULL,                           /* vfs_mountroot */          NULL,                           /* vfs_mountroot */
         kernfs_checkexp,  
         (int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,          (int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
         vfs_stdextattrctl,          vfs_stdextattrctl,
         kernfs_vnodeopv_descs,          kernfs_vnodeopv_descs,

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69

CVSweb <webmaster@jp.NetBSD.org>