aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Provide the unique implementation for the VOP_GETPAGES() method usedKonstantin Belousov2014-09-151-50/+2
* We don't need an exclusive object lock on the expected execution pathAlan Cox2014-09-131-3/+8
* Direct access to the quota files, in particular, lookup, causes lockKonstantin Belousov2014-08-291-0/+13
* Rather than using an hardcoded reclaim age, rely on an LRU-like approachDavide Italiano2014-08-251-36/+19
* Do not busy the UFS mount point inside VOP_RENAME(). TheKonstantin Belousov2014-08-201-9/+0
* Correct the test for condition to suspend UFS filesystem duringKonstantin Belousov2014-08-201-1/+1
* Revision r269457 removed the Giant around mount and unmount code, butKonstantin Belousov2014-08-121-2/+6
* The SUJ journal is only prepared to handle full-size block numbers, so weKirk McKusick2014-08-071-0/+31
* Add support for multi-threading of soft updates.Kirk McKusick2014-08-042-109/+250
* Simplify comment to remove multiple negative and passive voice.Warner Losh2014-07-231-2/+1
* Check for the cross-device cross-link attempt in the VFS, instead ofKonstantin Belousov2014-07-161-4/+0
* Extract the code to put a filesystem into the suspended state (at theKonstantin Belousov2014-07-141-44/+7
* In msdosfs_setattr(), add a check for result of the utimes(2)Konstantin Belousov2014-06-171-29/+2
* Initialize the pbuf counter for directio using SYSINIT, instead ofKonstantin Belousov2014-06-081-6/+4
* don't check fs_flags for _FLAGS_UPDATED as it is stored in fs_old_flags..John-Mark Gurney2014-06-031-2/+2
* Due to reasons unknown at this time, the system can be forced to writeScott Long2014-05-061-0/+26
* Update comment to explain search order reverted to historical orderKirk McKusick2014-03-221-10/+11
* Update kernel inclusions of capability.h to use capsicum.h instead; someRobert Watson2014-03-161-1/+1
* - If we fail to do a non-blocking acquire of a buf lock while doing aJeff Roberson2014-03-061-2/+10
* - Gracefully handle truncation failures when trying to shrink directories.Jeff Roberson2014-03-061-3/+6
* ufs: small formatting fixes.Pedro F. Giffuni2014-03-0217-196/+196
* Fine tune filesystem block allocations under low free-spaceKirk McKusick2013-12-301-4/+4
* Properly handle unsigned comparison.Kirk McKusick2013-12-301-10/+4
* We needlessly panic when trying to flush MKDIR_PARENT dependencies.Kirk McKusick2013-12-011-2/+20
* fix white space...John-Mark Gurney2013-11-201-1/+1
* fix a use after free, jsegdep_merge will free wk, avoid the next check...John-Mark Gurney2013-11-201-1/+1
* UFS2: make di_extsize unsigned.Pedro F. Giffuni2013-10-242-4/+5
* Allow kernels without options SOFTUPDATES to build. This should fix theBrooks Davis2013-10-211-0/+2
* Fix build problem on ARM (which defaults to building without soft updates).Kirk McKusick2013-10-211-4/+4
* Restructuring of the soft updates code to set it up so that theKirk McKusick2013-10-213-622/+872
* Fourth of several cleanups to soft dependency implementation.Kirk McKusick2013-10-201-24/+123
* Third of several cleanups to soft dependency implementation.Kirk McKusick2013-10-202-10/+16
* Second of several cleanups to soft dependency implementation.Kirk McKusick2013-10-202-36/+0
* First of several cleanups to soft dependency implementation.Kirk McKusick2013-10-202-6/+6
* Make di_blocks unsigned in UFS1 as is the case already for UFS2.Pedro F. Giffuni2013-10-141-1/+1
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-3/+4
* In looking at block layouts as part of fixing filesystem blockKirk McKusick2013-08-281-2/+2
* A performance problem was reported in PR kern/181226:Kirk McKusick2013-08-281-2/+14
* Take a very small step toward the Century of the Anchovy by increasing theIvan Voras2013-08-281-1/+1
* Expand the use of stat(2) flags to allow storing some Windows/DOSKenneth D. Merry2013-08-211-3/+5
* This bug fix is in a code path in rename taken when there is aKirk McKusick2013-08-061-1/+1
* With the addition of journalled soft updates, the "newblk" structuresKirk McKusick2013-08-051-1/+1
* To better understand performance problems with journalled soft updates,Kirk McKusick2013-08-051-9/+43
* Update to comments describing block allocation policy.Kirk McKusick2013-07-141-7/+6
* Only copy as much bytes as there in superblock, instead of the fullKonstantin Belousov2013-07-121-1/+1
* Change i_gen in UFS to an unsigned type.Pedro F. Giffuni2013-07-101-1/+1
* There are several code sequences likeKonstantin Belousov2013-07-093-4/+4
* Make better use of metadata area by avoiding using it for data blocksKirk McKusick2013-07-022-3/+25
* Style fix: spaces.Pedro F. Giffuni2013-07-021-1/+1
* Change i_gen in UFS to an unsigned type.Pedro F. Giffuni2013-07-011-1/+1