| Commit message (Expand) | Author | Age | Files | Lines |
* | Put a version element in the VFS filesystem configuration structure | phk | 2004-07-30 | 1 | -4/+4 |
* | Do a pass over all modules in the kernel and make them return EOPNOTSUPP | phk | 2004-07-15 | 1 | -0/+1 |
* | Make VFS_ROOT() and vflush() take a thread argument. | alfred | 2004-07-12 | 2 | -3/+4 |
* | Remove advertising clause from University of California Regent's | imp | 2004-04-07 | 4 | -16/+0 |
* | Do not allow operations which cause known file-system corruption. | green | 2004-01-16 | 1 | -2/+8 |
* | Remove a warning. | green | 2004-01-16 | 1 | -2/+0 |
* | Fix an upper-vnode leak created in revision 1.52. When an upper-layer | green | 2004-01-16 | 2 | -19/+13 |
* | Pass ACL, extended attribute and MAC vnode ops down the vnode stack. | tjr | 2004-01-03 | 1 | -0/+239 |
* | - A sanity check in unionfs verifies that lookups of '.' return the | das | 2003-11-14 | 1 | -27/+21 |
* | Remove now unused variable. | kan | 2003-11-01 | 1 | -1/+0 |
* | Do not bother walking mount point vnode list just to calculate | kan | 2003-11-01 | 1 | -5/+1 |
* | Add a "int fd" argument to VOP_OPEN() which in the future will | phk | 2003-07-26 | 2 | -5/+5 |
* | Add a f_vnode field to struct file. | phk | 2003-06-22 | 1 | -0/+1 |
* | Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations | phk | 2003-06-15 | 1 | -0/+2 |
* | Fix some style problems, some of which are old, some new, and some | das | 2003-06-15 | 1 | -8/+10 |
* | If someone tries to mount a union filesystem with another unionfs as | das | 2003-06-14 | 1 | -4/+14 |
* | Introduce malloc types M_UNDCACHE and M_UNPATH for important | das | 2003-06-14 | 1 | -10/+13 |
* | Factor out the process of freeing ``directory caches'', which unionfs | das | 2003-06-14 | 3 | -24/+25 |
* | Plug a serious memory leak. The -STABLE equivalent of this patch has | das | 2003-06-13 | 1 | -8/+20 |
* | Initialize struct vfsops C99-sparsely. | phk | 2003-06-12 | 1 | -23/+10 |
* | Rename vfs_stdsync function to vfs_stdnosync which matches more | kan | 2003-03-11 | 1 | -1/+1 |
* | Finish cleanup of vprint() which was begun with changing v_tag to a string. | njl | 2003-03-03 | 1 | -1/+1 |
* | More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9). | des | 2003-03-02 | 1 | -2/+2 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 2 | -8/+8 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 2 | -8/+8 |
* | Fake up a struct componentname to pass to VOP_WHITEOUT instead of passing | tjr | 2003-01-18 | 1 | -1/+10 |
* | Bow to the whining masses and change a union back into void *. Retain | dillon | 2003-01-13 | 1 | -1/+1 |
* | Change struct file f_data to un_data, a union of the correct struct | dillon | 2003-01-12 | 1 | -1/+1 |
* | Since Jeffr made the std* functions the default in rev 1.63 of | phk | 2003-01-04 | 1 | -1/+0 |
* | Fix comments and one resulting code confusion about the type of the | phk | 2002-10-16 | 1 | -1/+1 |
* | Regularize the vop_stdlock'ing protocol across all the filesystems | mckusick | 2002-10-14 | 3 | -91/+0 |
* | Fix a warning on 64 bits platforms: copystr() takes a size_t *, | mux | 2002-10-06 | 1 | -1/+1 |
* | - Use vrefcnt() where it is safe to do so instead of doing direct and | jeff | 2002-09-25 | 2 | -20/+20 |
* | Fix misspellings, capitalization, and punctuation in comments. Minor | truckman | 2002-09-22 | 3 | -90/+95 |
* | VOP_FSYNC() requires that it's vnode argument be locked, which nfs_link() | truckman | 2002-09-19 | 1 | -8/+15 |
* | Remove all use of vnode->v_tag, replacing with appropriate substitutes. | njl | 2002-09-14 | 2 | -4/+5 |
* | - Replace v_flag with v_iflag and v_vflag | jeff | 2002-08-04 | 2 | -6/+7 |
* | nmount'ify unionfs further by using separate options instead | mux | 2002-06-15 | 2 | -6/+16 |
* | Convert unionfs to nmount. | mux | 2002-05-24 | 2 | -25/+22 |
* | Fix comments. | mux | 2002-05-24 | 1 | -1/+1 |
* | Change the vm_zone calls over to uma calls. Remove the reference to the | jeff | 2002-04-08 | 1 | -9/+9 |
* | Remove __P. | alfred | 2002-03-19 | 4 | -83/+83 |
* | Simple p_ucred -> td_ucred changes to start using the per-thread ucred | jhb | 2002-02-27 | 2 | -4/+4 |
* | Don't even think about using v_id for magic tricks, v_id is giving | phk | 2002-02-17 | 1 | -5/+0 |
* | SMP Lock struct file, filedesc and the global file list. | alfred | 2002-01-13 | 2 | -1/+8 |
* | Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget() | dillon | 2001-12-20 | 1 | -1/+1 |
* | Change the vnode list under the mount point from a LIST to a TAILQ | dillon | 2001-10-23 | 1 | -1/+1 |
* | Change the kernel's ucred API as follows: | jhb | 2001-10-11 | 1 | -2/+1 |
* | KSE Milestone 2 | julian | 2001-09-12 | 4 | -216/+216 |
* | Protect the mnt_vnode list with the mntvnode lock. | jhb | 2001-06-28 | 1 | -0/+4 |