aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nullfs
Commit message (Expand)AuthorAgeFilesLines
* Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it isAttilio Rao2008-02-252-5/+4
* Conver all explicit instances to VOP_ISLOCKED(arg, NULL) intoAttilio Rao2008-02-081-3/+3
* Cleanup lockmgr interface and exported KPI:Attilio Rao2008-01-241-2/+1
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-132-9/+7
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-102-3/+3
* Get rid of qaddr_t.Alfred Perlstein2007-10-161-1/+1
* This changes give nullfs correctly work with latest unionfs.Daichi GOTO2007-10-142-5/+25
* Where I previously removed calls to kdb_enter(), now remove include ofRobert Watson2007-05-292-2/+0
* Rather than entering the debugger via kdb_enter() in the event theRobert Watson2007-05-271-5/+2
* Since renaming of vop_lock to _vop_lock, pre- and post-conditionKonstantin Belousov2007-05-181-2/+2
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-0/+15
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-152-13/+10
* change vop_lock handling to allowing tracking of callers' file and line forKip Macy2006-11-131-2/+2
* Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag.Tor Egge2006-09-261-1/+6
* Remove incorrect null_checkexp() routine. ThisCraig Rodrigues2006-05-281-14/+0
* Modify MNT_UPDATE behavior for nullfs so that it does notCraig Rodrigues2006-05-281-2/+7
* - Define a null_getwritemount to get the mount-point for the lowerJeff Roberson2006-03-121-2/+26
* - spell VOP_LOCK(vp, LK_RELEASE... VOP_UNLOCK(vp,... so that asserts inJeff Roberson2006-02-221-7/+8
* - Assert that the lowervp is locked in null_hashget().Jeff Roberson2006-02-221-26/+21
* Correctly set MNTK_MPSAFE flag from the lower vnode's mount rather thanJohn Baldwin2006-02-101-1/+1
* - No need to WANTPARENT when we're just going to vrele it in a deadlockJeff Roberson2006-02-071-4/+1
* Eradicate caddr_t from the VFS API.Dag-Erling Smørgrav2005-12-141-1/+1
* Normalize a significant number of kernel malloc type names:Robert Watson2005-10-312-3/+3
* Reflect mpsafety of the underlying filesystem in the nullfs image.Kris Kennaway2005-10-161-0/+1
* Handle a race condition where NULLFS vnode can be cleaned while threadsAlexander Kabaev2005-09-151-4/+28
* Use vput() instead of vrele() in null_reclaim() since the lower vnodeSuleiman Souhlal2005-09-021-4/+5
* - As this is presently the one and only place where duplicate acquires ofJeff Roberson2005-04-221-1/+1
* - Clear VI_OWEINACT before calling vget() with no lock type. We knowJeff Roberson2005-04-111-0/+7
* - Honor the flags argument passed to null_root(). The filesystem belowJeff Roberson2005-04-111-1/+1
* - Update vfs_root implementations to match the new prototype. None ofJeff Roberson2005-03-241-1/+2
* - Lock the clearing of v_data so it is safe to inspect it with theJeff Roberson2005-03-171-1/+7
* - Assume that all lower filesystems now support proper locking. AssertJeff Roberson2005-03-153-190/+63
* - We have to transfer lockers after reseting our vnlock pointer.Jeff Roberson2005-03-151-0/+5
* - The VI_DOOMED flag now signals the end of a vnode's relationship withJeff Roberson2005-03-132-12/+8
* Introduce vx_wait{l}() and use it instead of home-rolled versions.Poul-Henning Kamp2005-02-171-4/+2
* Remove vop_destroyvobject()Poul-Henning Kamp2005-02-071-27/+1
* Make filesystems get rid of their own vnodes vnode_pager object inPoul-Henning Kamp2005-01-281-0/+1
* Remove unused argument to vrecycle()Poul-Henning Kamp2005-01-281-1/+1
* Take VOP_GETVOBJECT() out to pasture. We use the direct pointer now.Poul-Henning Kamp2005-01-251-11/+0
* Don't implement vop_createvobject(), vop_open() and vop_close() managesPoul-Henning Kamp2005-01-241-19/+0
* Add null_open() and null_close() which calls null_bypass() and managedPoul-Henning Kamp2005-01-241-0/+29
* Kill the VV_OBJBUF and test the v_object for NULL instead.Poul-Henning Kamp2005-01-241-2/+1
* Remove "register" keywords.Poul-Henning Kamp2005-01-241-2/+2
* Style: Remove the commented out vop_foo_args replicas.Poul-Henning Kamp2005-01-241-103/+15
* Change the generated VOP_ macro implementations to improve type checkingPoul-Henning Kamp2005-01-131-1/+1
* Remove the unused credential argument from VOP_FSYNC() and VFS_SYNC().Poul-Henning Kamp2005-01-111-2/+1
* whitespacePoul-Henning Kamp2005-01-101-1/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-064-4/+4
* Use vfs_mountedfrom(), rely on vfs_mount.c calling VFS_STATFS().Poul-Henning Kamp2004-12-061-5/+2
* VFS_STATFS(mp, ...) is mostly called with &mp->mnt_stat, but a few casesPoul-Henning Kamp2004-12-051-5/+0