cvs commit: src/sys/kern src/sys/sys src/sys/vfs/nfs src/sys/vfs/ntfs src/sys/vfs/nwfs src/sys/vfs/smbfs

Matthew Dillon dillon at crater.dragonflybsd.org
Sat Sep 25 18:25:55 PDT 2004


dillon      2004/09/25 18:25:00 PDT

DragonFly src repository

  Modified files:
    sys/kern             vfs_cache.c 
    sys/sys              namecache.h vfsops.h 
    sys/vfs/nfs          nfs_vnops.c 
    sys/vfs/ntfs         ntfs_vnops.c 
    sys/vfs/nwfs         nwfs_vnops.c 
    sys/vfs/smbfs        smbfs_vnops.c 
  Log:
  VFS messaging/interfacing work stage 5/99.  Start work on the new
  namecache/lookup API.  The core of this API will be the concept of a
  'locked namespace' rather then a 'locked vnode' for namespace centric
  operations like CREATE, DELETE, and RENAME.   The namecache will no longer
  be optional for a VFS but instead will become centric to all kernel
  namespace operations.
  
  This commit is mostly non-functional.  It removes an extension I had made
  to VOP_LOOKUP/VOP_CACHEDLOOKUP and starts adding support functions for the
  new cache_nclookup() API.  The work being backed out was originally intended
  to shepard the new work, but the new interface is now so different (and far
  more simplified) then the original that it's actually better to create a
  new VOP for it instead of augmenting existing VOPs.
  
  Revision  Changes    Path
  1.26      +126 -13   src/sys/kern/vfs_cache.c
  1.8       +11 -6     src/sys/sys/namecache.h
  1.4       +3 -6      src/sys/sys/vfsops.h
  1.30      +1 -1      src/sys/vfs/nfs/nfs_vnops.c
  1.15      +1 -1      src/sys/vfs/ntfs/ntfs_vnops.c
  1.15      +1 -1      src/sys/vfs/nwfs/nwfs_vnops.c
  1.17      +1 -1      src/sys/vfs/smbfs/smbfs_vnops.c


http://www.dragonflybsd.org/cvsweb/src/sys/kern/vfs_cache.c.diff?r1=1.25&r2=1.26&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/sys/namecache.h.diff?r1=1.7&r2=1.8&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/sys/vfsops.h.diff?r1=1.3&r2=1.4&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/vfs/nfs/nfs_vnops.c.diff?r1=1.29&r2=1.30&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/vfs/ntfs/ntfs_vnops.c.diff?r1=1.14&r2=1.15&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/vfs/nwfs/nwfs_vnops.c.diff?r1=1.14&r2=1.15&f=u
http://www.dragonflybsd.org/cvsweb/src/sys/vfs/smbfs/smbfs_vnops.c.diff?r1=1.16&r2=1.17&f=u





More information about the Commits mailing list