summaryrefslogtreecommitdiff
path: root/sys/tmpfs
AgeCommit message (Expand)Author
2019-08-05Allow concurrent reads of the f_offset field of struct file byanton
2019-07-12Revert anton@ changes about read/write unlockingsolene
2019-07-10Make read/write of the f_offset field belonging to struct file MP-safe;anton
2019-01-21Introduce a dedicated entry point data structure for file locks. This new dataanton
2018-10-22More "explicitely" -> "explicitly" in various comments.Kenneth R Westerback
2018-06-07Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible forVisa Hankala
2018-05-28Call vput(dvp) in vnode operation functions instead of calling it inVisa Hankala
2018-05-27Drop unnecessary `p' parameter from vget(9).Visa Hankala
2018-05-23Fix build without DIAGNOSTIC, ok mikeb@Reyk Floeter
2018-05-02Remove proc from the parameters of vn_lock(). The parameter isVisa Hankala
2018-04-28Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysVisa Hankala
2018-04-06Now that the args are passed in by the caller there is no need to callPatrick Wildt
2018-03-28Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(),Visa Hankala
2018-03-07add "int stall" argument required by filesystem stall code; from Tomohiro KusumiTheo de Raadt
2017-12-11In uvm Chuck decided backing store would not be allocated proactivelyTheo de Raadt
2017-09-08If you use sys/param.h, you don't need sys/types.hTheo de Raadt
2017-04-20Tweak lock inits to make the system runnable with witness(4)Visa Hankala
2016-09-22Fix indentation. No binary change.Jonathan Gray
2016-09-15all pools have their ipl set via pool_setipl, so fold it into pool_init.David Gwynne
2016-08-23pool_setipl for tmpfs.David Gwynne
2016-07-22Set the vfs_systcl member of the vsfops struct to eopnotsupp. While we checkMark Kettenis
2016-07-11don't allow mounting with noval owner. panics later.Ted Unangst
2016-06-19Remove the lockmgr() API. It is only used by filesystems, where it is aMartin Natano
2016-05-02Fix some issues wrt timestamp updating. The tmpfs_read() andMartin Natano
2016-03-19Remove the unused flags argument from VOP_UNLOCK().natano
2016-02-06Convert to uiomove. From Martin Natano.Stefan Kempf
2016-01-13kill malloc(9) pointless check, malloc(9) call is using M_WAITOK flag and thu...Gleydson Soares
2015-12-11fix nde structure initialization, noticed in netbsd pr 50381 by mmcc@Bob Beck
2015-12-08correct errant spacingTed Unangst
2015-04-17Tweaks utimensat/futimens handling to always update ctime, even when bothPhilip Guenther
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2015-02-10First step towards making uiomove() take a size_t size argument:Miod Vallat
2015-01-21remove #if 0 cdefs.h blocksTheo de Raadt
2014-12-23change pool allocator to null and pass waitok to indicate nointrTed Unangst
2014-12-17remove lock.h from uvm_extern.h. another holdover from the simpletonlockTed Unangst
2014-12-17Prefer MADV_* over POSIX_MADV_* in kernel for consistency: the latterPhilip Guenther
2014-12-16primary change: move uvm_vnode out of vnode, keeping only a pointer.Ted Unangst
2014-12-15Use MAP_INHERIT_* for the 'inh' argument to the UMV_MAPFLAG() macro,Philip Guenther
2014-12-04Disallow file allocations on directories that have been removedDavid Coppa
2014-11-18move arc4random prototype to systm.h. more appropriate for most codeTed Unangst
2014-11-16Replace a plethora of historical protection options with justTheo de Raadt
2014-11-02tmpfs free sizesTed Unangst
2014-11-02unnecessary malloc.h includeTed Unangst
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2014-07-08decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hTheo de Raadt
2014-03-28Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofMartin Pieuchot
2014-02-28guenther's addition of filechk didn't take into account the differentMarc Espie
2014-02-25Check for offset wraparound and enforce RLIMIT_FSIZE.Philip Guenther
2014-01-22bring over kqfilter code from ufs which works better than theTed Unangst
2014-01-07Delay checking the vnode locking of the target vnodes in tmpfs_rename()Philip Guenther