| Age | Commit message (Expand) | Author | Files | Lines |
| 2021-03-11 | spelling |  jsg | 2 | -4/+4 |
| 2020-02-27 | Remove unused "struct proc *" argument from the following functions: |  mpi | 5 | -37/+34 |
| 2020-01-20 | struct vops is not modified during runtime so use const which moves each |  claudio | 2 | -4/+4 |
| 2019-12-26 | Convert struct vfsops initializer to C99 style. |  bluhm | 1 | -14/+14 |
| 2019-07-25 | vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@ |  cheloha | 1 | -3/+3 |
| 2018-05-27 | Drop unnecessary `p' parameter from vget(9). |  visa | 1 | -2/+2 |
| 2018-05-02 | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2 | -8/+8 |
| 2018-04-28 | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2 | -8/+7 |
| 2018-02-10 | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes |  deraadt | 1 | -3/+3 |
| 2017-12-11 | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 1 | -13/+8 |
| 2017-04-11 | Partially revert previous mallocarray conversions that contain |  dhill | 1 | -2/+2 |
| 2017-04-09 | Convert a malloc(9) to mallocarray(9) |  dhill | 1 | -2/+2 |
| 2017-03-20 | Read the free clusters bitmap in 1MB chunks |  jca | 1 | -10/+23 |
| 2016-09-24 | use hashfree in fs code. from Mathieu - |  tedu | 1 | -2/+2 |
| 2016-09-07 | Remove usermount remnants. ok tedu |  natano | 1 | -13/+1 |
| 2016-09-01 | Remove the unused ntfs write code. ok benno beck |  natano | 4 | -230/+15 |
| 2016-08-31 | Remove some unnecessary assignments in ntfs_subr.c, and move one |  tom | 1 | -6/+3 |
| 2016-08-13 | Eliminate pointless casts to qaddr_t of a value being assigned to a void* |  guenther | 1 | -2/+2 |
| 2016-08-10 | Kill stale prototypes. |  natano | 1 | -4/+1 |
| 2016-06-19 | Remove the lockmgr() API. It is only used by filesystems, where it is a |  natano | 1 | -2/+2 |
| 2016-06-01 | mkdir() on ntfs should return EROFS, not ENOENT. |  natano | 1 | -8/+14 |
| 2016-05-22 | When pulling an msdos formated umass stick during mount while the |  bluhm | 1 | -2/+3 |
| 2016-04-26 | Populate all necessary statfs members in .vfs_statfs. cd9660, udf, |  natano | 1 | -10/+4 |
| 2016-03-27 | When pulling and unmounting an umass USB stick, the file system |  bluhm | 1 | -6/+4 |
| 2016-03-19 | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2 | -8/+8 |
| 2016-03-17 | Set mnt_data to NULL after freeing the file system specific mount point. |  bluhm | 1 | -3/+3 |
| 2016-03-05 | ntfs populates ntfs_args, not msdosfs_args; ok espie@ |  natano | 1 | -3/+3 |
| 2016-02-27 | Move mnt_maxsymlink from struct mount to struct ufsmount. |  natano | 1 | -2/+1 |
| 2016-02-07 | Convert to uiomove. While there, use size_t consistently for |  stefan | 1 | -32/+31 |
| 2015-03-14 | Remove some includes include-what-you-use claims don't |  jsg | 4 | -8/+4 |
| 2015-02-10 | Convert uiomovei() with a constant size argument to uiomove(). |  miod | 1 | -3/+3 |
| 2015-02-10 | Switch uiomovei(..., sizeof whatever, ...) to uiomove(). |  miod | 1 | -4/+4 |
| 2015-02-10 | First step towards making uiomove() take a size_t size argument: |  miod | 2 | -12/+12 |
| 2015-01-09 | rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadt |  tedu | 1 | -2/+2 |
| 2014-12-16 | must include lock.h if you want to play with locks |  tedu | 3 | -3/+6 |
| 2014-12-09 | Sprinkle in a little more mallocarray(). |  doug | 2 | -5/+5 |
| 2014-11-18 | Nuke yet more obvious #include duplications. |  krw | 1 | -2/+1 |
| 2014-11-18 | use siphash for key lookups in all the filesystem hashes. |  dlg | 1 | -2/+20 |
| 2014-09-14 | remove uneeded proc.h includes |  jsg | 2 | -4/+2 |
| 2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 4 | -31/+31 |
| 2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h |  deraadt | 1 | -3/+1 |
| 2014-01-19 | lazy init nthash to save some memory when it's not used. ok jsing |  tedu | 4 | -20/+19 |
| 2013-12-14 | Zero out dirent structures that will be copied out to avoid leaking garbage |  guenther | 1 | -30/+30 |
| 2013-12-12 | Set the d_off member as getdents() expects in ntfs_readdir() |  guenther | 1 | -1/+2 |
| 2013-12-02 | Stop trying to put an off_t into an int, which results in a 2GB limit. |  jsing | 1 | -3/+3 |
| 2013-12-02 | Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise an |  jsing | 2 | -7/+7 |
| 2013-12-02 | Use appropriate format specifiers in debug messages. In particular, avoid |  jsing | 3 | -132/+121 |
| 2013-11-24 | Clean up the NTFS debug code - use uppercase names for the debug macros, |  jsing | 6 | -225/+217 |
| 2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data |  guenther | 1 | -35/+8 |
| 2013-06-11 | final removal of daddr64_t. daddr_t has been 64 bit for a long enough |  deraadt | 2 | -4/+4 |