aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_default.c
Commit message (Expand)AuthorAgeFilesLines
* Include error number in the "fsync: giving up on dirty" messageKirk McKusick2018-02-231-3/+4
* For many years the message "fsync: giving up on dirty" has occationallyKirk McKusick2018-01-261-6/+17
* Rework pathconf handling for FIFOs.John Baldwin2017-12-191-3/+0
* Move NAME_MAX, LINK_MAX, and CHOWN_RESTRICTED out of vop_stdpathconf().John Baldwin2017-12-191-9/+0
* sys: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
* Only handle _PC_MAX_CANON, _PC_MAX_INPUT, and _PC_VDISABLE for TTY devices.John Baldwin2017-09-211-9/+0
* For UNIX sockets make vnode point not to the socket, but to the UNIX PCB,Gleb Smirnoff2017-06-021-3/+3
* Relax the locking requirements for vm_object_page_noreuse(). WhileAlan Cox2017-03-151-2/+2
* Make the code match the comments: If we have ANY buf's that failedWarner Losh2017-02-211-2/+2
* lockmgr: implement fast pathMateusz Guzik2017-02-121-4/+8
* Do not allocate struct statfs on kernel stack.Konstantin Belousov2017-01-051-5/+10
* Renumber license clauses in sys/kern to avoid skipping #3Ed Maste2016-09-151-1/+1
* Implement VOP_FDATASYNC() for msdosfs.Konstantin Belousov2016-08-151-0/+11
* Add an implementation of fdatasync(2).Konstantin Belousov2016-08-151-0/+9
* VOP_FSYNC() does not take cred as an argument. Correct comment.Konstantin Belousov2016-08-151-1/+0
* Replace all remaining calls to vprint(9) with vn_printf(9), and removeEdward Tomasz Napierala2016-08-101-2/+2
* Simplify AIO initialization now that it is standard.John Baldwin2016-03-091-0/+3
* Two fixes for excessive iterations after r292326.Konstantin Belousov2016-01-051-8/+2
* A change to KPI of vm_pager_get_pages() and underlying VOP_GETPAGES().Gleb Smirnoff2015-12-161-4/+6
* Optimize vop_stdadvise(POSIX_FADV_DONTNEED). Instead of looking up aKonstantin Belousov2015-12-161-29/+13
* Ensure that vop_stdadvise() does not call getblk() on vnodes that have anMark Johnston2015-10-011-10/+9
* As a step towards the elimination of PG_CACHED pages, rework the handlingMark Johnston2015-09-301-10/+44
* vfs: use shared vnode locking when looking up ".." in vop_stdvptocnpMateusz Guzik2015-07-041-5/+5
* Fix the comment introduced in r276192 so that it clearlyRick Macklem2014-12-251-3/+4
* Modify vop_stdadvlock{async}() so that it onlyRick Macklem2014-12-241-14/+22
* Merge from projects/sendfile:Gleb Smirnoff2014-11-231-1/+13
* Remove unused arguments for VOP_GETPAGES(), VOP_PUTPAGES().Gleb Smirnoff2014-09-101-2/+0
* - 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