| Commit message (Expand) | Author | Age | Files | Lines |
* | Drop unnecessary `p' parameter from vget(9). |  visa | 2018-05-27 | 1 | -2/+2 |
* | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2018-05-02 | 1 | -5/+5 |
* | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2018-04-28 | 1 | -3/+3 |
* | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes |  deraadt | 2018-02-10 | 1 | -3/+3 |
* | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 2017-12-11 | 1 | -13/+8 |
* | Read the free clusters bitmap in 1MB chunks |  jca | 2017-03-20 | 1 | -10/+23 |
* | Remove usermount remnants. ok tedu |  natano | 2016-09-07 | 1 | -13/+1 |
* | Remove the unused ntfs write code. ok benno beck |  natano | 2016-09-01 | 1 | -11/+7 |
* | Eliminate pointless casts to qaddr_t of a value being assigned to a void* |  guenther | 2016-08-13 | 1 | -2/+2 |
* | Remove the lockmgr() API. It is only used by filesystems, where it is a |  natano | 2016-06-19 | 1 | -2/+2 |
* | When pulling an msdos formated umass stick during mount while the |  bluhm | 2016-05-22 | 1 | -2/+3 |
* | Populate all necessary statfs members in .vfs_statfs. cd9660, udf, |  natano | 2016-04-26 | 1 | -10/+4 |
* | When pulling and unmounting an umass USB stick, the file system |  bluhm | 2016-03-27 | 1 | -6/+4 |
* | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2016-03-19 | 1 | -4/+4 |
* | Set mnt_data to NULL after freeing the file system specific mount point. |  bluhm | 2016-03-17 | 1 | -3/+3 |
* | ntfs populates ntfs_args, not msdosfs_args; ok espie@ |  natano | 2016-03-05 | 1 | -3/+3 |
* | Move mnt_maxsymlink from struct mount to struct ufsmount. |  natano | 2016-02-27 | 1 | -2/+1 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | 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 | -2/+2 |
* | Nuke yet more obvious #include duplications. |  krw | 2014-11-18 | 1 | -2/+1 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -6/+6 |
* | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h |  deraadt | 2014-07-08 | 1 | -3/+1 |
* | lazy init nthash to save some memory when it's not used. ok jsing |  tedu | 2014-01-19 | 1 | -3/+3 |
* | Use appropriate format specifiers in debug messages. In particular, avoid |  jsing | 2013-12-02 | 1 | -10/+9 |
* | Clean up the NTFS debug code - use uppercase names for the debug macros, |  jsing | 2013-11-24 | 1 | -28/+29 |
* | More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller type |  guenther | 2013-05-30 | 1 | -2/+4 |
* | Add an f_mntfromspec member to struct statfs, which specifies the name of |  jsing | 2013-04-15 | 1 | -4/+9 |
* | Constrain the amount of kernel memory used by NTFS. Keep a small cache of |  jsing | 2013-01-18 | 1 | -1/+2 |
* | Ansify and apply style(9) to function definitions. |  jsing | 2013-01-14 | 1 | -77/+23 |
* | Destatic. |  jsing | 2013-01-13 | 1 | -31/+28 |
* | Remove code that is not used on OpenBSD. |  jsing | 2013-01-02 | 1 | -26/+1 |
* | Cleanup VFS mount string handling: |  jsing | 2012-09-10 | 1 | -15/+8 |
* | respect the MNT_FORCE flag in ntfs_unmount and proceed even if there's |  mikeb | 2011-12-20 | 1 | -5/+7 |
* | 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 | -2/+2 |
* | Teach ntfs_mount() how to handle disklabel UIDs. |  jsing | 2011-04-03 | 1 | -5/+16 |
* | Bring back the "End the VOP experiment." diff, naddy's issues where |  thib | 2010-12-21 | 1 | -9/+2 |
* | Backout the VOP diff until the issues naddy was seeing on alpha (gcc3) |  thib | 2010-09-10 | 1 | -2/+9 |
* | Allow NTFS to compile by cutting it over to the new VOP world order. |  thib | 2010-09-07 | 1 | -9/+2 |
* | revert previous "simplification". kcornies at gmail says it doesn't work. |  tedu | 2010-09-04 | 1 | -3/+14 |
* | the upper case table code was a lot more complicated than it needed to be. |  tedu | 2010-08-22 | 1 | -14/+3 |
* | clean up some macro obfuscation and assorted styling problems. |  tedu | 2010-08-12 | 1 | -17/+14 |
* | do not unlock vnode before calling vput. should fix ray's panic. |  tedu | 2010-08-08 | 1 | -2/+1 |
* | Last bit of thib@ locking diff from long ago. Put proper locking |  krw | 2010-07-03 | 1 | -4/+6 |
* | makefstype was only used in ported from freebsd filesystems. fix them |  tedu | 2010-06-29 | 1 | -2/+2 |
* | - remove super-obvious comments from vnodeop_entries[] |  jasper | 2009-08-13 | 1 | -315/+6 |
* | Remove the VREF() macro and replaces all instances with a call to verf(), |  thib | 2009-07-09 | 1 | -2/+2 |
* | Remove commented out NetBSD __KERNEL_RCSID macro usage. |  brad | 2008-05-13 | 1 | -6/+1 |
* | Only the most obvious bzero() -> M_ZERO changes. No cast changes, no |  krw | 2007-09-17 | 1 | -3/+2 |