| Age | Commit message (Expand) | Author | Files | Lines |
| 2021-03-11 | spelling |  jsg | 1 | -3/+3 |
| 2020-12-25 | Refactor klist insertion and removal |  visa | 1 | -3/+3 |
| 2020-10-12 | Fix build of tmpfs |  visa | 2 | -2/+5 |
| 2020-07-15 | tmpfs_reclaim() has to make sure the VFS cache has no more locks held |  gerhard | 1 | -1/+3 |
| 2020-06-11 | Rename poll-compatibility flag to better reflect what it is. |  mpi | 1 | -2/+2 |
| 2020-06-08 | Use a new EV_OLDAPI flag to match the behavior of poll(2) and select(2). |  mpi | 1 | -1/+4 |
| 2020-04-07 | Abstract the head of knote lists. This allows extending the lists, |  visa | 1 | -3/+3 |
| 2020-02-20 | Replace field f_isfd with field f_flags in struct filterops to allow |  visa | 1 | -4/+4 |
| 2020-01-20 | struct vops is not modified during runtime so use const which moves each |  claudio | 4 | -8/+8 |
| 2019-12-31 | Use C99 designated initializers with struct filterops. In addition, |  visa | 1 | -7/+21 |
| 2019-12-26 | Convert struct vfsops initializer to C99 style. |  bluhm | 1 | -15/+15 |
| 2019-10-17 | Use -1 to indicate an invalid uid/gid, not UID_MAX and GID_MAX. |  millert | 1 | -2/+1 |
| 2019-08-05 | Allow concurrent reads of the f_offset field of struct file by |  anton | 1 | -2/+2 |
| 2019-07-12 | Revert anton@ changes about read/write unlocking |  solene | 1 | -2/+2 |
| 2019-07-10 | Make read/write of the f_offset field belonging to struct file MP-safe; |  anton | 1 | -2/+2 |
| 2019-01-21 | Introduce a dedicated entry point data structure for file locks. This new data |  anton | 1 | -2/+2 |
| 2018-10-22 | More "explicitely" -> "explicitly" in various comments. |  krw | 1 | -2/+2 |
| 2018-06-07 | Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for |  visa | 1 | -14/+6 |
| 2018-05-28 | Call vput(dvp) in vnode operation functions instead of calling it in |  visa | 2 | -5/+12 |
| 2018-05-27 | Drop unnecessary `p' parameter from vget(9). |  visa | 1 | -2/+2 |
| 2018-05-23 | Fix build without DIAGNOSTIC, ok mikeb@ |  reyk | 1 | -2/+5 |
| 2018-05-02 | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2 | -6/+6 |
| 2018-04-28 | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 1 | -14/+14 |
| 2018-04-06 | Now that the args are passed in by the caller there is no need to call |  patrick | 1 | -4/+1 |
| 2018-03-28 | Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(), |  visa | 1 | -2/+2 |
| 2018-03-07 | add "int stall" argument required by filesystem stall code; from Tomohiro Kusumi |  deraadt | 1 | -3/+4 |
| 2017-12-11 | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 1 | -12/+12 |
| 2017-09-08 | If you use sys/param.h, you don't need sys/types.h |  deraadt | 1 | -2/+1 |
| 2017-04-20 | Tweak lock inits to make the system runnable with witness(4) |  visa | 1 | -2/+2 |
| 2016-09-22 | Fix indentation. No binary change. |  jsg | 1 | -5/+5 |
| 2016-09-15 | all pools have their ipl set via pool_setipl, so fold it into pool_init. |  dlg | 1 | -7/+5 |
| 2016-08-23 | pool_setipl for tmpfs. |  dlg | 1 | -1/+3 |
| 2016-07-22 | Set the vfs_systcl member of the vsfops struct to eopnotsupp. While we check |  kettenis | 1 | -2/+2 |
| 2016-07-11 | don't allow mounting with noval owner. panics later. |  tedu | 1 | -1/+4 |
| 2016-06-19 | Remove the lockmgr() API. It is only used by filesystems, where it is a |  natano | 3 | -8/+9 |
| 2016-05-02 | Fix some issues wrt timestamp updating. The tmpfs_read() and |  natano | 1 | -5/+10 |
| 2016-03-19 | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 1 | -15/+15 |
| 2016-02-06 | Convert to uiomove. From Martin Natano. |  stefan | 2 | -8/+8 |
| 2016-01-13 | kill malloc(9) pointless check, malloc(9) call is using M_WAITOK flag and thus will sleep until |  gsoares | 1 | -3/+1 |
| 2015-12-11 | fix nde structure initialization, noticed in netbsd pr 50381 by mmcc@ |  beck | 1 | -2/+2 |
| 2015-12-08 | correct errant spacing |  tedu | 1 | -8/+8 |
| 2015-04-17 | Tweaks utimensat/futimens handling to always update ctime, even when both |  guenther | 2 | -10/+14 |
| 2015-03-14 | Remove some includes include-what-you-use claims don't |  jsg | 2 | -4/+2 |
| 2015-02-10 | First step towards making uiomove() take a size_t size argument: |  miod | 2 | -7/+7 |
| 2015-01-21 | remove #if 0 cdefs.h blocks |  deraadt | 6 | -36/+6 |
| 2014-12-23 | change pool allocator to null and pass waitok to indicate nointr |  tedu | 1 | -5/+5 |
| 2014-12-17 | remove lock.h from uvm_extern.h. another holdover from the simpletonlock |  tedu | 1 | -1/+2 |
| 2014-12-17 | Prefer MADV_* over POSIX_MADV_* in kernel for consistency: the latter |  guenther | 1 | -4/+4 |
| 2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. |  tedu | 1 | -1/+3 |
| 2014-12-15 | Use MAP_INHERIT_* for the 'inh' argument to the UMV_MAPFLAG() macro, |  guenther | 1 | -3/+3 |