| Commit message (Expand) | Author | Age | Files | Lines |
* | Introduce a dedicated entry point data structure for file locks. This new data |  anton | 2019-01-21 | 1 | -2/+2 |
* | More "explicitely" -> "explicitly" in various comments. |  krw | 2018-10-22 | 1 | -2/+2 |
* | Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for |  visa | 2018-06-07 | 1 | -14/+6 |
* | Call vput(dvp) in vnode operation functions instead of calling it in |  visa | 2018-05-28 | 2 | -5/+12 |
* | Drop unnecessary `p' parameter from vget(9). |  visa | 2018-05-27 | 1 | -2/+2 |
* | Fix build without DIAGNOSTIC, ok mikeb@ |  reyk | 2018-05-23 | 1 | -2/+5 |
* | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2018-05-02 | 2 | -6/+6 |
* | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2018-04-28 | 1 | -14/+14 |
* | Now that the args are passed in by the caller there is no need to call |  patrick | 2018-04-06 | 1 | -4/+1 |
* | Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(), |  visa | 2018-03-28 | 1 | -2/+2 |
* | add "int stall" argument required by filesystem stall code; from Tomohiro Kusumi |  deraadt | 2018-03-07 | 1 | -3/+4 |
* | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 2017-12-11 | 1 | -12/+12 |
* | 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 |
* | Fix indentation. No binary change. |  jsg | 2016-09-22 | 1 | -5/+5 |
* | all pools have their ipl set via pool_setipl, so fold it into pool_init. |  dlg | 2016-09-15 | 1 | -7/+5 |
* | pool_setipl for tmpfs. |  dlg | 2016-08-23 | 1 | -1/+3 |
* | Set the vfs_systcl member of the vsfops struct to eopnotsupp. While we check |  kettenis | 2016-07-22 | 1 | -2/+2 |
* | don't allow mounting with noval owner. panics later. |  tedu | 2016-07-11 | 1 | -1/+4 |
* | Remove the lockmgr() API. It is only used by filesystems, where it is a |  natano | 2016-06-19 | 3 | -8/+9 |
* | Fix some issues wrt timestamp updating. The tmpfs_read() and |  natano | 2016-05-02 | 1 | -5/+10 |
* | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2016-03-19 | 1 | -15/+15 |
* | Convert to uiomove. From Martin Natano. |  stefan | 2016-02-06 | 2 | -8/+8 |
* | kill malloc(9) pointless check, malloc(9) call is using M_WAITOK flag and thus will sleep until |  gsoares | 2016-01-13 | 1 | -3/+1 |
* | fix nde structure initialization, noticed in netbsd pr 50381 by mmcc@ |  beck | 2015-12-11 | 1 | -2/+2 |
* | correct errant spacing |  tedu | 2015-12-08 | 1 | -8/+8 |
* | Tweaks utimensat/futimens handling to always update ctime, even when both |  guenther | 2015-04-17 | 2 | -10/+14 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 2 | -4/+2 |
* | First step towards making uiomove() take a size_t size argument: |  miod | 2015-02-10 | 2 | -7/+7 |
* | remove #if 0 cdefs.h blocks |  deraadt | 2015-01-21 | 6 | -36/+6 |
* | change pool allocator to null and pass waitok to indicate nointr |  tedu | 2014-12-23 | 1 | -5/+5 |
* | remove lock.h from uvm_extern.h. another holdover from the simpletonlock |  tedu | 2014-12-17 | 1 | -1/+2 |
* | Prefer MADV_* over POSIX_MADV_* in kernel for consistency: the latter |  guenther | 2014-12-17 | 1 | -4/+4 |
* | primary change: move uvm_vnode out of vnode, keeping only a pointer. |  tedu | 2014-12-16 | 1 | -1/+3 |
* | Use MAP_INHERIT_* for the 'inh' argument to the UMV_MAPFLAG() macro, |  guenther | 2014-12-15 | 1 | -3/+3 |
* | Disallow file allocations on directories that have been removed |  dcoppa | 2014-12-04 | 1 | -1/+6 |
* | move arc4random prototype to systm.h. more appropriate for most code |  tedu | 2014-11-18 | 1 | -3/+1 |
* | Replace a plethora of historical protection options with just |  deraadt | 2014-11-16 | 1 | -7/+7 |
* | tmpfs free sizes |  tedu | 2014-11-02 | 2 | -4/+4 |
* | unnecessary malloc.h include |  tedu | 2014-11-02 | 1 | -2/+1 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 2 | -4/+4 |
* | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h |  deraadt | 2014-07-08 | 2 | -4/+3 |
* | Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of |  mpi | 2014-03-28 | 2 | -4/+4 |
* | guenther's addition of filechk didn't take into account the different |  espie | 2014-02-28 | 1 | -9/+7 |
* | Check for offset wraparound and enforce RLIMIT_FSIZE. |  guenther | 2014-02-25 | 1 | -1/+14 |
* | bring over kqfilter code from ufs which works better than the |  tedu | 2014-01-22 | 1 | -2/+105 |
* | Delay checking the vnode locking of the target vnodes in tmpfs_rename() |  guenther | 2014-01-07 | 1 | -3/+8 |
* | zap defines that don't make any sense for us |  espie | 2013-12-25 | 1 | -4/+1 |
* | sync specvops with ffs (fixing spec_open along the way) |  tedu | 2013-12-23 | 1 | -12/+14 |
* | Move KASSERT a bit further down because it can apparently be triggered by |  kettenis | 2013-12-23 | 1 | -2/+3 |