aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-0667-68/+70
* Start each of the license/copyright comments with /*-Warner Losh2005-01-0519-27/+27
* Unsupport forceful unmounts of DEVFS.Poul-Henning Kamp2005-01-041-1/+1
* Be consistent about flag values passed to device drivers read/writePoul-Henning Kamp2004-12-221-11/+4
* Shuffle numeric values of the IO_* flags to match the O_* flags fromPoul-Henning Kamp2004-12-221-0/+13
* We can only ever get to vgonechrl() from a devfs vnode, so we do notPoul-Henning Kamp2004-12-201-1/+2
* Add a couple of KASSERTS to try to diagnose a problem reported.Poul-Henning Kamp2004-12-201-1/+5
* Be a bit more assertive about vnode bypass.Poul-Henning Kamp2004-12-141-16/+17
* Exporting of NTFS filesystem broke in rev 1.70. Fix it.Suleiman Souhlal2004-12-131-7/+4
* Don't forget to bypass vnodes in corner cases.Poul-Henning Kamp2004-12-131-8/+6
* Another FNONBLOCK -> O_NONBLOCK.Poul-Henning Kamp2004-12-131-2/+2
* Use O_NONBLOCK instead of FNONBLOCK alias.Poul-Henning Kamp2004-12-131-1/+1
* Explicit panic in vop_read/vop_write for devicesPoul-Henning Kamp2004-12-131-0/+2
* Explicitly panic vop_read/vop_write on fifos.Poul-Henning Kamp2004-12-131-0/+2
* Don't deref NULL if no charset-conversion is specified.Poul-Henning Kamp2004-12-122-2/+10
* Handle MNT_UPDATE export requests first and return so we do notPoul-Henning Kamp2004-12-111-14/+14
* typoPoul-Henning Kamp2004-12-111-1/+1
* First save from editor, *then* commit.Poul-Henning Kamp2004-12-071-2/+1
* Fix exports.Poul-Henning Kamp2004-12-071-6/+4
* The remaining part of nmount/omount/rootfs mount changes. I cannot sensiblyPoul-Henning Kamp2004-12-072-128/+80
* Use vfs_mountedfrom().Poul-Henning Kamp2004-12-061-2/+2
* Trust vfs_mount to call VFS_STATFS() on all mounts.Poul-Henning Kamp2004-12-061-2/+0
* Convert to nmount. Add omount compat.Poul-Henning Kamp2004-12-065-39/+100
* Convert to nmount. Add omount compat.Poul-Henning Kamp2004-12-061-27/+37
* Convert to nmount. Add omount compat.Poul-Henning Kamp2004-12-062-61/+80
* Convert to nmount. Add backwards compat cmount method.Poul-Henning Kamp2004-12-063-47/+81
* Convert nwfs to nmount, but take the low road: There is no way this isPoul-Henning Kamp2004-12-061-9/+29
* Fix a typo in PFS_TRACE.Alexander Kabaev2004-12-061-1/+1
* ufs vfs_mountedon(), rely on vfs_mount.c calling VFS_STATFS()Poul-Henning Kamp2004-12-061-4/+1
* Use vfs_mountedfrom(), rely on vfs_mount.c calling VFS_STATFS().Poul-Henning Kamp2004-12-062-8/+3
* Use vfs_mountedfrom() and rely on vfs_mount.c to call VFS_STATFS()Poul-Henning Kamp2004-12-061-3/+2
* Convert coda to nmount.Poul-Henning Kamp2004-12-061-19/+13
* Convert msdosfs to nmount.Poul-Henning Kamp2004-12-061-75/+121
* Fix warningPoul-Henning Kamp2004-12-061-1/+1
* VFS_STATFS(mp, ...) is mostly called with &mp->mnt_stat, but a few casesPoul-Henning Kamp2004-12-0513-80/+0
* Remove embryonic rootfs mounting facility.Poul-Henning Kamp2004-12-041-30/+1
* Remove the de_devvp and stop VREF'ing it for every vnode we create.Poul-Henning Kamp2004-12-023-11/+1
* Back when VOP_* was introduced, we did not have new-style structPoul-Henning Kamp2004-12-0139-747/+529
* Fix unvalidated pointer dereference. This is FreeBSD-SA-04:17.procfs.Colin Percival2004-12-011-1/+13
* hpfs_lookup() should have a vop_cachedlookup_t prototype an correspondingPoul-Henning Kamp2004-12-011-2/+2
* Correctly prototype union_write with vop_write_t, not vop_read_t.Poul-Henning Kamp2004-12-011-2/+2
* Mechanically change prototypes for vnode operations to use the new typedefs.Poul-Henning Kamp2004-12-0115-230/+230
* Ignore MNT_NODEV, it is implicit in choice of filesystem these days.Poul-Henning Kamp2004-11-261-1/+1
* Eliminate null_open() and use instead null_bypass().Poul-Henning Kamp2004-11-261-24/+0
* Use system wide no-op vfs_start function.Poul-Henning Kamp2004-11-254-67/+0
* Add dropped implementation of ioctl for fifos.Poul-Henning Kamp2004-11-181-1/+20
* Make vnode bypass for fifos (read, write, poll) mandatory.Poul-Henning Kamp2004-11-171-133/+6
* Make vnode bypass for devices mandatory.Poul-Henning Kamp2004-11-171-200/+1
* Make vnode bypass the default for devices.Poul-Henning Kamp2004-11-151-1/+1