aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Fix more mntvnode and vnode interlock order reversals.John Baldwin2001-06-281-2/+2
* - Fix a mntvnode and vnode interlock reversal.John Baldwin2001-06-282-19/+46
* Fix warning:Peter Wemm2001-06-151-1/+1
* Build on the change in revision 1.98 by Tor.Egge@fast.no.Kirk McKusick2001-06-131-13/+21
* Call vn_close on the backing file vnode if ufs_extattr_enable failed toThomas Moestl2001-06-071-1/+4
* Add a wrapper for the fifo kqfilter which falls through to the ufs routine.Jonathan Lemon2001-06-061-0/+19
* Add a kqueue filter for writing to ufs filesystems which always returnsJonathan Lemon2001-06-051-0/+22
* There seems to be a problem that the order of disk write operation beingDavid E. O'Brien2001-06-051-2/+11
* Revert the previous commit in favor of the fix in rev 1.42 ofJohn Baldwin2001-05-301-1/+0
* Forward declare struct cg to quiet a warning.John Baldwin2001-05-301-0/+1
* Include <ufs/ffs/fs.h> to get the definition of struct cg to quiet aJohn Baldwin2001-05-291-0/+1
* Remove last vestiges of MFS.Poul-Henning Kamp2001-05-292-14/+4
* Remove MFS from the kernel.Poul-Henning Kamp2001-05-294-944/+0
* Add a check to determine whether extended attributes have beenThomas Moestl2001-05-251-0/+8
* o Merge contents of struct pcred into struct ucred. Specifically, add theRobert Watson2001-05-252-4/+4
* This patch implements O_DIRECT about 80% of the way. It takes a patchsetMatthew Dillon2001-05-241-7/+29
* ufs_bmaparray() may block on IO, drop vm mutex and aquire Giant whenAlfred Perlstein2001-05-231-0/+10
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileRuslan Ermilov2001-05-231-1/+1
* Update softdep_setup_directory_add prototype to reflect changes inKirk McKusick2001-05-201-2/+3
* Must ensure that all the entries on the pd_pendinghd list have beenKirk McKusick2001-05-191-3/+11
* Introduce a global lock for the vm subsystem (vm_mtx).Alfred Perlstein2001-05-191-9/+38
* Must be a bit less aggressive about freeing pagedep structures.Kirk McKusick2001-05-181-1/+1
* When a new block is allocated to a directory, an fsync of a fileKirk McKusick2001-05-174-39/+242
* Change the second argument of vflush() to an integer that specifiesIan Dowse2001-05-161-3/+3
* Further fixes for deadlock in the presence of multiple snapshots.Kirk McKusick2001-05-141-7/+20
* If the effective link count is zero when an NFS file handle requestKirk McKusick2001-05-131-1/+3
* Remove yet another deadlock case.Kirk McKusick2001-05-111-3/+6
* When running with soft updates, track the number of blocks and filesKirk McKusick2001-05-089-11/+119
* Several fixes for units errors:Kirk McKusick2001-05-081-10/+19
* When syncing out snapshot metadata, we must temporarily allow recursiveKirk McKusick2001-05-081-27/+29
* Refinement to revision 1.16 of ufs/ffs/ffs_snapshot.c to reduceKirk McKusick2001-05-043-120/+227
* Use ufs_bmaparray() rather than VOP_BMAP() on our own vnodes.Poul-Henning Kamp2001-05-011-2/+2
* Remove blatantly pointless call to VOP_BMAP().Poul-Henning Kamp2001-05-012-9/+3
* Implement vop_std{get|put}pages() and add them to the default vop[].Poul-Henning Kamp2001-05-013-18/+0
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-012-6/+11
* VOP_BALLOC was never really a VOP in the first place, so convert itPoul-Henning Kamp2001-04-2911-49/+44
* Add a vop_stdbmap(), and make it part of the default vop vector.Poul-Henning Kamp2001-04-291-25/+1
* Call ufs_bmaparray() directly instead of indirectly via VOP_BMAP().Poul-Henning Kamp2001-04-291-2/+3
* Remove two unused arguments from ufs_bmaparray().Poul-Henning Kamp2001-04-292-22/+17
* Remove faint traces of blind copy&paste.Poul-Henning Kamp2001-04-291-1/+0
* Remove faint traces of non-existant ffs_bmap().Poul-Henning Kamp2001-04-291-2/+0
* Revert consequences of changes to mount.h, part 2.Greg Lehey2001-04-2916-32/+0
* Rather than copying all the indirect blocks of the snapshot,Kirk McKusick2001-04-261-35/+19
* When closing the last reference to an unlinked file, it is freedKirk McKusick2001-04-253-26/+104
* Move the netexport structure from the fs-specific mountstructurePoul-Henning Kamp2001-04-256-38/+6
* Pre-dirpref versions of fsck may zero out the new superblock fieldsIan Dowse2001-04-241-0/+6
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-2316-0/+32
* This patch removes the VOP_BWRITE() vector.Poul-Henning Kamp2001-04-171-1/+0
* Add debugging option to always read/write cylinder groups as fullKirk McKusick2001-04-171-0/+13
* Background fsck sysctl operations must use vn_start_write andKirk McKusick2001-04-171-8/+14