| Commit message (Expand) | Author | Age | Files | Lines |
| * | - We no longer have to bother with PDIRUNLOCK, lookup() handles it for us. | Jeff Roberson | 2005-03-28 | 6 | -113/+16 |
| * | - We no longer have to bother with PDIRUNLOCK, lookup() handles it for us. | Jeff Roberson | 2005-03-28 | 1 | -7/+5 |
| * | - We no longer have to bother with PDIRUNLOCK, lookup() handles it for us. | Jeff Roberson | 2005-03-28 | 1 | -54/+21 |
| * | - Pass LK_EXCLUSIVE as the lock type to vget in vfs_hash_insert(). | Jeff Roberson | 2005-03-25 | 1 | -1/+2 |
| * | - Update vfs_root implementations to match the new prototype. None of | Jeff Roberson | 2005-03-24 | 2 | -2/+4 |
| * | - Update vfs_root implementations to match the new prototype. None of | Jeff Roberson | 2005-03-24 | 15 | -19/+29 |
| * | Use subr_unit | Poul-Henning Kamp | 2005-03-19 | 4 | -146/+10 |
| * | Also remember to set the fsid here. | Poul-Henning Kamp | 2005-03-17 | 1 | -0/+1 |
| * | Forgot to replace code to set fsid in vop_getattr. | Poul-Henning Kamp | 2005-03-17 | 1 | -0/+1 |
| * | Prepare for the final onslaught on devices: | Poul-Henning Kamp | 2005-03-17 | 1 | -3/+3 |
| * | - Lock the clearing of v_data so it is safe to inspect it with the | Jeff Roberson | 2005-03-17 | 1 | -1/+7 |
| * | Add two arguments to the vfs_hash() KPI so that filesystems which do | Poul-Henning Kamp | 2005-03-16 | 4 | -8/+9 |
| * | Remove unused file | Poul-Henning Kamp | 2005-03-16 | 1 | -183/+0 |
| * | Remove inode fields previously used for private inode hash tables. | Poul-Henning Kamp | 2005-03-16 | 2 | -2/+0 |
| * | XXX: unnecessary pointer in inode. | Poul-Henning Kamp | 2005-03-16 | 1 | -1/+1 |
| * | Don't store the disk cdev in all inodes. | Poul-Henning Kamp | 2005-03-16 | 3 | -3/+0 |
| * | Don't hold a reference to the disk vnode for each inode. | Poul-Henning Kamp | 2005-03-15 | 3 | -11/+1 |
| * | Eliminate cdev pointer in inodes, they're not used or needed. | Poul-Henning Kamp | 2005-03-15 | 3 | -5/+1 |
| * | Don't hold a reference on the disk vnode for each inode. | Poul-Henning Kamp | 2005-03-15 | 3 | -9/+1 |
| * | Improve the vfs_hash() API: vput() the unneeded vnode centrally to | Poul-Henning Kamp | 2005-03-15 | 4 | -11/+3 |
| * | - Assume that all lower filesystems now support proper locking. Assert | Jeff Roberson | 2005-03-15 | 3 | -190/+63 |
| * | Disable two users of findcdev. They do the wrong thing now and will | Poul-Henning Kamp | 2005-03-15 | 1 | -0/+4 |
| * | - We have to transfer lockers after reseting our vnlock pointer. | Jeff Roberson | 2005-03-15 | 1 | -0/+5 |
| * | Don't export major,minor, instead export tty name. | Poul-Henning Kamp | 2005-03-15 | 1 | -3/+3 |
| * | Print devtoname() instead of minor(). | Poul-Henning Kamp | 2005-03-15 | 1 | -2/+2 |
| * | Fix typo: pointers are not boolean in style(9). | Poul-Henning Kamp | 2005-03-15 | 1 | -1/+1 |
| * | Simplify the vfs_hash calling convention. | Poul-Henning Kamp | 2005-03-15 | 4 | -80/+9 |
| * | Hook pfs_lookup() up to vfs_cachedlookup_desc instead of vfs_lookup_desc, | Dag-Erling Smørgrav | 2005-03-14 | 1 | -21/+14 |
| * | Fix two long-standing bugs in pfs_readdir(): | Dag-Erling Smørgrav | 2005-03-14 | 1 | -11/+13 |
| * | If PSEUDOFS_TRACE is defined, create a sysctl knob to enable / disable | Dag-Erling Smørgrav | 2005-03-14 | 1 | -6/+14 |
| * | fbsdidize. | Dag-Erling Smørgrav | 2005-03-14 | 4 | -8/+20 |
| * | Use vfs_hash instead of home-rolled. | Poul-Henning Kamp | 2005-03-14 | 4 | -66/+33 |
| * | Use vfs_hash instead of home-rolled. | Poul-Henning Kamp | 2005-03-14 | 5 | -135/+26 |
| * | Use vfs_hash instead of home-rolled. | Poul-Henning Kamp | 2005-03-14 | 3 | -112/+52 |
| * | Use vfs_hash instead of home-rolling. | Poul-Henning Kamp | 2005-03-14 | 4 | -127/+27 |
| * | - VOP_INACTIVE should no longer drop the vnode lock. | Jeff Roberson | 2005-03-13 | 1 | -1/+0 |
| * | - The VI_DOOMED flag now signals the end of a vnode's relationship with | Jeff Roberson | 2005-03-13 | 16 | -46/+17 |
| * | - The VI_DOOMED flag now signals the end of a vnode's relationship with | Jeff Roberson | 2005-03-13 | 2 | -10/+3 |
| * | - The c_lock in the coda node does not offer any features over the standard | Jeff Roberson | 2005-03-13 | 2 | -16/+8 |
| * | - Deadfs may now use the standard vop lock, get rid of dead_lock(). | Jeff Roberson | 2005-03-13 | 1 | -40/+0 |
| * | Used unsigned version. | David E. O'Brien | 2005-03-12 | 1 | -1/+1 |
| * | Fix kernel build on 64-bit machines. | David E. O'Brien | 2005-03-12 | 1 | -1/+1 |
| * | Correct a last-minute thinko. Instead of copying the nul with the string, | Nate Lawson | 2005-03-11 | 1 | -1/+1 |
| * | The mbnambuf routines combine multiple substrings into a single | Nate Lawson | 2005-03-11 | 1 | -35/+40 |
| * | One more bit of the major/minor patch to make ttyname happy as well. | Poul-Henning Kamp | 2005-03-10 | 1 | -2/+11 |
| * | Try to fix the mess I made of devname, with the minimal subset of the | Poul-Henning Kamp | 2005-03-10 | 2 | -5/+64 |
| * | Remove kernelside support for devfs rules filtering on major numbers. | Poul-Henning Kamp | 2005-03-08 | 2 | -5/+0 |
| * | Avoid a couple of mutex operations in the process exit path for the | Poul-Henning Kamp | 2005-03-01 | 1 | -0/+2 |
| * | Remove debug printout of major/minor numbers, print name instead. | Poul-Henning Kamp | 2005-02-27 | 1 | -1/+2 |
| * | remove dead code | Sam Leffler | 2005-02-22 | 1 | -3/+0 |