aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-114-20/+26
* Do not embed struct ucred into larger netcred parent structures.Alexander Kabaev2009-05-091-1/+0
* Change the semantics of i_modrev/va_filerev to what is required forRick Macklem2009-04-273-6/+6
* In ufs_checkpath(), recheck that '..' still points to the inode withKonstantin Belousov2009-04-203-41/+55
* When verifying '..' after VFS_VGET() in ufs_lookup(), do not returnKonstantin Belousov2009-04-191-15/+17
* Use acl_alloc() and acl_free() instead of using uma(9) directly.Edward Tomasz Napierala2009-04-181-19/+19
* Verify that '..' still exists with the same inode number afterKonstantin Belousov2009-04-161-9/+35
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* When removing or renaming snaphost, do not delve into request_cleanup().Konstantin Belousov2009-04-041-1/+1
* Correct typo.Konstantin Belousov2009-03-271-2/+2
* Fix two issues with bufdaemon, often causing the processes to hang inKonstantin Belousov2009-03-161-1/+4
* The non-modifying EA VOPs are executed with only shared vnode lock taken.Konstantin Belousov2009-03-123-63/+94
* Do not double-free the struct inode when insmntque failed. DefaultKonstantin Belousov2009-03-111-1/+0
* Add a new internal mount flag (MNTK_EXTENDED_SHARED) to indicate that aJohn Baldwin2009-03-111-3/+7
* Adjust some variables (mostly related to the buffer cache) that holdJohn Baldwin2009-03-092-3/+3
* Right now, when trying to unmount a device that's already gone,Edward Tomasz Napierala2009-02-231-2/+2
* Refactor, moving error checking outside of theEdward Tomasz Napierala2009-02-231-7/+7
* - If the g_access() call for the initial root mount fails, then fullyJohn Baldwin2009-02-111-6/+6
* When a device containing mounted UFS filesystem disappears, the typeEdward Tomasz Napierala2009-02-061-4/+4
* Make sure the cdev doesn't go away while the filesystem is still mounted.Edward Tomasz Napierala2009-01-291-0/+3
* Following a fair amount of real world experience with ACLs andRobert Watson2009-01-275-39/+44
* Fix a few style bogons.John Baldwin2009-01-211-2/+2
* Move the code from ufs_lookup.c used to do dotdot lookup, intoKonstantin Belousov2009-01-211-22/+1
* Move the VA_MARKATIME flag for VOP_SETATTR() out into its own VOP:John Baldwin2009-01-211-11/+22
* The r187467 should remove all pages for V_NORMAL case too, becauseKonstantin Belousov2009-01-201-8/+17
* Add a comment explaining why the "bufwait" / "dirhash" LOR reported byJohn Baldwin2009-01-201-0/+12
* When extending inode size, we call vnode_pager_setsize(), to have aKonstantin Belousov2009-01-202-2/+6
* FFS puts the extended attributes blocks at the negative blocks for theKonstantin Belousov2009-01-201-0/+9
* Lock the uepm_lock around the autostart of extattrs.Konstantin Belousov2009-01-081-15/+30
* If unmount of the ffs mp failed, reinitialize the extended attributesKonstantin Belousov2009-01-081-0/+14
* Do not busy twice the mount point where a quota operation is performed.Konstantin Belousov2008-12-181-4/+0
* According to phk@, VOP_STRATEGY should never, _ever_, returnEdward Tomasz Napierala2008-12-161-1/+1
* The dqrele() function syncs the dq, then acquires the dqh lock, and thenKonstantin Belousov2008-12-081-1/+13
* Improve usefulness of the panic by printing the pointer to the problematicKonstantin Belousov2008-12-071-1/+1
* Do not lock vnode interlock around reading of v_iflag to check VI_DOOMED.Konstantin Belousov2008-12-021-9/+2
* 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