aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Add two arguments to the vfs_hash() KPI so that filesystems which doPoul-Henning Kamp2005-03-161-2/+2
* Don't hold a reference on the disk vnode for each inode.Poul-Henning Kamp2005-03-152-2/+2
* Improve the vfs_hash() API: vput() the unneeded vnode centrally toPoul-Henning Kamp2005-03-151-3/+1
* Simplify the vfs_hash calling convention.Poul-Henning Kamp2005-03-151-23/+3
* - Destroy the vnode object earlier in VOP_RECLAIM as we need more ofJeff Roberson2005-03-151-3/+4
* Use vfs_hash instead of home-rolled.Poul-Henning Kamp2005-03-146-191/+13
* - It is not legal to access v_data without the vnode lock or interlockJeff Roberson2005-03-131-1/+11
* - The VI_DOOMED flag now signals the end of a vnode's relationship withJeff Roberson2005-03-131-11/+4
* - The VI_DOOMED flag now signals the end of a vnode's relationship withJeff Roberson2005-03-132-2/+2
* - Fix an assert now that the XLOCK no longer exists.Jeff Roberson2005-03-131-4/+1
* - In ufs_mknod(), hold the lock across the call to vgone() as that is nowJeff Roberson2005-03-131-24/+4
* - Don't drop the lock in ufs_inactive().Jeff Roberson2005-03-131-4/+0
* - Fix anoter dyslexic moment; an atomic_set_int should've become ACTIVESET,Jeff Roberson2005-03-011-1/+1
* Remove debug printout of major/minor numbers, print name instead.Poul-Henning Kamp2005-02-271-2/+2
* use uiomove return value instead of always returning 0 when doing aSam Leffler2005-02-271-2/+1
* - Add VOP locking asserts in several functions that have been implicated inJeff Roberson2005-02-222-0/+5
* The recomputation of file system summary at mount time can be aXin LI2005-02-203-5/+86
* Try to unbreak the vnode locking around vop_reclaim() (based mostly onPoul-Henning Kamp2005-02-192-3/+1
* When clearing a fragment, it's possible that the length is zero.Xin LI2005-02-191-1/+1
* - Remove the unused and unsafe ufs_ihashlookup. This function returned aJeff Roberson2005-02-142-24/+0
* Make non-SOFTUPDATES kernels compile again.Poul-Henning Kamp2005-02-112-317/+269
* Make a some SYSCTL_NODEs and some of FFS's VFS_ methods static.Poul-Henning Kamp2005-02-104-18/+18
* - In the softupdates case for ffs_truncate() we use vinvalbuf() toJeff Roberson2005-02-091-0/+1
* style polishing.Poul-Henning Kamp2005-02-091-4/+3
* Add a new sysctl, "security.jail.chflags_allowed", which controls theColin Percival2005-02-081-4/+9
* Split the vop_vector for ffs1 and ffs2, this is mostly for the differentPoul-Henning Kamp2005-02-083-26/+33
* Use ffs_truncate() directly instead of UFS_TRUNCATE()Poul-Henning Kamp2005-02-081-1/+1
* Background writes are entirely an FFS/Softupdates thing.Poul-Henning Kamp2005-02-083-4/+174
* Drag another softupdates tentacle back into FFS: Now that FFS'sPoul-Henning Kamp2005-02-082-2/+7
* Don't use the UFS_* and VFS_* functions where a direct call is possble.Poul-Henning Kamp2005-02-086-39/+39
* Don't use VOP_LEASE() with operations on extended attribute backingRobert Watson2005-02-081-10/+2
* For snapshots we need all VOP_LOCKs to be exclusive.Poul-Henning Kamp2005-02-088-49/+42
* For snapshots we need all VOP_LOCKs to be exclusive.Poul-Henning Kamp2005-02-082-29/+24
* Use VOP_STRATEGY_APV() instead of direct dereference, this is morePoul-Henning Kamp2005-02-081-2/+2
* - Use a seperate malloc tag for saved inode contents to help in debuggingJeff Roberson2005-02-021-4/+5
* Back out previous commit, bde@ provided an example of something thisKen Smith2005-02-021-6/+0
* It was noticed that we do not change a file's access time when it getsKen Smith2005-02-021-0/+6
* nit in /*-Warner Losh2005-01-311-1/+1
* Tell vnode_create_vobject() how big an object to create, ratherPeter Edwards2005-01-292-6/+5
* 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
* Introduce and use g_vfs_close().Poul-Henning Kamp2005-01-251-2/+2
* Don't use VOP_GETVOBJECT, use vp->v_object directly.Poul-Henning Kamp2005-01-251-5/+4
* Create a vnode object when the file is opened. Trust that we did so.Poul-Henning Kamp2005-01-242-14/+2
* Don't create vnode_pager objects for the disk device.Poul-Henning Kamp2005-01-241-2/+0
* Create a vp->v_object in VFS_FHTOVP() if we want to be exportablePoul-Henning Kamp2005-01-241-0/+1
* Polish style.Poul-Henning Kamp2005-01-241-9/+4
* - Convert the global LK lock to a mutex.Jeff Roberson2005-01-241-738/+454
* - Initialize and destroy the per-filesystem ufs lock where appropriate.Jeff Roberson2005-01-241-3/+24
* - Remove GIANT_REQUIRED where giant is no longer required.Jeff Roberson2005-01-241-10/+0