| Commit message (Expand) | Author | Age | Files | Lines |
* | VFS_STATFS(mp, ...) is mostly called with &mp->mnt_stat, but a few cases | phk | 2004-12-05 | 13 | -80/+0 |
* | Remove embryonic rootfs mounting facility. | phk | 2004-12-04 | 1 | -30/+1 |
* | 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 | 39 | -747/+529 |
* | Fix unvalidated pointer dereference. This is FreeBSD-SA-04:17.procfs. | cperciva | 2004-12-01 | 1 | -1/+13 |
* | hpfs_lookup() should have a vop_cachedlookup_t prototype an corresponding | phk | 2004-12-01 | 1 | -2/+2 |
* | 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 | 15 | -230/+230 |
* | Ignore MNT_NODEV, it is implicit in choice of filesystem these days. | phk | 2004-11-26 | 1 | -1/+1 |
* | Eliminate null_open() and use instead null_bypass(). | phk | 2004-11-26 | 1 | -24/+0 |
* | Use system wide no-op vfs_start function. | phk | 2004-11-25 | 4 | -67/+0 |
* | Add dropped implementation of ioctl for fifos. | phk | 2004-11-18 | 1 | -1/+20 |
* | Make vnode bypass for fifos (read, write, poll) mandatory. | phk | 2004-11-17 | 1 | -133/+6 |
* | Make vnode bypass for devices mandatory. | phk | 2004-11-17 | 1 | -200/+1 |
* | Make vnode bypass the default for devices. | phk | 2004-11-15 | 1 | -1/+1 |
* | Add file ops to fifofs so that we can bypass vnodes (and Giant) for the | phk | 2004-11-15 | 1 | -1/+164 |
* | Make VOP_BMAP return a struct bufobj for the underlying storage device | phk | 2004-11-15 | 7 | -20/+20 |
* | Integrate most of vop_revoke() into devfs_revoke() where it belongs. | phk | 2004-11-13 | 1 | -1/+24 |
* | Add the devfs_fp_check() function which helps us get from a struct file | phk | 2004-11-13 | 1 | -70/+34 |
* | VOP_REVOKE() is only ever for VCHR vnodes, so unionfs does not | phk | 2004-11-13 | 1 | -20/+0 |
* | fifos doesn't need a vop_lookup, the default will do fine. | phk | 2004-11-13 | 1 | -19/+0 |
* | Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST. | phk | 2004-11-13 | 4 | -11/+11 |
* | Remove stale comment after previous commit. | trhodes | 2004-11-09 | 1 | -3/+0 |
* | Detect root mount attempts on the flag, not on the NULL path. | phk | 2004-11-09 | 2 | -2/+2 |
* | Refuse attempts to mount root filesystem | phk | 2004-11-09 | 6 | -5/+10 |
* | Refuse attemps to mount root filesystem | phk | 2004-11-09 | 4 | -2/+6 |
* | Add optional device vnode bypass to DEVFS. | phk | 2004-11-08 | 1 | -0/+287 |
* | Properly implement a default version of VOP_GETWRITEMOUNT. | phk | 2004-11-06 | 2 | -2/+0 |
* | Add back securelevel check for disks. | phk | 2004-11-04 | 1 | -0/+12 |
* | s/ffs/ntfs/ | phk | 2004-11-04 | 1 | -2/+6 |
* | Make a more whole-hearted attempt at GEOM'ifying NTFS. | phk | 2004-11-03 | 3 | -9/+21 |
* | Don't give disks special treatment, they don't come this way anymore. | phk | 2004-10-29 | 1 | -37/+0 |
* | Remove VOP_SPECSTRATEGY() from the system. | phk | 2004-10-29 | 1 | -57/+0 |
* | Move NTFS to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 1 | -30/+1 |
* | Move HPFS to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 3 | -33/+26 |
* | Move CD9660 to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 6 | -36/+37 |
* | Move UDF to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 3 | -25/+28 |
* | Move MSDOSFS to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 4 | -52/+47 |
* | Give dev_strategy() an explict cdev argument in preparation for removing | phk | 2004-10-29 | 1 | -1/+1 |
* | Reduce the locking activity by epsilon by checking VNON condition before | phk | 2004-10-28 | 1 | -4/+3 |
* | What can I say: don't allow people to mount DEVFS with option "nodev". | phk | 2004-10-28 | 2 | -8/+2 |
* | Eliminate unnecessary KASSERTs. | phk | 2004-10-27 | 6 | -18/+6 |
* | Put the I/O block size in bufobj->bo_bsize. | phk | 2004-10-26 | 1 | -1/+1 |
* | Loose the v_dirty* and v_clean* alias macros. | phk | 2004-10-25 | 1 | -4/+5 |
* | Alas, poor SPECFS! -- I knew him, Horatio; A filesystem of infinite | phk | 2004-10-22 | 2 | -624/+551 |
* | Rework how we store process times in the kernel such that we always store | jhb | 2004-10-05 | 1 | -3/+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 |
* | Don't PHOLD() the target process in procfs, since this is already done | das | 2004-10-01 | 3 | -6/+3 |