aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/tmpfs
Commit message (Expand)AuthorAgeFilesLines
* Eliminate two dubious attempts at optimizing the implementation of aAlan Cox2011-02-221-12/+4
* tmpfs_remove() isn't modifying the file's data, so it shouldn't setAlan Cox2011-02-191-2/+1
* Further simplify tmpfs_reg_resize(). Also, update its comments, includingAlan Cox2011-02-141-17/+12
* Eliminate tn_reg.tn_aobj_pages. Instead, correctly maintain the vmAlan Cox2011-02-132-33/+26
* In tmpfs_readdir(), normalize handling of the directory entries thatKonstantin Belousov2011-01-202-4/+5
* tmpfs + sendfile: do not produce partially valid pages for vnode's tailAndriy Gapon2010-10-121-3/+6
* tmpfs, zfs + sendfile: mark page bits as valid after populating it with dataAndriy Gapon2010-09-151-0/+2
* Avoid "Entry can disappear before we lock fdvp" panic.Ivan Voras2010-09-071-3/+7
* Add support for whiteouts on tmpfs.Ed Schouten2010-08-223-40/+116
* Eliminate unnecessary page queues locking.Alan Cox2010-06-161-5/+1
* Style fixes and removal of unneeded variable.Edward Tomasz Napierala2010-05-061-2/+1
* Move checking against RLIMIT_FSIZE into one place, vn_rlimit_fsize().Edward Tomasz Napierala2010-05-051-11/+2
* Push down the acquisition of the page queues lock into vm_page_unwire().Alan Cox2010-05-051-2/+0
* Acquire the page lock around vm_page_unwire() and vm_page_wire().Alan Cox2010-05-031-0/+4
* It makes no sense for vm_page_sleep_if_busy()'s helper, vm_page_sleep(),Alan Cox2010-05-021-3/+27
* Add "maxfilesize" mount option for tmpfs to allow specifying theJaakko Heinonen2010-01-291-57/+8
* - Change the type of nodes_max to u_int and use "%u" format string toJaakko Heinonen2010-01-202-7/+10
* - Fix some style bugs in tmpfs_mount(). [1]Jaakko Heinonen2010-01-132-11/+7
* - Change the type of size_max to u_quad_t because its value is convertedJaakko Heinonen2010-01-081-3/+3
* There is no need to "busy" a page when the object is locked for the durationAlan Cox2009-10-261-2/+1
* Add locking around access to parent node, and bail out when the parentXin LI2009-10-113-8/+115
* Add a special workaround to handle UIO_NOCOPY case. This fixes dataXin LI2009-10-071-24/+80
* Fix a bug that causes the fsx test case of mmap'ed page being out of syncXin LI2009-10-041-2/+6
* Implement global and per-uid accounting of the anonymous memory. AddKonstantin Belousov2009-06-231-1/+2
* Eliminate unnecessary variables.Alan Cox2009-06-131-4/+2
* Eliminate redundant setting of a page's valid bits and pointless clearingAlan Cox2009-05-271-2/+2
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-114-27/+23
* Use uiomove_fromphys() instead of the combination of sf_buf and uiomove().Alan Cox2009-02-221-34/+11
* Simplify the unwiring and activation of pages.Alan Cox2009-02-221-4/+2
* Lookup up the directory entry for the tmpfs node that are deleted byKonstantin Belousov2009-02-083-22/+10
* Remove unused local variables.Bjoern A. Zeeb2009-01-311-2/+0
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-281-4/+4
* The kernel implemented 'memcmp' is an alias for 'bcmp'. However, memcmpDavid E. O'Brien2008-09-233-3/+3
* fdescfs, devfs, mqueuefs, nfs, portalfs, pseudofs, tmpfs and xfsKonstantin Belousov2008-09-201-2/+0
* Initialize va_rdev to NODEV instead of 0 or VNOVAL in VOP_GETATTR().Konstantin Belousov2008-09-201-1/+1
* Initialize va_flags and va_filerev properly in VOP_GETATTR(). Don'tKonstantin Belousov2008-09-201-3/+1
* Reflect license change of NetBSD code.Xin LI2008-09-037-56/+7
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-282-8/+7
* Do not redo the vnode tear-down work already done by insmntque() whenKonstantin Belousov2008-06-151-4/+1
* Move the head of byte-level advisory lock list from theKonstantin Belousov2008-04-163-36/+0
* Add the new kernel-mode NFS Lock Manager. To use it instead of theDoug Rabson2008-03-261-0/+15
* Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it isAttilio Rao2008-02-252-30/+30
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-132-3/+3
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-103-4/+4
* Turn MPASS(0) into panic with more obvious reason why the assertionXin LI2007-12-071-5/+5
* size_max should be unsigned, as such, use size_t here.Xin LI2007-12-061-1/+1
* Explicitly initialize 'error' to 0 (two places). It lets one to build tmpfsWojciech A. Koszek2007-12-041-1/+3
* MFp4: Several fixes to tmpfs which makes it to survive from pho@'sXin LI2007-11-184-33/+46
* MFp4: Fix several style(9) bugs.Xin LI2007-11-181-19/+12
* Correct a stack overflow which will trigger panics whenXin LI2007-11-121-1/+1