aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Busy ufs filesystem around block of code that does ".." lookup. SinceKonstantin Belousov2008-11-221-1/+26
* Fix typo.John Baldwin2008-11-191-1/+1
* For now on every 10 cyclinder groups flush the buffer cache to freeDoug Ambrisko2008-11-131-0/+4
* Quiet a WITNESS warning with the dirhash sx locks by setting the DUPOKJohn Baldwin2008-11-041-1/+10
* In UFS, when reading EA that contains ACL fails for some reason, includeEdward Tomasz Napierala2008-11-041-2/+5
* Improve VFS locking:Attilio Rao2008-11-022-2/+2
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-282-12/+12
* Provide an explanation for getinoquota() call in the ufs_access vop.Konstantin Belousov2008-10-281-0/+11
* Fix a number of style issues in the MALLOC / FREE commit. I've tried toDag-Erling Smørgrav2008-10-232-3/+6
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-237-65/+62
* Assert that v_holdcnt is non-zero before entering lockmgr in vn_lockKonstantin Belousov2008-10-201-0/+4
* Sync up summary information for cylinder groups while data is alreadyKonstantin Belousov2008-10-131-0/+7
* Remove the struct thread unuseful argument from bufobj interface.Attilio Rao2008-10-102-6/+6
* Enable shared lookups on UFS. There are some remaining issues with forcedJohn Baldwin2008-09-241-1/+1
* Close a race between concurrent calls to ufsdirhash_recycle() andJohn Baldwin2008-09-221-5/+10
* Initialize va_flags and va_filerev properly in VOP_GETATTR(). Don'tKonstantin Belousov2008-09-201-2/+0
* Retire the 'i_reclen' field from the in-memory i-node. Previously,John Baldwin2008-09-162-7/+9
* Fix a race with shared lookups on UFS. If the the dirhash code reached theJohn Baldwin2008-09-162-34/+87
* - Only set i_offset in the parent directory's i-node during a lookup forJohn Baldwin2008-09-161-3/+9
* vdropl() drops the vnode interlock. Thus, the code in the QUOTA case thatJohn Baldwin2008-09-161-3/+2
* Suspend the write operations on the UFS filesystem being unmounted orKonstantin Belousov2008-09-161-14/+73
* When attempt is made to suspend a filesystem that is already syspended,Konstantin Belousov2008-09-163-2/+7
* Add the ffs structures introspection functions for ddb.Konstantin Belousov2008-09-162-1/+65
* When downgrading the read-write mount to read-only, do_unmount() setsKonstantin Belousov2008-09-166-4/+16
* The struct inode *ip supplied to softdep_freefile is not neccessary theKonstantin Belousov2008-09-161-1/+2
* When calling extattr_check_cred, use V{READ,WRITE}, not I{READ,WRITE}.Edward Tomasz Napierala2008-09-032-7/+7
* Decontextualize vfs_busy(), vfs_unbusy() and vfs_mount_alloc() functions.Attilio Rao2008-08-312-4/+4
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-282-4/+2
* In ffs_valloc(), ffs_vget() may fail because insmntque() refused toKonstantin Belousov2008-08-281-1/+11
* Softdep code may need to instantiate vnode when processingKonstantin Belousov2008-08-283-15/+59
* Put the relocked variable from the r182111 into the #ifdef QUOTA bracesKonstantin Belousov2008-08-241-1/+4
* Revert the r167541: "Remove unneeded getinoquota() call in theKonstantin Belousov2008-08-241-1/+23
* Revert r181345.Konstantin Belousov2008-08-101-2/+1
* User may do "mount -o snapshot ...", that causes new FFS mount to beKonstantin Belousov2008-08-061-1/+2
* ufsmount.h uses "struct\tfoo *bar;", except where it doesn't.Dag-Erling Smørgrav2008-08-052-7/+7
* Whitespace, prototypesDag-Erling Smørgrav2008-08-051-88/+27
* Whitespace tweak.John Baldwin2008-07-301-1/+0
* The ffs_balloc_ufs{1,2} functions call bdwrite() while having severalKonstantin Belousov2008-07-231-2/+22
* Say hi to svn, by simplifing ffs_vget() function a bit - there is no need forPawel Jakub Dawidek2008-07-191-3/+1
* Fix comments to replace SBSIZE with SBLOCKSIZE, since SBSIZECraig Rodrigues2008-05-241-2/+2
* After converting the "snapshot" mount option to the MNT_SNAPSHOT flag,Craig Rodrigues2008-05-241-1/+8
* For the following mount options, do not perform the string to flag conversionsCraig Rodrigues2008-05-241-21/+0
* Allow VM object creation in ufs_lookup. (If vfs.vmiodirenable is set)Stephan Uphoff2008-05-201-0/+10
* - Use a local variable for i_ino in ufs_lookup. It is only used toJeff Roberson2008-04-222-14/+10
* Move the head of byte-level advisory lock list from theKonstantin Belousov2008-04-162-42/+0
* - Use a lockmgr lock rather than a mtx to protect dirhash. This lockJeff Roberson2008-04-112-228/+291
* - cache dp->i_offset in the local 'i_offset' variable for use in loopJeff Roberson2008-04-111-29/+48
* Correct function name in panic().Pawel Jakub Dawidek2008-04-071-1/+1
* Optimize lockmgr in order to get rid of the pool mutex interlock, of theAttilio Rao2008-04-061-2/+2
* Add the support for the AT_FDCWD and fd-relative name lookups to theKonstantin Belousov2008-03-311-0/+1