| Commit message (Expand) | Author | Age | Files | Lines |
* | - Fix anoter dyslexic moment; an atomic_set_int should've become ACTIVESET, | jeff | 2005-03-01 | 1 | -1/+1 |
* | Remove debug printout of major/minor numbers, print name instead. | phk | 2005-02-27 | 1 | -2/+2 |
* | use uiomove return value instead of always returning 0 when doing a | sam | 2005-02-27 | 1 | -2/+1 |
* | - Add VOP locking asserts in several functions that have been implicated in | jeff | 2005-02-22 | 2 | -0/+5 |
* | The recomputation of file system summary at mount time can be a | delphij | 2005-02-20 | 3 | -5/+86 |
* | Try to unbreak the vnode locking around vop_reclaim() (based mostly on | phk | 2005-02-19 | 2 | -3/+1 |
* | When clearing a fragment, it's possible that the length is zero. | delphij | 2005-02-19 | 1 | -1/+1 |
* | - Remove the unused and unsafe ufs_ihashlookup. This function returned a | jeff | 2005-02-14 | 2 | -24/+0 |
* | Make non-SOFTUPDATES kernels compile again. | phk | 2005-02-11 | 2 | -317/+269 |
* | Make a some SYSCTL_NODEs and some of FFS's VFS_ methods static. | phk | 2005-02-10 | 4 | -18/+18 |
* | - In the softupdates case for ffs_truncate() we use vinvalbuf() to | jeff | 2005-02-09 | 1 | -0/+1 |
* | style polishing. | phk | 2005-02-09 | 1 | -4/+3 |
* | Add a new sysctl, "security.jail.chflags_allowed", which controls the | cperciva | 2005-02-08 | 1 | -4/+9 |
* | Split the vop_vector for ffs1 and ffs2, this is mostly for the different | phk | 2005-02-08 | 3 | -26/+33 |
* | Use ffs_truncate() directly instead of UFS_TRUNCATE() | phk | 2005-02-08 | 1 | -1/+1 |
* | Background writes are entirely an FFS/Softupdates thing. | phk | 2005-02-08 | 3 | -4/+174 |
* | Drag another softupdates tentacle back into FFS: Now that FFS's | phk | 2005-02-08 | 2 | -2/+7 |
* | Don't use the UFS_* and VFS_* functions where a direct call is possble. | phk | 2005-02-08 | 6 | -39/+39 |
* | Don't use VOP_LEASE() with operations on extended attribute backing | rwatson | 2005-02-08 | 1 | -10/+2 |
* | For snapshots we need all VOP_LOCKs to be exclusive. | phk | 2005-02-08 | 8 | -49/+42 |
* | For snapshots we need all VOP_LOCKs to be exclusive. | phk | 2005-02-08 | 2 | -29/+24 |
* | Use VOP_STRATEGY_APV() instead of direct dereference, this is more | phk | 2005-02-08 | 1 | -2/+2 |
* | - Use a seperate malloc tag for saved inode contents to help in debugging | jeff | 2005-02-02 | 1 | -4/+5 |
* | Back out previous commit, bde@ provided an example of something this | kensmith | 2005-02-02 | 1 | -6/+0 |
* | It was noticed that we do not change a file's access time when it gets | kensmith | 2005-02-02 | 1 | -0/+6 |
* | nit in /*- | imp | 2005-01-31 | 1 | -1/+1 |
* | Tell vnode_create_vobject() how big an object to create, rather | peadar | 2005-01-29 | 2 | -6/+5 |
* | Make filesystems get rid of their own vnodes vnode_pager object in | phk | 2005-01-28 | 1 | -0/+1 |
* | Remove unused argument to vrecycle() | phk | 2005-01-28 | 1 | -1/+1 |
* | Introduce and use g_vfs_close(). | phk | 2005-01-25 | 1 | -2/+2 |
* | Don't use VOP_GETVOBJECT, use vp->v_object directly. | phk | 2005-01-25 | 1 | -5/+4 |
* | Create a vnode object when the file is opened. Trust that we did so. | phk | 2005-01-24 | 2 | -14/+2 |
* | Don't create vnode_pager objects for the disk device. | phk | 2005-01-24 | 1 | -2/+0 |
* | Create a vp->v_object in VFS_FHTOVP() if we want to be exportable | phk | 2005-01-24 | 1 | -0/+1 |
* | Polish style. | phk | 2005-01-24 | 1 | -9/+4 |
* | - Convert the global LK lock to a mutex. | jeff | 2005-01-24 | 1 | -738/+454 |
* | - Initialize and destroy the per-filesystem ufs lock where appropriate. | jeff | 2005-01-24 | 1 | -3/+24 |
* | - Remove GIANT_REQUIRED where giant is no longer required. | jeff | 2005-01-24 | 1 | -10/+0 |
* | - Use the ufs lock to protect fs_active. | jeff | 2005-01-24 | 1 | -10/+26 |
* | - Acquire the ufs lock around several ffs_alloc functions that require | jeff | 2005-01-24 | 1 | -2/+23 |
* | - Don't use atomic operations to deal with the active array, instead | jeff | 2005-01-24 | 1 | -96/+183 |
* | - Acquire the ufs lock when manipulating some fields of struct fs. | jeff | 2005-01-24 | 1 | -7/+13 |
* | - Mark the struct fs members that require the ufsmount mutex. | jeff | 2005-01-24 | 1 | -7/+15 |
* | - Change some function parameters so that the ufsmount structure is | jeff | 2005-01-24 | 1 | -3/+4 |
* | - Add a mutex to the ufsmount structure. This mutex is used to protect | jeff | 2005-01-24 | 1 | -3/+8 |
* | Fix ACLs handling for the root file system. | pjd | 2005-01-15 | 1 | -0/+5 |
* | Eliminate unused and unnecessary "cred" argument from vinvalbuf() | phk | 2005-01-14 | 2 | -7/+6 |
* | Ditch vfs_object_create() and make the callers call VOP_CREATEVOBJECT() | phk | 2005-01-13 | 2 | -5/+4 |
* | Add BO_SYNC() and add a default which uses the secret vnode pointer | phk | 2005-01-11 | 1 | -0/+1 |
* | Wrap the bufobj operations in macros: BO_STRATEGY() and BO_WRITE() | phk | 2005-01-11 | 2 | -2/+2 |