summaryrefslogtreecommitdiffstats
path: root/sys/ntfs/ntfs_inode.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* spellingjsg2021-03-111-2/+2
|
* More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller typeguenther2013-05-301-5/+5
| | | | internally, only using ino_t in the VFS layer APIs: vget, readdir, getattr
* Constrain the amount of kernel memory used by NTFS. Keep a small cache ofjsing2013-01-181-1/+4
| | | | | | | | | | loaded ntnodes and once the maximum is reached, unload the least recently used ntnode before loading a new one. This avoids leaving large data structures hanging around, which only get cleaned up when the vnode is reclaimed. Additionally, the buffer cache should contain the data needed to reload the ntnode. ok beck@
* - remove super-obvious comments from vnodeop_entries[]jasper2009-08-131-36/+1
| | | | | | - remove #ifdef someos blocks, makes this a tad easier to read agreed by art@ and thib@
* convert lockmgr over to rwlock in ntfs, mostly trivial.oga2009-03-251-2/+2
| | | | Tested by a couple of people, no regressions.
* Remove the i_interlock simplelock from struct ntnodethib2007-04-121-2/+1
|
* fix the tagsmickey2003-05-201-1/+1
|
* by popular request, NTFS support. read only.tedu2003-05-201-0/+131
The code comes from NetBSD and was ported by Julian Bordet. ok deraadt@