NetBSD/sys/fs/msdosfs
chs c398ae9734 a smorgasbord of improvements to vnode locking and path lookup:
- LOCKPARENT is no longer relevant for lookup(), relookup() or VOP_LOOKUP().
   these now always return the parent vnode locked.  namei() works as before.
   lookup() and various other paths no longer acquire vnode locks in the
   wrong order via vrele().  fixes PR 32535.
   as a nice side effect, path lookup is also up to 25% faster.
 - the above allows us to get rid of PDIRUNLOCK.
 - also get rid of WANTPARENT (just use LOCKPARENT and unlock it).
 - remove an assumption in layer_node_find() that all file systems implement
   a recursive VOP_LOCK() (unionfs doesn't).
 - require that all file systems supply vfs_vptofh and vfs_fhtovp routines.
   fill in eopnotsupp() for file systems that don't support being exported
   and remove the checks for NULL.  (layerfs calls these without checking.)
 - in union_lookup1(), don't change refcounts in the ISDOTDOT case, just
   adjust which vnode is locked.  fixes PR 33374.
 - apply fixes for ufs_rename() from ufs_vnops.c rev. 1.61 to ext2fs_rename().
2006-12-09 16:11:50 +00:00
..
Makefile
TODO
bootsect.h When mounting an MSDOS fileysystem, do not require that bytes 252 and 2006-08-14 14:06:26 +00:00
bpb.h PR/35151: Christian Groessler: file size reported incorrectly for files > 2GB 2006-11-30 15:59:23 +00:00
denode.h Apply patch from PR kern/34583 sent by Rhialto, quoting him: 2006-09-22 17:45:21 +00:00
direntry.h
fat.h
files.msdosfs
msdosfs_conv.c
msdosfs_denode.c Support FAT filesystems on non-DEV_BSIZE media. 2006-11-25 12:17:30 +00:00
msdosfs_fat.c Support FAT filesystems on non-DEV_BSIZE media. 2006-11-25 12:17:30 +00:00
msdosfs_lookup.c a smorgasbord of improvements to vnode locking and path lookup: 2006-12-09 16:11:50 +00:00
msdosfs_vfsops.c Support FAT filesystems on non-DEV_BSIZE media. 2006-11-25 12:17:30 +00:00
msdosfs_vnops.c a smorgasbord of improvements to vnode locking and path lookup: 2006-12-09 16:11:50 +00:00
msdosfsmount.h Support FAT filesystems on non-DEV_BSIZE media. 2006-11-25 12:17:30 +00:00