Age | Commit message (Expand) | Author |
2019-07-25 | vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@ | cheloha |
2018-05-27 | Drop unnecessary `p' parameter from vget(9). | Visa Hankala |
2018-05-02 | Remove proc from the parameters of vn_lock(). The parameter is | Visa Hankala |
2018-04-28 | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always | Visa Hankala |
2018-02-10 | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes | Theo de Raadt |
2017-12-11 | In uvm Chuck decided backing store would not be allocated proactively | Theo de Raadt |
2017-04-11 | Partially revert previous mallocarray conversions that contain | David Hill |
2017-04-09 | Convert a malloc(9) to mallocarray(9) | David Hill |
2017-03-20 | Read the free clusters bitmap in 1MB chunks | Jeremie Courreges-Anglas |
2016-09-24 | use hashfree in fs code. from Mathieu - | Ted Unangst |
2016-09-07 | Remove usermount remnants. ok tedu | Martin Natano |
2016-09-01 | Remove the unused ntfs write code. ok benno beck | Martin Natano |
2016-08-31 | Remove some unnecessary assignments in ntfs_subr.c, and move one | Tom Cosgrove |
2016-08-13 | Eliminate pointless casts to qaddr_t of a value being assigned to a void* | Philip Guenther |
2016-08-10 | Kill stale prototypes. | Martin Natano |
2016-06-19 | Remove the lockmgr() API. It is only used by filesystems, where it is a | Martin Natano |
2016-06-01 | mkdir() on ntfs should return EROFS, not ENOENT. | Martin Natano |
2016-05-22 | When pulling an msdos formated umass stick during mount while the | Alexander Bluhm |
2016-04-26 | Populate all necessary statfs members in .vfs_statfs. cd9660, udf, | Martin Natano |
2016-03-27 | When pulling and unmounting an umass USB stick, the file system | Alexander Bluhm |
2016-03-19 | Remove the unused flags argument from VOP_UNLOCK(). | natano |
2016-03-17 | Set mnt_data to NULL after freeing the file system specific mount point. | Alexander Bluhm |
2016-03-05 | ntfs populates ntfs_args, not msdosfs_args; ok espie@ | natano |
2016-02-27 | Move mnt_maxsymlink from struct mount to struct ufsmount. | natano |
2016-02-07 | Convert to uiomove. While there, use size_t consistently for | Stefan Kempf |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-10 | Convert uiomovei() with a constant size argument to uiomove(). | Miod Vallat |
2015-02-10 | Switch uiomovei(..., sizeof whatever, ...) to uiomove(). | Miod Vallat |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2015-01-09 | rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadt | Ted Unangst |
2014-12-16 | must include lock.h if you want to play with locks | Ted Unangst |
2014-12-09 | Sprinkle in a little more mallocarray(). | Doug Hogan |
2014-11-18 | Nuke yet more obvious #include duplications. | Kenneth R Westerback |
2014-11-18 | use siphash for key lookups in all the filesystem hashes. | David Gwynne |
2014-09-14 | remove uneeded proc.h includes | Jonathan Gray |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-01-19 | lazy init nthash to save some memory when it's not used. ok jsing | Ted Unangst |
2013-12-14 | Zero out dirent structures that will be copied out to avoid leaking garbage | Philip Guenther |
2013-12-12 | Set the d_off member as getdents() expects in ntfs_readdir() | Philip Guenther |
2013-12-02 | Stop trying to put an off_t into an int, which results in a 2GB limit. | Joel Sing |
2013-12-02 | Avoid truncating 64-bit on disk attribute values to 32-bits. Otherwise an | Joel Sing |
2013-12-02 | Use appropriate format specifiers in debug messages. In particular, avoid | Joel Sing |
2013-11-24 | Clean up the NTFS debug code - use uppercase names for the debug macros, | Joel Sing |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-06-11 | final removal of daddr64_t. daddr_t has been 64 bit for a long enough | Theo de Raadt |
2013-05-30 | More of the same: ntfs doesn't do inode numbers >2^32, so use a smaller type | Philip Guenther |
2013-04-15 | Add an f_mntfromspec member to struct statfs, which specifies the name of | Joel Sing |
2013-03-28 | Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO, | Philip Guenther |
2013-01-25 | Add _KERNEL guard to hide dprintf macro from userland. | Brad Smith |