aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/tmpfs
Commit message (Expand)AuthorAgeFilesLines
* Cleanup unnecessary semicolons from the kernel.Pedro F. Giffuni2016-04-101-1/+1
* Clear the cookie pointer on error in tmpfs_readdir().Mark Johnston2016-02-121-1/+4
* A change to KPI of vm_pager_get_pages() and underlying VOP_GETPAGES().Gleb Smirnoff2015-12-161-1/+2
* In tmpfs_chtimes(), remove checks on the nanosecond level whenChristian Brueffer2015-07-261-6/+4
* Check suspendability on the mountpoint returned by VOP_GETWRITEMOUNT.Mark Johnston2015-07-051-1/+11
* Huge cleanup of random(4) code.Mark Murray2015-06-301-0/+3
* Restore the td_cookie value for the tmpfs directory entry which was aKonstantin Belousov2015-06-191-0/+1
* Make KPI of vm_pager_get_pages() more strict: if a pager changes a pageGleb Smirnoff2015-06-121-6/+4
* tmpfs_getattr(): Return more correct allocated byte counts.Will Andrews2015-04-101-2/+6
* Remove duplicated assignment.Konstantin Belousov2015-02-031-1/+0
* Update directory times immediately after an entry is created orKonstantin Belousov2015-01-311-0/+2
* Remove single-use boolean.Konstantin Belousov2015-01-311-3/+1
* POSIX states that write(2) "shall mark for update the last dataKonstantin Belousov2015-01-312-2/+3
* Update mtime for tmpfs files modified through memory mapping. SimilarKonstantin Belousov2015-01-284-5/+67
* tmpfs does not use UVM on FreeBSD.Konstantin Belousov2015-01-281-4/+4
* Handle MAKEENTRY cnp flag in the VOP_CREATE(). Curiously, someKonstantin Belousov2014-12-211-1/+5
* The VOP_LOOKUP() implementations for CREATE op do not put the nameKonstantin Belousov2014-12-181-1/+1
* tmpfs: allow shared file lookupsMateusz Guzik2014-10-211-1/+1
* Provide vfs suspension support only for filesystems which need it, takeMateusz Guzik2014-10-201-9/+1
* Provide vfs suspension support only for filesystems which need it.Mateusz Guzik2014-10-191-0/+9
* Do not ignore error from tmpfs_alloc_vp(). It results in access toKonstantin Belousov2014-07-161-1/+3
* Remove unused header.Konstantin Belousov2014-07-161-1/+0
* Check for the cross-device cross-link attempt in the VFS, instead ofKonstantin Belousov2014-07-161-15/+0
* Rework the tmpfs unmount.Konstantin Belousov2014-07-143-26/+73
* Change forgotten in r268615. Set the OBJ_TMPFS_NODE flag forKonstantin Belousov2014-07-141-1/+1
* Use tmpfs_vn_get_ino_gen() to handle the races with reclaim in tmpfsKonstantin Belousov2014-07-141-13/+13
* Style. Add comment about lock mode.Konstantin Belousov2014-07-142-1/+2
* In tmpfs_alloc_file(), code after the 'out' label does only 'returnKonstantin Belousov2014-07-141-9/+5
* Add convenience macro to assert tmpfs node lock.Konstantin Belousov2014-07-142-1/+3
* Add some assertions for the code handling vm_object for tmpfs vnode.Konstantin Belousov2014-07-142-0/+3
* The tmpfs_link() must not dereference the filesystem-specific data forKonstantin Belousov2014-07-141-2/+2
* Remove code separator lines which do not conform to style(9).Konstantin Belousov2014-07-147-132/+0
* In msdosfs_setattr(), add a check for result of the utimes(2)Konstantin Belousov2014-06-173-24/+15
* Allow shared locking for the tmpfs vnodes.Konstantin Belousov2014-06-041-0/+2
* Rename global cnt to vm_cnt to avoid shadowing.Bryan Drewery2014-03-221-1/+1
* Add missing FALLTHROUGH comment in tmpfs_dir_getdents for looking up '.' andBryan Drewery2014-03-141-0/+1
* Rename cnt to maxcookies and change its use as the condition for when toBryan Drewery2014-03-142-14/+21
* Cleanup redundant logic and add some comments to help explain howBryan Drewery2014-03-141-14/+17
* Fix -o size less than PAGE_SIZE resulting in SIZE_MAX being used.Bryan Drewery2014-03-141-2/+4
* Support storing 7 additional file flags in tmpfs:Kenneth D. Merry2013-08-281-3/+4
* Allow tmpfs be mounted inside jail.Xin LI2013-08-231-1/+7
* Extract the general-purpose code from tmpfs to perform uiomove fromKonstantin Belousov2013-08-211-211/+24
* The soft and hard busy mechanism rely on the vm object lock to work.Attilio Rao2013-08-092-14/+7
* The tmpfs_alloc_vp() is used to instantiate vnode for the tmpfs node,Konstantin Belousov2013-08-052-0/+25
* Revert r253939:Attilio Rao2013-08-051-6/+8
* The page hold mechanism is fast but it has couple of fallouts:Attilio Rao2013-08-041-8/+6
* Remove unnecessary soft busy of the page before to do vn_rdwr() inAttilio Rao2013-08-041-5/+3
* tmpfs works perfectly fine with -o union -- there is no reason to exclude itNathan Whitehorn2013-07-231-1/+1
* Add missing VM object unlocks in an error case.Alan Cox2013-06-071-0/+2
* Don't busy the page unless we are likely to release the object lock.Alan Cox2013-06-061-4/+7