summaryrefslogtreecommitdiff
path: root/sys/ntfs/ntfs_subr.c
AgeCommit message (Expand)Author
2022-01-11spellingJonathan Gray
2020-02-27Remove unused "struct proc *" argument from the following functions:Martin Pieuchot
2017-04-11Partially revert previous mallocarray conversions that containDavid Hill
2017-04-09Convert a malloc(9) to mallocarray(9)David Hill
2016-09-01Remove the unused ntfs write code. ok benno beckMartin Natano
2016-08-31Remove some unnecessary assignments in ntfs_subr.c, and move oneTom Cosgrove
2016-06-01mkdir() on ntfs should return EROFS, not ENOENT.Martin Natano
2016-02-07Convert to uiomove. While there, use size_t consistently forStefan Kempf
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2015-02-10Convert uiomovei() with a constant size argument to uiomove().Miod Vallat
2015-02-10First step towards making uiomove() take a size_t size argument:Miod Vallat
2014-12-16must include lock.h if you want to play with locksTed Unangst
2014-12-09Sprinkle in a little more mallocarray().Doug Hogan
2014-09-14remove uneeded proc.h includesJonathan Gray
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2014-01-19lazy init nthash to save some memory when it's not used. ok jsingTed Unangst
2013-12-02Stop trying to put an off_t into an int, which results in a 2GB limit.Joel Sing
2013-12-02Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise anJoel Sing
2013-12-02Use appropriate format specifiers in debug messages. In particular, avoidJoel Sing
2013-11-24Clean up the NTFS debug code - use uppercase names for the debug macros,Joel Sing
2013-06-11final removal of daddr64_t. daddr_t has been 64 bit for a long enoughTheo de Raadt
2013-05-30More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller typePhilip Guenther
2013-01-18Constrain the amount of kernel memory used by NTFS. Keep a small cache ofJoel Sing
2013-01-14Ansify and apply style(9) to function definitions.Joel Sing
2013-01-13Destatic.Joel Sing
2013-01-03Correct error handling in two hard to hit ENOTDIR error cases. These wouldJoel Sing
2013-01-02Remove code that is not used on OpenBSD.Joel Sing
2011-07-04move the specfs code to a place people can see it; ok guenther thib krwTheo de Raadt
2011-07-04bread does nothing with its ucred argument. remove it. ok matthewTed Unangst
2010-09-09nessesary -> necessary.Miod Vallat
2010-09-04revert previous "simplification". kcornies at gmail says it doesn't work.Ted Unangst
2010-08-22the upper case table code was a lot more complicated than it needed to be.Ted Unangst
2010-08-12clean up some macro obfuscation and assorted styling problems.Ted Unangst
2010-08-06Every time you ignore uiomove() return value, $DEITY kills a littleMiod Vallat
2009-08-13- remove super-obvious comments from vnodeop_entries[]Jasper Lievisse Adriaanse
2009-07-09Remove the VREF() macro and replaces all instances with a call to verf(),Thordur I. Bjornsson
2009-03-25convert lockmgr over to rwlock in ntfs, mostly trivial.Owain Ainsworth
2008-05-13Remove commented out NetBSD __KERNEL_RCSID macro usage.Brad Smith
2007-12-09MALLOC/FREE -> malloc/freeHans-Joerg Hoexer
2007-10-06Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.Kenneth R Westerback
2007-10-03MALLOC+bzero -> malloc+M_ZERO.Kenneth R Westerback
2007-06-02do the daddr_t -> daddr64_t or int32_t dance here as wellTheo de Raadt
2007-04-12Remove the i_interlock simplelock from struct ntnodeThordur I. Bjornsson
2006-03-05Use more queue macros rather than doing it by hand; ok otto@ krw@Miod Vallat
2005-11-19Remove unnecessary lockmgr() archaism that was costing too much in termsPedro Martelletto
2005-05-24Fix our NTFS readdir function.Brad Smith
2005-05-22The printf(9) `%p' conversion specifier puts an "0x" inBrad Smith
2005-05-21- use MIN()/MAX() rather than min()/max(), to avoid possible truncationBrad Smith
2005-03-08fix a page fault that occurs when a reclaimed vnode is then reused.Patrick Latifi
2003-05-20un __PTed Unangst