| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove unused "struct proc *" argument from the following functions: |  mpi | 2020-02-27 | 1 | -14/+13 |
* | Partially revert previous mallocarray conversions that contain |  dhill | 2017-04-11 | 1 | -2/+2 |
* | Convert a malloc(9) to mallocarray(9) |  dhill | 2017-04-09 | 1 | -2/+2 |
* | Remove the unused ntfs write code. ok benno beck |  natano | 2016-09-01 | 1 | -147/+1 |
* | Remove some unnecessary assignments in ntfs_subr.c, and move one |  tom | 2016-08-31 | 1 | -6/+3 |
* | mkdir() on ntfs should return EROFS, not ENOENT. |  natano | 2016-06-01 | 1 | -8/+14 |
* | Convert to uiomove. While there, use size_t consistently for |  stefan | 2016-02-07 | 1 | -32/+31 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | Convert uiomovei() with a constant size argument to uiomove(). |  miod | 2015-02-10 | 1 | -3/+3 |
* | First step towards making uiomove() take a size_t size argument: |  miod | 2015-02-10 | 1 | -8/+8 |
* | must include lock.h if you want to play with locks |  tedu | 2014-12-16 | 1 | -1/+2 |
* | Sprinkle in a little more mallocarray(). |  doug | 2014-12-09 | 1 | -3/+3 |
* | remove uneeded proc.h includes |  jsg | 2014-09-14 | 1 | -2/+1 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -21/+21 |
* | lazy init nthash to save some memory when it's not used. ok jsing |  tedu | 2014-01-19 | 1 | -12/+1 |
* | Stop trying to put an off_t into an int, which results in a 2GB limit. |  jsing | 2013-12-02 | 1 | -3/+3 |
* | Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise an |  jsing | 2013-12-02 | 1 | -4/+4 |
* | Use appropriate format specifiers in debug messages. In particular, avoid |  jsing | 2013-12-02 | 1 | -84/+75 |
* | Clean up the NTFS debug code - use uppercase names for the debug macros, |  jsing | 2013-11-24 | 1 | -138/+126 |
* | final removal of daddr64_t. daddr_t has been 64 bit for a long enough |  deraadt | 2013-06-11 | 1 | -2/+2 |
* | More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller type |  guenther | 2013-05-30 | 1 | -2/+2 |
* | Constrain the amount of kernel memory used by NTFS. Keep a small cache of |  jsing | 2013-01-18 | 1 | -11/+45 |
* | Ansify and apply style(9) to function definitions. |  jsing | 2013-01-14 | 1 | -170/+58 |
* | Destatic. |  jsing | 2013-01-13 | 1 | -9/+9 |
* | Correct error handling in two hard to hit ENOTDIR error cases. These would |  jsing | 2013-01-03 | 1 | -10/+15 |
* | Remove code that is not used on OpenBSD. |  jsing | 2013-01-02 | 1 | -8/+1 |
* | move the specfs code to a place people can see it; ok guenther thib krw |  deraadt | 2011-07-04 | 1 | -3/+2 |
* | bread does nothing with its ucred argument. remove it. ok matthew |  tedu | 2011-07-04 | 1 | -6/+5 |
* | nessesary -> necessary. |  miod | 2010-09-09 | 1 | -2/+2 |
* | revert previous "simplification". kcornies at gmail says it doesn't work. |  tedu | 2010-09-04 | 1 | -18/+67 |
* | the upper case table code was a lot more complicated than it needed to be. |  tedu | 2010-08-22 | 1 | -67/+18 |
* | clean up some macro obfuscation and assorted styling problems. |  tedu | 2010-08-12 | 1 | -16/+14 |
* | Every time you ignore uiomove() return value, $DEITY kills a little |  miod | 2010-08-06 | 1 | -14/+28 |
* | - remove super-obvious comments from vnodeop_entries[] |  jasper | 2009-08-13 | 1 | -96/+3 |
* | Remove the VREF() macro and replaces all instances with a call to verf(), |  thib | 2009-07-09 | 1 | -3/+3 |
* | convert lockmgr over to rwlock in ntfs, mostly trivial. |  oga | 2009-03-25 | 1 | -13/+12 |
* | Remove commented out NetBSD __KERNEL_RCSID macro usage. |  brad | 2008-05-13 | 1 | -6/+1 |
* | MALLOC/FREE -> malloc/free |  hshoexer | 2007-12-09 | 1 | -19/+18 |
* | Oops. Forgot to do FREE -> free when I did MALLOC -> malloc. |  krw | 2007-10-06 | 1 | -5/+5 |
* | MALLOC+bzero -> malloc+M_ZERO. |  krw | 2007-10-03 | 1 | -9/+4 |
* | do the daddr_t -> daddr64_t or int32_t dance here as well |  deraadt | 2007-06-02 | 1 | -2/+2 |
* | Remove the i_interlock simplelock from struct ntnode |  thib | 2007-04-12 | 1 | -10/+3 |
* | Use more queue macros rather than doing it by hand; ok otto@ krw@ |  miod | 2006-03-05 | 1 | -3/+3 |
* | Remove unnecessary lockmgr() archaism that was costing too much in terms |  pedro | 2005-11-19 | 1 | -35/+4 |
* | Fix our NTFS readdir function. |  brad | 2005-05-24 | 1 | -4/+4 |
* | The printf(9) `%p' conversion specifier puts an "0x" in |  brad | 2005-05-22 | 1 | -3/+3 |
* | - use MIN()/MAX() rather than min()/max(), to avoid possible truncation |  brad | 2005-05-21 | 1 | -30/+28 |
* | fix a page fault that occurs when a reclaimed vnode is then reused. |  pat | 2005-03-08 | 1 | -16/+18 |
* | un __P |  tedu | 2003-05-20 | 1 | -5/+5 |
* | fix the tags |  mickey | 2003-05-20 | 1 | -1/+1 |