aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_default.c
Commit message (Expand)AuthorAgeFilesLines
* - Convert the bufobj lock to rwlock.Jeff Roberson2013-05-311-1/+1
* Switch the vm_object mutex to be a rwlock. This will enable in theAttilio Rao2013-03-091-3/+3
* Make the default implementation of the VOP_VPTOCNP() fail if theKonstantin Belousov2013-03-011-2/+6
* The r241025 fixed the case when a binary, executed from nullfs mount,Konstantin Belousov2012-11-021-0/+20
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-4/+1
* Fix the mis-handling of the VV_TEXT on the nullfs vnodes.Konstantin Belousov2012-09-281-0/+30
* When synchronously syncing a device (MNT_WAIT), wait for buffersKirk McKusick2012-06-091-2/+11
* Skip directory entries with zero inode number during traversal.Gleb Kurtsou2012-05-161-2/+2
* Replace the MNT_VNODE_FOREACH interface with MNT_VNODE_FOREACH_ALL.Kirk McKusick2012-04-171-10/+5
* Introduce VOP_UNP_BIND(), VOP_UNP_CONNECT(), and VOP_UNP_DETACH()Mikolaj Golub2012-02-291-0/+27
* Existing VOP_VPTOCNP() interface has a fatal flow that is critical forKonstantin Belousov2011-11-191-1/+1
* Add the posix_fadvise(2) system call. It is somewhat similar toJohn Baldwin2011-11-041-0/+53
* Add a lock flags argument to the VFS_FHTOVP() file systemRick Macklem2011-05-221-1/+2
* Allow VOP_ALLOCATE to be iterative, and have kern_posix_fallocate(9)Matthew D Fleming2011-04-191-23/+21
* Add the posix_fallocate(2) syscall. The default implementation inMatthew D Fleming2011-04-181-0/+131
* If we read zero bytes from the directory, early out with ENOENTBrian Somers2010-08-251-2/+6
* uio_resid isn't updated by VOP_READDIR for nfs filesystems. UseBrian Somers2010-08-231-3/+2
* Add VOP_ADVLOCKPURGE so that the file system is called when purgingZachary Loafman2010-05-121-0/+11
* Supply default implementation of VOP_RENAME() that does neccessaryKonstantin Belousov2010-04-021-0/+16
* Use vput() instead of VOP_UNLOCK()+vrele(). The comment here is out-dated,Pawel Jakub Dawidek2010-02-181-4/+1
* Revert r198873. Having different VAPPEND semantics for VOP_ACCESS(9)Edward Tomasz Napierala2009-11-111-8/+0
* While VAPPEND without VWRITE makes sense for VOP_ACCESSX(9) (e.g. to checkEdward Tomasz Napierala2009-11-041-0/+8
* Provide default implementation for VOP_ACCESS(9), so that filesystems whichEdward Tomasz Napierala2009-10-011-0/+15
* Add explicit struct ucred * argument for VOP_VPTOCNP, to be used byKonstantin Belousov2009-06-211-4/+5
* Add another flags argument to vn_open_cred. Use it to specify that someKonstantin Belousov2009-06-211-1/+1
* Add mac_framework.h include missed when MAC code was (presumably) copiedRobert Watson2009-06-051-0/+2
* Add VOP_ACCESSX, which can be used to query for newly added V*Edward Tomasz Napierala2009-05-301-0/+17
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-12/+8
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* Add a default implementation for VOP_VPTOCNP(9) which scans the parentJoe Marcus Clarke2009-03-081-1/+235
* Extract the no_poll() and vop_nopoll() code into the common routineKonstantin Belousov2009-03-061-11/+1
* Add a new VOP, VOP_VPTOCNP, which translates a vnode to its component nameJoe Marcus Clarke2008-12-121-0/+8
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-6/+10
* Move the head of byte-level advisory lock list from theKonstantin Belousov2008-04-161-1/+40
* - Complete part of the unfinished bufobj work by consistently usingJeff Roberson2008-03-221-15/+12
* Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it isAttilio Rao2008-02-251-4/+1
* - Introduce lockmgr_args() in the lockmgr space. This function performsAttilio Rao2008-02-151-1/+2
* Cleanup lockmgr interface and exported KPI:Attilio Rao2008-01-241-4/+3
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-4/+5
* Since renaming of vop_lock to _vop_lock, pre- and post-conditionKonstantin Belousov2007-05-181-2/+2
* Remove VFS_VPTOFH entirely. API is already broken and it is good time toPawel Jakub Dawidek2007-02-161-14/+1
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-151-0/+11
* change vop_lock handling to allowing tracking of callers' file and line forKip Macy2006-11-131-3/+5
* Don't try to obtain a reference to a nonexisting (NULL) mount structure inTor Egge2006-09-201-4/+6
* - GETWRITEMOUNT now returns a referenced mountpoint to prevent itsJeff Roberson2006-03-311-1/+15
* - Add a comment warning about an anomalous condition where we VOP_UNLOCKJeff Roberson2006-01-301-0/+1
* Add marker vnodes to ensure that all vnodes associated with the mount point areTor Egge2006-01-091-3/+5
* Eradicate caddr_t from the VFS API.Dag-Erling Smørgrav2005-12-141-1/+1
* In vop_stdpathconf(ap) also default for _PC_NAME_MAX and _PC_PATH_MAX.Poul-Henning Kamp2005-08-171-0/+6
* - Replace the series of DEBUG_LOCKS hacks which tried to save the vn_lockJeff Roberson2005-08-031-5/+0