Age | Commit message (Expand) | Author |
2024-10-18 | Put the bowels of the various VOP_PRINT routines under | Miod Vallat |
2024-05-13 | vfs: VOP_REMOVE: move vnode unlocking and ref dropping to FS-indep part | Sebastien Marie |
2024-03-25 | Move the "no (hard) linking directories" and "no cross-mount links" | Philip Guenther |
2023-09-08 | Remove the remnants of the leftover selinfo from vnode(9) layer. Just | Vitaliy Makkoveev |
2022-06-26 | Remove unused VOP_POLL(). | Visa Hankala |
2021-12-11 | Clarify usage of __EV_POLL and __EV_SELECT | Visa Hankala |
2021-10-24 | tiny little whitespace fixes | Patrick Wildt |
2021-10-24 | Prohibit renames of tmpfs mount-points to fix a panic. | Patrick Wildt |
2021-10-23 | Call uvm_vnp_uncache() in tmpfs_write(). We currently only call | Patrick Wildt |
2021-10-23 | Fix tmpfs_lookup locking for ".." == ".". unveil_find_cover() calls | Patrick Wildt |
2021-03-11 | spelling | Jonathan Gray |
2020-12-25 | Refactor klist insertion and removal | Visa Hankala |
2020-10-12 | Fix build of tmpfs | Visa Hankala |
2020-07-15 | tmpfs_reclaim() has to make sure the VFS cache has no more locks held | Gerhard Roth |
2020-06-11 | Rename poll-compatibility flag to better reflect what it is. | Martin Pieuchot |
2020-06-08 | Use a new EV_OLDAPI flag to match the behavior of poll(2) and select(2). | Martin Pieuchot |
2020-04-07 | Abstract the head of knote lists. This allows extending the lists, | Visa Hankala |
2020-02-20 | Replace field f_isfd with field f_flags in struct filterops to allow | Visa Hankala |
2020-01-20 | struct vops is not modified during runtime so use const which moves each | Claudio Jeker |
2019-12-31 | Use C99 designated initializers with struct filterops. In addition, | Visa Hankala |
2019-08-05 | Allow concurrent reads of the f_offset field of struct file by | anton |
2019-07-12 | Revert anton@ changes about read/write unlocking | solene |
2019-07-10 | Make read/write of the f_offset field belonging to struct file MP-safe; | anton |
2018-10-22 | More "explicitely" -> "explicitly" in various comments. | Kenneth R Westerback |
2018-06-07 | Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for | Visa Hankala |
2018-05-28 | Call vput(dvp) in vnode operation functions instead of calling it in | Visa Hankala |
2018-05-23 | Fix build without DIAGNOSTIC, ok mikeb@ | Reyk Floeter |
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 |
2016-06-19 | Remove the lockmgr() API. It is only used by filesystems, where it is a | Martin Natano |
2016-05-02 | Fix some issues wrt timestamp updating. The tmpfs_read() and | Martin Natano |
2016-03-19 | Remove the unused flags argument from VOP_UNLOCK(). | natano |
2016-02-06 | Convert to uiomove. From Martin Natano. | Stefan Kempf |
2015-12-08 | correct errant spacing | Ted Unangst |
2015-04-17 | Tweaks utimensat/futimens handling to always update ctime, even when both | Philip Guenther |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2015-01-21 | remove #if 0 cdefs.h blocks | Theo de Raadt |
2014-11-02 | unnecessary malloc.h include | Ted Unangst |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-03-28 | Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of | Martin Pieuchot |
2014-02-28 | guenther's addition of filechk didn't take into account the different | Marc Espie |
2014-02-25 | Check for offset wraparound and enforce RLIMIT_FSIZE. | Philip Guenther |
2014-01-22 | bring over kqfilter code from ufs which works better than the | Ted Unangst |
2014-01-07 | Delay checking the vnode locking of the target vnodes in tmpfs_rename() | Philip Guenther |
2013-12-23 | Move KASSERT a bit further down because it can apparently be triggered by | Mark Kettenis |
2013-12-14 | bring in a few improvements from pedro, guenther, me... | Marc Espie |
2013-10-10 | A few fixes from Pedro Martelletto, adapted from | Marc Espie |
2013-09-22 | The readdir vop should set uio_offset to the cookie of the entry | Philip Guenther |
2013-09-01 | Update to match VOP_READDIR() changes: no more cookies, but d_off instead. | Philip Guenther |