aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_default.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* - Add and enhance asserts related to the wrong bufobj panic.Jeff Roberson2005-06-141-0/+3
* Allow EVFILT_VNODE events to work on every filesystem type, not justSuleiman Souhlal2005-06-091-0/+8
* - Remove unnecessary spls.Jeff Roberson2005-05-011-10/+2
* - Now that writes to character devices supporting softupdates canJeff Roberson2005-04-031-3/+4
* - Fixup the default vfs_root function to match the new prototype.Jeff Roberson2005-03-241-1/+2
* - Don't drop the lock in the default inactive handler anymore, VOP_NULLJeff Roberson2005-03-131-14/+1
* Remove VFS_START(). Its original purpose involved the mfs filesystem,David Schultz2005-02-201-10/+0
* Remove vop_stddestroyvobject()Poul-Henning Kamp2005-02-071-13/+0
* Move the contents of vop_stddestroyvobject() to the new vnode_pagerPoul-Henning Kamp2005-01-281-26/+2
* Take VOP_GETVOBJECT() out to pasture. We use the direct pointer now.Poul-Henning Kamp2005-01-251-24/+0
* Kill VOP_CREATEVOBJECT(), it is now the responsibility of the filesystemPoul-Henning Kamp2005-01-251-14/+0
* Move the body of vop_stdcreatevobject() over to the vnode_pager underPoul-Henning Kamp2005-01-241-50/+1
* Kill the VV_OBJBUF and test the v_object for NULL instead.Poul-Henning Kamp2005-01-241-2/+1
* - Remove GIANT_REQUIRED where it is no longer required.Jeff Roberson2005-01-241-4/+0
* Ditch vfs_object_create() and make the callers call VOP_CREATEVOBJECT()Poul-Henning Kamp2005-01-131-1/+1
* Remove the unused credential argument from VOP_FSYNC() and VFS_SYNC().Poul-Henning Kamp2005-01-111-5/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Add missing vop_bypass (returning EOPNOTSUPP).Poul-Henning Kamp2004-12-031-1/+3
* Back when VOP_* was introduced, we did not have new-style structPoul-Henning Kamp2004-12-011-42/+25
* Make more sense out of vop_stdcreatevobject()Poul-Henning Kamp2004-11-181-21/+21
* Make VOP_BMAP return a struct bufobj for the underlying storage devicePoul-Henning Kamp2004-11-151-3/+3
* The default VOP_REVOKE() should be vop_panic() as we should neverPoul-Henning Kamp2004-11-131-1/+1
* Properly implement a default version of VOP_GETWRITEMOUNT.Poul-Henning Kamp2004-11-061-0/+1
* Move a call to wakeup() from vm_object_terminate() to vnode_pager_dealloc()Alan Cox2004-11-061-0/+1
* Remove VOP_SPECSTRATEGY() from the system.Poul-Henning Kamp2004-10-291-1/+0
* Eliminate unnecessary KASSERT.Poul-Henning Kamp2004-10-271-3/+0
* Loose the v_dirty* and v_clean* alias macros.Poul-Henning Kamp2004-10-251-4/+3
* Move the VI_BWAIT flag into no bo_flag element of bufobj and call it BO_WWAITPoul-Henning Kamp2004-10-211-9/+7
* Use vn_isdisk() to check if vnode is a disk.Poul-Henning Kamp2004-09-241-1/+1
* use vn_isdisk() to see if vnode is a disk.Poul-Henning Kamp2004-09-241-1/+1
* Make VFS_ROOT() and vflush() take a thread argument.Alfred Perlstein2004-07-121-1/+2