summaryrefslogtreecommitdiffstats
path: root/sys/ntfs/ntfs_subr.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Remove unused "struct proc *" argument from the following functions:mpi2020-02-271-14/+13
* Partially revert previous mallocarray conversions that containdhill2017-04-111-2/+2
* Convert a malloc(9) to mallocarray(9)dhill2017-04-091-2/+2
* Remove the unused ntfs write code. ok benno becknatano2016-09-011-147/+1
* Remove some unnecessary assignments in ntfs_subr.c, and move onetom2016-08-311-6/+3
* mkdir() on ntfs should return EROFS, not ENOENT.natano2016-06-011-8/+14
* Convert to uiomove. While there, use size_t consistently forstefan2016-02-071-32/+31
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Convert uiomovei() with a constant size argument to uiomove().miod2015-02-101-3/+3
* First step towards making uiomove() take a size_t size argument:miod2015-02-101-8/+8
* must include lock.h if you want to play with lockstedu2014-12-161-1/+2
* Sprinkle in a little more mallocarray().doug2014-12-091-3/+3
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-21/+21
* lazy init nthash to save some memory when it's not used. ok jsingtedu2014-01-191-12/+1
* Stop trying to put an off_t into an int, which results in a 2GB limit.jsing2013-12-021-3/+3
* Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise anjsing2013-12-021-4/+4
* Use appropriate format specifiers in debug messages. In particular, avoidjsing2013-12-021-84/+75
* Clean up the NTFS debug code - use uppercase names for the debug macros,jsing2013-11-241-138/+126
* final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt2013-06-111-2/+2
* More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller typeguenther2013-05-301-2/+2
* Constrain the amount of kernel memory used by NTFS. Keep a small cache ofjsing2013-01-181-11/+45
* Ansify and apply style(9) to function definitions.jsing2013-01-141-170/+58
* Destatic.jsing2013-01-131-9/+9
* Correct error handling in two hard to hit ENOTDIR error cases. These wouldjsing2013-01-031-10/+15
* Remove code that is not used on OpenBSD.jsing2013-01-021-8/+1
* move the specfs code to a place people can see it; ok guenther thib krwderaadt2011-07-041-3/+2
* bread does nothing with its ucred argument. remove it. ok matthewtedu2011-07-041-6/+5
* nessesary -> necessary.miod2010-09-091-2/+2
* revert previous "simplification". kcornies at gmail says it doesn't work.tedu2010-09-041-18/+67
* the upper case table code was a lot more complicated than it needed to be.tedu2010-08-221-67/+18
* clean up some macro obfuscation and assorted styling problems.tedu2010-08-121-16/+14
* Every time you ignore uiomove() return value, $DEITY kills a littlemiod2010-08-061-14/+28
* - remove super-obvious comments from vnodeop_entries[]jasper2009-08-131-96/+3
* Remove the VREF() macro and replaces all instances with a call to verf(),thib2009-07-091-3/+3
* convert lockmgr over to rwlock in ntfs, mostly trivial.oga2009-03-251-13/+12
* Remove commented out NetBSD __KERNEL_RCSID macro usage.brad2008-05-131-6/+1
* MALLOC/FREE -> malloc/freehshoexer2007-12-091-19/+18
* Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.krw2007-10-061-5/+5
* MALLOC+bzero -> malloc+M_ZERO.krw2007-10-031-9/+4
* do the daddr_t -> daddr64_t or int32_t dance here as wellderaadt2007-06-021-2/+2
* Remove the i_interlock simplelock from struct ntnodethib2007-04-121-10/+3
* Use more queue macros rather than doing it by hand; ok otto@ krw@miod2006-03-051-3/+3
* Remove unnecessary lockmgr() archaism that was costing too much in termspedro2005-11-191-35/+4
* Fix our NTFS readdir function.brad2005-05-241-4/+4
* The printf(9) `%p' conversion specifier puts an "0x" inbrad2005-05-221-3/+3
* - use MIN()/MAX() rather than min()/max(), to avoid possible truncationbrad2005-05-211-30/+28
* fix a page fault that occurs when a reclaimed vnode is then reused.pat2005-03-081-16/+18
* un __Ptedu2003-05-201-5/+5
* fix the tagsmickey2003-05-201-1/+1