aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* The UFS filesystem requires that the last block of a file always beKirk McKusick2016-02-241-17/+60
* Remove ffs_mountroot() prototype; seems to be long gone.Edward Tomasz Napierala2016-01-281-1/+0
* This fixes a bug in UFS2 exported NFS volumes. An NFS client canKirk McKusick2016-01-271-3/+28
* The bread() function was inconsistent about whether it would returnKirk McKusick2016-01-271-3/+1
* Recheck curthread->td_su after the VFS_SYNC() call, and re-sync if theKonstantin Belousov2015-12-211-32/+32
* Update ctime when atime or birthtime are updated.Konstantin Belousov2015-12-071-8/+3
* For performance reasons, it is useful to have a single string used asKirk McKusick2015-11-291-4/+2
* Do not perform read-ahead for BA_CLRBUF request when we are low onKonstantin Belousov2015-10-271-2/+6
* Do not relocate extents to make them contiguous if the underlying drive can doWarner Losh2015-10-161-2/+12
* In softdep_setup_freeblocks():Gleb Smirnoff2015-10-071-6/+7
* Do not consume extra reference. This is a bug in r287479.Konstantin Belousov2015-09-051-2/+1
* Declare the writes around the call to VFS_SYNC() inKonstantin Belousov2015-09-051-2/+7
* By doing file extension fast, it is possible to create excess supplyKonstantin Belousov2015-09-011-19/+25
* - Make 'struct buf *buf' private to vfs_bio.c. Having a global variableJeff Roberson2015-07-291-35/+0
* Refactor unmapped buffer address handling.Jeff Roberson2015-07-233-25/+10
* Move chdir/chroot-related fdp manipulation to kern_descrip.cMateusz Guzik2015-07-111-8/+2
* Check suspendability on the mountpoint returned by VOP_GETWRITEMOUNT.Mark Johnston2015-07-051-2/+1
* Huge cleanup of random(4) code.Mark Murray2015-06-301-6/+12
* Simplify code, no need to test the flag before clearing it.Konstantin Belousov2015-06-291-2/+1
* Handle errors from background write of the cylinder group blocks.Konstantin Belousov2015-06-271-1/+19
* vfs_msync(), called from syncer vnode fsync VOP, only iterates overKonstantin Belousov2015-06-171-3/+11
* Replace struct filedesc argument in getvnode with struct threadMateusz Guzik2015-06-161-2/+2
* Syncing a directory vnode might drop the vnode lock in theKonstantin Belousov2015-06-031-2/+2
* Remove unused variable.Konstantin Belousov2015-05-311-2/+0
* Remove several write-only variables, all reported by the gcc 4.9Konstantin Belousov2015-05-296-36/+2
* After r283600, NODELAY flag to inodedep_lookup() function is unused.Konstantin Belousov2015-05-271-38/+17
* Currently, softupdate code detects overstepping on the workitemsKonstantin Belousov2015-05-271-14/+104
* Limit the number of cylinder groups that will be searched whenKirk McKusick2015-04-243-16/+65
* File systems that do not use the buffer cache (such as ZFS) mustRick Macklem2015-04-151-1/+2
* Fix build (with gcc).Konstantin Belousov2015-03-271-0/+1
* Fix the hand after the immediate reboot when the following commandKonstantin Belousov2015-03-272-24/+67
* Partially revert r277922, avoid sleeping and do flush if we a awaken,Konstantin Belousov2015-02-051-8/+6
* When mounting SU-enabled mount point, wait until the softdep_flush()Konstantin Belousov2015-01-302-7/+18
* The sys_quotactl() contract demands that the mount point isKonstantin Belousov2015-01-272-3/+15
* Handle MAKEENTRY cnp flag in the VOP_CREATE(). Curiously, someKonstantin Belousov2014-12-211-1/+3
* The VOP_LOOKUP() implementations for CREATE op do not put the nameKonstantin Belousov2014-12-182-2/+3
* Adjust printf format specifiers for dev_t and ino_t in kernel.Gleb Kurtsou2014-12-172-4/+5
* Merge from projects/sendfile:Gleb Smirnoff2014-11-231-0/+2
* buf.h is not needed here, and pollutes when ufsmount.h is includedGleb Smirnoff2014-11-231-2/+0
* Include required files directly instead of pollution via ufs/ufsmount.h.Gleb Smirnoff2014-11-233-0/+3
* Use the correct variable name.Davide Italiano2014-11-221-1/+1
* Make ufs_dirhashreclaimperc a percentage for real andDavide Italiano2014-11-221-5/+26
* When non-forced unmount or remount rw->ro is performed, writes on UFSKonstantin Belousov2014-11-021-5/+6
* Provide vfs suspension support only for filesystems which need it, takeMateusz Guzik2014-10-201-1/+1
* Use lockless quota checks in qsync and qsyncvp.Mateusz Guzik2014-10-161-4/+0
* Do not set IN_ACCESS flag for read-only mounts. The IN_ACCESSKonstantin Belousov2014-10-111-1/+1
* Restore the backed-out change, using __offsetof instead.Warner Losh2014-10-101-1/+1
* Backout r272825 every useland usage of ufs/ufs/dir.h are now broken with that...Baptiste Daroussin2014-10-091-1/+1
* Use offsetof() from sys/types.h instead of a custom oneBaptiste Daroussin2014-10-091-1/+1
* Provide the unique implementation for the VOP_GETPAGES() method usedKonstantin Belousov2014-09-151-50/+2