summaryrefslogtreecommitdiffstats
path: root/sys/ntfs/ntfs_subr.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lazy init nthash to save some memory when it's not used. ok jsingtedu2014-01-191-2/+1
|
* Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise anjsing2013-12-021-3/+3
| | | | | | attribute's data length value wraps at 4GB. ok krw@
* More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller typeguenther2013-05-301-2/+2
| | | | internally, only using ino_t in the VFS layer APIs: vget, readdir, getattr
* revert previous "simplification". kcornies at gmail says it doesn't work.tedu2010-09-041-2/+4
|
* the upper case table code was a lot more complicated than it needed to be.tedu2010-08-221-4/+2
|
* - 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@
* un __Ptedu2003-05-201-65/+65
|
* fix the tagsmickey2003-05-201-1/+1
|
* by popular request, NTFS support. read only.tedu2003-05-201-0/+145
The code comes from NetBSD and was ported by Julian Bordet. ok deraadt@