| Commit message (Expand) | Author | Age | Files | Lines |
* | - Reorder calls to vrele() after calls to vput() when the vrele is a | jeff | 2006-02-01 | 1 | -2/+2 |
* | Update incorrect comments here, there should not be a call to panic() | trhodes | 2006-01-23 | 1 | -4/+4 |
* | Do not assume that `char direntry::deExtension[3]' starts right after | fjoe | 2006-01-22 | 4 | -17/+16 |
* | I ran into an nfs client panic a couple of times in a row over the | alfred | 2006-01-17 | 1 | -1/+4 |
* | Properly parse the nowin95 mount option. | rodrigc | 2005-11-19 | 1 | -5/+4 |
* | Add "shortnames" and "longnames" mount options which are | rodrigc | 2005-11-18 | 1 | -1/+5 |
* | Normalize a significant number of kernel malloc type names: | rwatson | 2005-10-31 | 3 | -4/+4 |
* | Remove checks for BOOTSIG[23] from FAT32 bootblocks. | peadar | 2005-09-29 | 2 | -8/+2 |
* | Ensure the full value is written into inode variables. | obrien | 2005-09-07 | 1 | -2/+2 |
* | *_mountfs() (if the filesystem mounts from a device) needs devvp to be | ssouhlal | 2005-09-02 | 1 | -5/+3 |
* | [1] unix2doschr() | imura | 2005-07-17 | 1 | -10/+27 |
* | Disable negative name caching for msdosfs to work around a bug. | das | 2005-04-16 | 1 | -0/+7 |
* | Fix mbnambuf support for multi-byte characters. If a substring is larger | njl | 2005-04-16 | 1 | -19/+29 |
* | - Change all filesystems and vfs_cache to relock the dvp once the child is | jeff | 2005-04-13 | 1 | -3/+2 |
* | Give msdosfs a unique inode number which is really the byteoffset of | phk | 2005-04-07 | 2 | -9/+26 |
* | - Remove wantparent, it is no longer necessary. An assert in vfs_lookup.c | jeff | 2005-03-29 | 1 | -7/+1 |
* | - We no longer have to bother with PDIRUNLOCK, lookup() handles it for us. | jeff | 2005-03-28 | 1 | -29/+0 |
* | - Pass LK_EXCLUSIVE as the lock type to vget in vfs_hash_insert(). | jeff | 2005-03-25 | 1 | -1/+2 |
* | - Update vfs_root implementations to match the new prototype. None of | jeff | 2005-03-24 | 1 | -2/+4 |
* | Add two arguments to the vfs_hash() KPI so that filesystems which do | phk | 2005-03-16 | 1 | -2/+3 |
* | Eliminate cdev pointer in inodes, they're not used or needed. | phk | 2005-03-15 | 3 | -5/+1 |
* | Improve the vfs_hash() API: vput() the unneeded vnode centrally to | phk | 2005-03-15 | 1 | -2/+0 |
* | Simplify the vfs_hash calling convention. | phk | 2005-03-15 | 1 | -10/+0 |
* | Use vfs_hash instead of home-rolling. | phk | 2005-03-14 | 4 | -127/+27 |
* | - The VI_DOOMED flag now signals the end of a vnode's relationship with | jeff | 2005-03-13 | 2 | -2/+1 |
* | Used unsigned version. | obrien | 2005-03-12 | 1 | -1/+1 |
* | Fix kernel build on 64-bit machines. | obrien | 2005-03-12 | 1 | -1/+1 |
* | Correct a last-minute thinko. Instead of copying the nul with the string, | njl | 2005-03-11 | 1 | -1/+1 |
* | The mbnambuf routines combine multiple substrings into a single | njl | 2005-03-11 | 1 | -36/+41 |
* | Remove debug printout of major/minor numbers, print name instead. | phk | 2005-02-27 | 1 | -1/+2 |
* | Use vn_printf() instead of home-rolling. | phk | 2005-02-22 | 1 | -10/+2 |
* | Unroll the loop for calculating the 8.3 filename checksum. In testing | njl | 2005-02-08 | 1 | -5/+14 |
* | Unbreak a few filesystems for which vnode_create_vobject() wasn't being | peadar | 2005-01-29 | 1 | -0/+17 |
* | 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 |
* | Create a vp->v_object in VFS_FHTOVP() if we want to be exportable | phk | 2005-01-24 | 1 | -0/+1 |
* | Whitespace in vop_vector{} initializations. | phk | 2005-01-13 | 1 | -1/+2 |
* | Wrap the bufobj operations in macros: BO_STRATEGY() and BO_WRITE() | phk | 2005-01-11 | 1 | -1/+1 |
* | Remove the unused credential argument from VOP_FSYNC() and VFS_SYNC(). | phk | 2005-01-11 | 1 | -5/+4 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 12 | -12/+12 |
* | Handle MNT_UPDATE export requests first and return so we do not | phk | 2004-12-11 | 1 | -14/+14 |
* | Convert msdosfs to nmount. | phk | 2004-12-06 | 1 | -75/+121 |
* | VFS_STATFS(mp, ...) is mostly called with &mp->mnt_stat, but a few cases | phk | 2004-12-05 | 1 | -6/+0 |
* | Remove the de_devvp and stop VREF'ing it for every vnode we create. | phk | 2004-12-02 | 3 | -11/+1 |
* | Back when VOP_* was introduced, we did not have new-style struct | phk | 2004-12-01 | 3 | -35/+29 |
* | Mechanically change prototypes for vnode operations to use the new typedefs. | phk | 2004-12-01 | 1 | -21/+21 |
* | Make VOP_BMAP return a struct bufobj for the underlying storage device | phk | 2004-11-15 | 1 | -3/+3 |
* | Refuse attemps to mount root filesystem | phk | 2004-11-09 | 1 | -0/+2 |
* | Move MSDOSFS to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 4 | -52/+47 |