summaryrefslogtreecommitdiffstats
path: root/sys/tmpfs/tmpfs_vnops.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More "explicitely" -> "explicitly" in various comments.krw2018-10-221-2/+2
| | | | ok guenther@ tb@ deraadt@
* Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible forvisa2018-06-071-14/+6
| | | | | | unlocking the directory vnode. OK mpi@, helg@
* Call vput(dvp) in vnode operation functions instead of calling it invisa2018-05-281-3/+11
| | | | | | | the file allocation routine. This allows stepwise changing of the vnode locking discipline. OK mpi@
* Fix build without DIAGNOSTIC, ok mikeb@reyk2018-05-231-2/+5
|
* Remove proc from the parameters of vn_lock(). The parameter isvisa2018-05-021-4/+4
| | | | | | unnecessary because curproc always does the locking. OK mpi@
* Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysvisa2018-04-281-14/+14
| | | | | | | curproc that does the locking or unlocking, so the proc parameter is pointless and can be dropped. OK mpi@, deraadt@
* Remove the lockmgr() API. It is only used by filesystems, where it is anatano2016-06-191-4/+5
| | | | | | | | trivial change to use rrw locks instead. All it needs is LK_* defines for the RW_* flags. tested by naddy and sthen on package building infrastructure input and ok jmc mpi tedu
* Fix some issues wrt timestamp updating. The tmpfs_read() andnatano2016-05-021-5/+10
| | | | | | | | tmpfs_readlink() functions ignore the noatime mount option, tmpfs_read() should not update atime when zero bytes have been requested (as per posix) and tmpfs_write() should update mtime and ctime (as per posix). ok espie
* Remove the unused flags argument from VOP_UNLOCK().natano2016-03-191-15/+15
| | | | | | torture tested on amd64, i386 and macppc ok beck mpi stefan "the change looks right" deraadt
* Convert to uiomove. From Martin Natano.stefan2016-02-061-3/+3
|
* correct errant spacingtedu2015-12-081-8/+8
|
* Tweaks utimensat/futimens handling to always update ctime, even when bothguenther2015-04-171-7/+6
| | | | | | | atime and mtime are UTIME_OMIT (at least for ufs, tmpfs, and ext2fs), and to correctly handle a timestamp of -1. ok millert@
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* First step towards making uiomove() take a size_t size argument:miod2015-02-101-2/+2
| | | | | | | - rename uiomove() to uiomovei() and update all its users. - introduce uiomove(), which is similar to uiomovei() but with a size_t. - rewrite uiomovei() as an uiomove() wrapper. ok kettenis@
* remove #if 0 cdefs.h blocksderaadt2015-01-211-6/+1
|
* unnecessary malloc.h includetedu2014-11-021-2/+1
|
* decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hderaadt2014-07-081-3/+1
| | | | | don't need to be married. ok guenther miod beck jsing kettenis
* Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofmpi2014-03-281-2/+2
| | | | | | <uvm/uvm.h> if possible and remove double inclusions. ok beck@, mlarkin@, deraadt@
* guenther's addition of filechk didn't take into account the differentespie2014-02-281-9/+7
| | | | | | | | | structure of tmpfs_write. rewrite the opening tests to conform more to ffs's code, so that overrun is not used unitialized. Patch by kettenis@ (on the road) deraadt@ "do it right away"
* Check for offset wraparound and enforce RLIMIT_FSIZE.guenther2014-02-251-1/+14
| | | | | problem reported by brad@ ok kettenis@ millert@
* bring over kqfilter code from ufs which works better than thetedu2014-01-221-2/+105
| | | | generic flavor. problems noted and tested by ajacoutot
* Delay checking the vnode locking of the target vnodes in tmpfs_rename()guenther2014-01-071-3/+8
| | | | | | | | until we've confirmed they're on the same filesystem as the source: not all filesystems do locking the same. problem report and testing chrisz@ ok espie@
* Move KASSERT a bit further down because it can apparently be triggered bykettenis2013-12-231-2/+3
| | | | | | | | | trying to hardlink a directory. While this is not allowed on tmpfs, this allows us to reach the code that checks for this such that we can return the appropriate error. Cluestick from Pedro Martelletto. ok espie@
* bring in a few improvements from pedro, guenther, me...espie2013-12-141-218/+37
| | | | | | | | | | | | | | thanks to krw@ for the original cherry-picking, millert@ for useful comment. so: - no longer expose internal kernel addresses, uses seq numbers instead - make sure the numbers don't overflow (millert@ UINT64_MAX)... a conservative estimate is that tmpfs will run out of seqs in >600 years... - don't malloc dents, put them on the stack and zero them - gc whiteout code - gc getpage/putpage code (shrink uvm instead) okay krw@, millert@
* A few fixes from Pedro Martelletto, adapted fromespie2013-10-101-25/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/bitrig/bitrig/commits/pedro_tmpfs_fixes 7efd381ac3: # mkdir -p x/y # mv x/y/. z (or mv x/y/.. z) (panic) 264ecd2c7b: # mknod x b 100 100 (can be any block/character device) # ls -lR / (panic) 7da08d22fd: # mkfifo x (or mknod x) # mv x y (panic) af0666c65a: # mount -t tmpfs -o -n16 tmpfs /mnt (create tmpfs with 16 inodes limit) # cd /mnt # touch x # for i in `jot 100 1 100`; do ln -s x $i; done (create 100 symlinks, = they "succeed" even though they failed) # ls -lart 7e9296a6f8: # mkdir x # touch x/y # chflags uappnd x (or sappnd) # rm x/y 936b9cf257: # mkdir -p x/y # rmdir x/y/.. (panic) de541406ef: # touch x # ln x y # stat -f %c x # sleep 10 # rm y # stat -f %c x okay guenther@, krw@
* The readdir vop should set uio_offset to the cookie of the entryguenther2013-09-221-6/+2
| | | | | | | | | | after the last entry that fit, but I had it setting it to the cookier of the entry after that, so it would skip one entry for each block required. Remove the no-longer-needed cnt/cntp variable while we're touching things. prodding and testing by espie@
* Update to match VOP_READDIR() changes: no more cookies, but d_off instead.guenther2013-09-011-41/+2
| | | | Prodding and initial diff from espie@
* plug name_ipool leak in tmpfs_link()espie2013-06-051-1/+2
| | | | from pedro.
* on drugs, did not read pedro's patch and just zapped the comment.espie2013-06-051-2/+2
| | | | Obviously will not do... fixed
* restore code commented out while debugging. From pedroespie2013-06-041-2/+2
|
* Update pathconf handling for -current..brad2013-06-041-11/+5
| | | | | | | | - Remove _PC_PATH_MAX, _PC_PIPE_BUF and _PC_SYNC_IO. - Add _PC_TIMESTAMP_RESOLUTION. - Change _PC_FILESIZEBITS from using "sizeof(off_t) * CHAR_BIT" to returning 64. With input from and Ok guenther@
* sprinkle $OpenBSD$, pointed out by pedroespie2013-06-031-0/+1
|
* import tmpfs code, originally from netbsd.espie2013-06-011-0/+2747
heavy lifting by Pedro Martelletto, timestamp fixes by me. THIS IS NOT ENABLED YET, AND REQUIRES UVM CHANGES AND REVIEW. Imported, so that working on it can be mostly done in tree with less painful diff exchanges, and that we have history of further changes. okay tedu@, deraadt@