[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.80 and 1.81

version 1.80, 2007/07/26 22:57:39 version 1.81, 2007/07/31 21:14:16
Line 65  MALLOC_JUSTDEFINE(M_KERNFSMNT, "kernfs m
Line 65  MALLOC_JUSTDEFINE(M_KERNFSMNT, "kernfs m
   
 dev_t rrootdev = NODEV;  dev_t rrootdev = NODEV;
   
 void    kernfs_init(void);  VFS_PROTOS(kernfs);
 void    kernfs_reinit(void);  
 void    kernfs_done(void);  
 void    kernfs_get_rrootdev(void);  void    kernfs_get_rrootdev(void);
 int     kernfs_mount(struct mount *, const char *, void *, size_t *,  
             struct nameidata *, struct lwp *);  
 int     kernfs_start(struct mount *, int, struct lwp *);  
 int     kernfs_unmount(struct mount *, int, struct lwp *);  
 int     kernfs_statvfs(struct mount *, struct statvfs *, struct lwp *);  
 int     kernfs_quotactl(struct mount *, int, uid_t, void *,  
                              struct lwp *);  
 int     kernfs_sync(struct mount *, int, kauth_cred_t, struct lwp *);  
 int     kernfs_vget(struct mount *, ino_t, struct vnode **);  
   
 void  void
 kernfs_init()  kernfs_init()
Line 126  kernfs_get_rrootdev()
Line 116  kernfs_get_rrootdev()
  */   */
 int  int
 kernfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len,  kernfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len,
     struct nameidata *ndp, struct lwp *l)      struct lwp *l)
 {  {
         int error = 0;          int error = 0;
         struct kernfs_mount *fmp;          struct kernfs_mount *fmp;

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81

CVSweb <webmaster@jp.NetBSD.org>