summaryrefslogtreecommitdiff
path: root/sys/fs/nullfs/null_vnops.c
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/6.2.0_cvscvs2svn2007-01-111-1/+1
* MFC Revs 1.91, 1.90Jeff Roberson2006-03-131-9/+34
* Oops, actually MFC 1.89 (by kan) which was missed in previous commit:Xin LI2005-09-171-4/+28
* MFC 1.88 (by ssouhlal):Xin LI2005-09-171-4/+5
* - As this is presently the one and only place where duplicate acquires ofJeff Roberson2005-04-221-1/+1
* - 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-151-130/+41
* - 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-131-10/+6
* 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
* whitespacePoul-Henning Kamp2005-01-101-1/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Back when VOP_* was introduced, we did not have new-style structPoul-Henning Kamp2004-12-011-26/+20
* Mechanically change prototypes for vnode operations to use the new typedefs.Poul-Henning Kamp2004-12-011-14/+14
* Eliminate null_open() and use instead null_bypass().Poul-Henning Kamp2004-11-261-24/+0
* Remove advertising clause from University of California Regent'sWarner Losh2004-04-071-4/+0
* Don't try to unlock the directory vnode in null_lookup() if the lock isDon Lewis2004-01-111-1/+1
* v_vxproc was a bogus name for a thread (pointer).Bruce Evans2003-12-281-2/+2
* MFp4: Fix two bugs causing possible deadlocks or panics, and one nit:Tim J. Robbins2003-06-171-4/+57
* Finish cleanup of vprint() which was begun with changing v_tag to a string.Nate Lawson2003-03-031-2/+1
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/Jens Schweikhardt2002-12-301-1/+1
* Be consistent about functions being static.Poul-Henning Kamp2002-10-161-1/+1
* Regularize the vop_stdlock'ing protocol across all the filesystemsKirk McKusick2002-10-141-0/+1
* Remove all use of vnode->v_tag, replacing with appropriate substitutes.Nate Lawson2002-09-141-1/+2
* - Replace v_flag with v_iflag and v_vflagJeff Roberson2002-08-041-2/+2
* Fix a race during null node creation between relookuping the hash andSemen Ustimenko2002-06-131-6/+13
* Fix the "error" path (when dropping not fully initialized vnode).Semen Ustimenko2002-06-131-13/+6
* Fix wrong locking in null_inactive and null_reclaim. This makes nullfsSemen Ustimenko2002-06-131-10/+7
* Fix null_lock() not unlocking vp->v_interlock if LK_THISLAYER.Semen Ustimenko2002-05-211-2/+6
* More s/file system/filesystem/gTom Rhodes2002-05-161-7/+7
* Cannot release vnode underlying the nullfs vnode in null_inactiveKirk McKusick2002-03-181-19/+26
* KSE Milestone 2Julian Elischer2001-09-121-35/+35
* mount_null(8) -> mount_nullfs(8).Ruslan Ermilov2001-05-241-4/+4
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileRuslan Ermilov2001-05-231-1/+1
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-4/+7
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-2/+2
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-291-1/+0
* Fix nullfs breakage caused by incomplete migration of v_interlock fromBoris Popov2000-10-151-3/+5
* Prevent dereference of NULL pointer when null_lock() and null_unlock()Boris Popov2000-10-031-1/+7
* Fix vnode locking bugs in the nullfs.Boris Popov2000-09-251-65/+228