| Commit message (Expand) | Author | Age | Files | Lines |
* | Refactor klist insertion and removal |  visa | 2020-12-25 | 1 | -3/+3 |
* | Rename poll-compatibility flag to better reflect what it is. |  mpi | 2020-06-11 | 1 | -2/+2 |
* | Use a new EV_OLDAPI flag to match the behavior of poll(2) and select(2). |  mpi | 2020-06-08 | 1 | -1/+4 |
* | Abstract the head of knote lists. This allows extending the lists, |  visa | 2020-04-07 | 1 | -3/+3 |
* | Remove unused "struct proc *" argument from the following functions: |  mpi | 2020-02-27 | 1 | -3/+2 |
* | Replace field f_isfd with field f_flags in struct filterops to allow |  visa | 2020-02-20 | 1 | -4/+4 |
* | struct vops is not modified during runtime so use const which moves each |  claudio | 2020-01-20 | 2 | -8/+8 |
* | Use C99 designated initializers with struct filterops. In addition, |  visa | 2019-12-31 | 1 | -7/+21 |
* | Convert struct vfsops initializer to C99 style. |  bluhm | 2019-12-26 | 1 | -14/+14 |
* | Allow concurrent reads of the f_offset field of struct file by |  anton | 2019-08-05 | 1 | -2/+2 |
* | vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@ |  cheloha | 2019-07-25 | 1 | -2/+2 |
* | Revert anton@ changes about read/write unlocking |  solene | 2019-07-12 | 1 | -2/+2 |
* | Make read/write of the f_offset field belonging to struct file MP-safe; |  anton | 2019-07-10 | 1 | -2/+2 |
* | remove unused i_lockf member from struct iso_node; ok tedu@ visa@ |  anton | 2019-01-20 | 1 | -2/+1 |
* | Move the allocating and freeing of mount points into |  visa | 2018-09-26 | 1 | -3/+2 |
* | Drop unnecessary `p' parameter from vget(9). |  visa | 2018-05-27 | 1 | -3/+2 |
* | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2018-05-02 | 2 | -8/+7 |
* | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2018-04-28 | 3 | -8/+8 |
* | Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(), |  visa | 2018-03-28 | 1 | -2/+2 |
* | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes |  deraadt | 2018-02-10 | 2 | -4/+5 |
* | Don't pull in <sys/file.h> just to get fcntl.h |  guenther | 2017-12-30 | 1 | -2/+2 |
* | Delete unnecessary <sys/file.h> includes |  guenther | 2017-12-30 | 4 | -8/+4 |
* | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 2017-12-11 | 1 | -11/+8 |
* | If you use sys/param.h, you don't need sys/types.h |  deraadt | 2017-09-08 | 1 | -2/+1 |
* | Tweak lock inits to make the system runnable with witness(4) |  visa | 2017-04-20 | 1 | -2/+2 |
* | Remove usermount remnants. ok tedu |  natano | 2016-09-07 | 1 | -14/+1 |
* | Variable 'imp' is set earlier in cd9660_mount() if it's needed (when |  tom | 2016-09-02 | 1 | -2/+1 |
* | 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 | 4 | -10/+11 |
* | When pulling an msdos formated umass stick during mount while the |  bluhm | 2016-05-22 | 1 | -1/+3 |
* | Populate all necessary statfs members in .vfs_statfs. cd9660, udf, |  natano | 2016-04-26 | 1 | -8/+5 |
* | When pulling and unmounting an umass USB stick, the file system |  bluhm | 2016-03-27 | 1 | -3/+3 |
* | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2016-03-19 | 4 | -11/+11 |
* | Set mnt_data to NULL after freeing the file system specific mount point. |  bluhm | 2016-03-17 | 1 | -3/+3 |
* | Change a bunch of (<blah> *)0 to NULL. |  krw | 2016-03-14 | 1 | -2/+2 |
* | Sync no-argument function declaration and definition by adding (void). |  naddy | 2016-03-07 | 1 | -2/+2 |
* | Move mnt_maxsymlink from struct mount to struct ufsmount. |  natano | 2016-02-27 | 1 | -2/+1 |
* | Convert min() and uiomovei() to ulmin() and uiomove(). |  stefan | 2016-01-19 | 1 | -8/+8 |
* | implement kqfilter. copied from tmpfs (which I copied from ufs). |  tedu | 2015-12-11 | 1 | -1/+105 |
* | Nuke some extraneous whitespace. |  krw | 2015-09-09 | 1 | -43/+43 |
* | Tweaks utimensat/futimens handling to always update ctime, even when both |  guenther | 2015-04-17 | 1 | -3/+4 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 6 | -12/+6 |
* | First step towards making uiomove() take a size_t size argument: |  miod | 2015-02-10 | 1 | -4/+4 |
* | rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadt |  tedu | 2015-01-09 | 1 | -2/+2 |
* | primary change: move uvm_vnode out of vnode, keeping only a pointer. |  tedu | 2014-12-16 | 6 | -7/+12 |
* | use siphash for key lookups in all the filesystem hashes. |  dlg | 2014-11-18 | 1 | -2/+19 |
* | include sys/unistd.h where needed instead of indirect reliance. ok jsg |  tedu | 2014-11-03 | 1 | -1/+2 |
* | remove uneeded proc.h includes |  jsg | 2014-09-14 | 3 | -6/+3 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 4 | -14/+14 |
* | stop using B_AGE, it was effectively retired some time ago. |  tedu | 2014-05-09 | 2 | -8/+2 |