aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Add a flags parameter to VFS_VGET to pass through the desiredKirk McKusick2002-03-1713-81/+96
* Introduce the new 64-bit size disk block, daddr64_t. ChangeKirk McKusick2002-03-154-11/+21
* Quiet a warning on the Alpha.David E. O'Brien2002-03-151-1/+5
* This corrects the first of two known deadlock conditions thatKirk McKusick2002-03-141-12/+1
* Fix a bug in ufsdirhash_adjfree() that caused it to incorrectlyIan Dowse2002-03-111-10/+7
* I missed one VOP_CLOSE in the previous commit.Poul-Henning Kamp2002-03-111-0/+5
* As a XXX bandaid open the mounted device READ/WRITE even if we only mountPoul-Henning Kamp2002-03-111-0/+14
* Update DBA for NAI. We have several. We used the wrong one. :-)Robert Watson2002-03-071-1/+1
* Add new errno ``ENOATTR''.Brian Feldman2002-03-072-29/+17
* cleanup readability syntax prior to ongoing b_resid work commits.Matthew Dillon2002-03-061-4/+5
* Use thread0.td_ucred instead of proc0.p_ucred. This change is cosmeticJohn Baldwin2002-02-271-1/+1
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-277-32/+32
* Replace bowrite() with BUF_WRITE in ufs.Poul-Henning Kamp2002-02-221-3/+3
* o Minor style fix on #endif, missing '_' in comment.Robert Watson2002-02-201-1/+1
* Make v_addpollinfo() visible and non-inline.Poul-Henning Kamp2002-02-181-5/+2
* Move the stuff related to select and poll out of struct vnode.Poul-Henning Kamp2002-02-171-6/+12
* Collect the VN_KNOTE() macro definitions on vnode.hPoul-Henning Kamp2002-02-173-8/+0
* In a threaded world, differnt priorirites become properties ofJulian Elischer2002-02-111-2/+2
* Minor style tweaks.Robert Watson2002-02-101-19/+15
* Copyright + license update.Robert Watson2002-02-101-1/+10
* Part I: Update extended attribute API and ABI:Robert Watson2002-02-101-20/+31
* Remove di_inumber since LFS is long gone.Poul-Henning Kamp2002-02-101-2/+0
* Occationally background fsck would cause a spurious ``freeing freeKirk McKusick2002-02-071-0/+4
* Occationally deleted files would hang around for hours or daysKirk McKusick2002-02-071-7/+10
* When taking a snapshot, we must check for active files that haveKirk McKusick2002-02-026-271/+335
* Add a stub for softdep_request_cleanup() so that compilation withoutKirk McKusick2002-01-231-0/+9
* This patch fixes a long standing complaint with soft updates inKirk McKusick2002-01-223-10/+64
* Fix a bug introduced in ffs_snapshot.c -r1.25 and fs.h -r1.26Kirk McKusick2002-01-172-4/+4
* Put write on read-only filesystem panic after we have weeded outKirk McKusick2002-01-161-2/+2
* When downgrading a filesystem from read-write to read-only, operationsKirk McKusick2002-01-154-8/+17
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-0/+3
* When going to sleep, we must save our SPL so that it does not getKirk McKusick2002-01-121-38/+76
* Must call drain_output() before checking the dirty block listKirk McKusick2002-01-111-8/+10
* Do not pull quota entries of the cache-list if they have alreadyPoul-Henning Kamp2002-01-101-1/+2
* Initialise the bioops vector hack at runtime rather than at link time. ThisMike Smith2002-01-081-8/+7
* Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget()Matthew Dillon2001-12-202-2/+2
* Change the atomic_set_char to atomic_set_int and atomic_clear_charKirk McKusick2001-12-183-13/+17
* Make sure we ignore the value of `fs_active' when reloading theIan Dowse2001-12-161-1/+2
* Move the new superblock field `fs_active' into the region of theIan Dowse2001-12-161-5/+7
* Minimize the time necessary to suspend operations on a filesystemKirk McKusick2001-12-144-96/+209
* When a file is partially truncated, we first check to see if theKirk McKusick2001-12-131-0/+12
* Use 'mkdir -p /.attribute/system' instead of breaking it intoRobert Watson2001-11-301-1/+1
* Use 'mkdir -p /.attribute/system' instead of breaking it intoRobert Watson2001-11-301-1/+1
* README.extattr incorrectly specified sample command lines forRobert Watson2001-11-301-2/+2
* When mkdir()-ing, the parent dir gets is linkcount increased.Guido van Rooij2001-11-221-1/+1
* Oops, when trying the dirhash sequential-access optimisation,Ian Dowse2001-11-141-1/+1
* Implement IO_NOWDRAIN and B_NOWDRAIN - prevents the buffer cache from blockingMatthew Dillon2001-11-051-0/+2
* o Update copyright dates.Robert Watson2001-11-014-7/+18
* o Althought this is not specified in POSIX.1e, the UFS ACL implementationRobert Watson2001-10-271-1/+6
* o Clarify a comment about the locking condition of the vnode upon exitRobert Watson2001-10-271-9/+15