[BACK]Return to advnops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / adosfs

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

Diff for /src/sys/fs/adosfs/advnops.c between version 1.25 and 1.26

version 1.25, 2007/10/08 18:04:02 version 1.26, 2007/11/26 19:01:41
Line 155  adosfs_getattr(v)
Line 155  adosfs_getattr(v)
                 struct vnode *a_vp;                  struct vnode *a_vp;
                 struct vattr *a_vap;                  struct vattr *a_vap;
                 kauth_cred_t a_cred;                  kauth_cred_t a_cred;
                 struct lwp *a_l;  
         } */ *sp = v;          } */ *sp = v;
         struct vattr *vap;          struct vattr *vap;
         struct adosfsmount *amp;          struct adosfsmount *amp;
Line 777  adosfs_access(v)
Line 776  adosfs_access(v)
                 struct vnode *a_vp;                  struct vnode *a_vp;
                 int  a_mode;                  int  a_mode;
                 kauth_cred_t a_cred;                  kauth_cred_t a_cred;
                 struct lwp *a_l;  
         } */ *sp = v;          } */ *sp = v;
         struct anode *ap;          struct anode *ap;
         struct vnode *vp = sp->a_vp;          struct vnode *vp = sp->a_vp;
Line 849  adosfs_inactive(v)
Line 847  adosfs_inactive(v)
 {  {
         struct vop_inactive_args /* {          struct vop_inactive_args /* {
                 struct vnode *a_vp;                  struct vnode *a_vp;
                 struct lwp *a_l;  
         } */ *sp = v;          } */ *sp = v;
         struct vnode *vp = sp->a_vp;          struct vnode *vp = sp->a_vp;
         struct lwp *l = sp->a_l;          struct lwp *l = curlwp;
 #ifdef ADOSFS_DIAGNOSTIC  #ifdef ADOSFS_DIAGNOSTIC
         advopprint(sp);          advopprint(sp);
 #endif  #endif

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>