| Commit message (Expand) | Author | Age | Files | Lines |
* | Trust vfs_mount to call VFS_STATFS() on all mounts. | phk | 2004-12-06 | 1 | -2/+0 |
* | VFS_STATFS(mp, ...) is mostly called with &mp->mnt_stat, but a few cases | phk | 2004-12-05 | 1 | -7/+0 |
* | Back when VOP_* was introduced, we did not have new-style struct | phk | 2004-12-01 | 3 | -61/+55 |
* | Correctly prototype union_write with vop_write_t, not vop_read_t. | phk | 2004-12-01 | 1 | -2/+2 |
* | Mechanically change prototypes for vnode operations to use the new typedefs. | phk | 2004-12-01 | 1 | -43/+43 |
* | VOP_REVOKE() is only ever for VCHR vnodes, so unionfs does not | phk | 2004-11-13 | 1 | -20/+0 |
* | Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST. | phk | 2004-11-13 | 2 | -4/+4 |
* | Refuse attempts to mount root filesystem | phk | 2004-11-09 | 1 | -0/+2 |
* | Eliminate unnecessary KASSERTs. | phk | 2004-10-27 | 1 | -4/+2 |
* | Minor Bug fix. Some file was not translated. | takawata | 2004-10-05 | 1 | -2/+2 |
* | Fix unionfs problems when a directory is mounted on other directory | takawata | 2004-10-05 | 3 | -1/+11 |
* | Fix a problem when you try to mount a directory on another directory | takawata | 2004-10-02 | 1 | -0/+2 |
* | 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 |