summaryrefslogtreecommitdiffstats
path: root/sys/tmpfs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* bring in a few improvements from pedro, guenther, me...espie2013-12-145-527/+360
| | | | | | | | | | | | | | 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-103-27/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-223-19/+17
| | | | | | | | | | 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-012-68/+31
| | | | 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
|
* fix include guard locations (from pedro)espie2013-06-042-8/+8
|
* 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-038-0/+8
|
* import tmpfs code, originally from netbsd.espie2013-06-018-0/+5325
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@