aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
Commit message (Expand)AuthorAgeFilesLines
...
* Remove spl() calls from UFS code.Konstantin Belousov2017-05-071-6/+0
* UFS fs.h: clear warning from use in makefs(1)Ed Maste2017-05-051-1/+2
* All these files need sys/vmmeter.h, but now they got it implicitlyGleb Smirnoff2017-04-172-0/+2
* ufs: Export UFS_MAXNAMLEN to pathconf, statfsConrad Meyer2017-04-051-1/+2
* Renumber copyright clause 4Warner Losh2017-02-287-7/+7
* Do not leak mount references for dying threads.Konstantin Belousov2017-02-251-4/+6
* prefix UFS symbols with UFS_ to reduce namespace pollutionEd Maste2017-02-158-170/+182
* ffs_vnops: Simplify extattr accessConrad Meyer2017-01-191-105/+85
* Use type-independent formats for printing nlink_t and ino_t.Konstantin Belousov2017-01-061-3/+5
* Release laundered vnode pages to the head of the inactive queue.Mark Johnston2016-11-231-87/+10
* Provide simple mutual exclusion between mount point update and unmount.Konstantin Belousov2016-11-131-2/+18
* ANSIfy ffs_subr.cEd Maste2016-10-311-37/+9
* Avoid possible overflow when calclating malloc size for auxillaryKirk McKusick2016-10-281-10/+12
* Generalize UFS buffer pager to allow it serving other filesystemsKonstantin Belousov2016-10-281-147/+19
* Include <sys/types.h> explicitly instead of depending on thatMarcel Moolenaar2016-10-241-0/+1
* Add FFS pager, which uses buffer cache read operation to validate pages.Konstantin Belousov2016-10-191-4/+168
* vfs: remove the __bo_vnode field from struct vnodeMateusz Guzik2016-09-302-2/+2
* Be more strict when selecting between snapshot/regular mount.Konstantin Belousov2016-09-191-7/+13
* Reduce size of ufs inode.Konstantin Belousov2016-09-179-288/+322
* Sprinkle DOINGASYNC() checks so as to do delayed writes for asyncBruce Evans2016-09-083-34/+33
* Do not leak transient ENOLCK error from flush_newblk_dep() loop.Konstantin Belousov2016-09-081-0/+1
* In softdep_prealloc(), return early not only for snapshots, but forKonstantin Belousov2016-09-081-3/+6
* Partially lift suspension when ffs_reload() finished with cgs andKonstantin Belousov2016-09-083-5/+16
* Renumber the advertising clause.Warner Losh2016-09-061-1/+1
* Bug 211013 reports that a write error to a UFS filesystem runningKirk McKusick2016-08-162-22/+125
* In UFS_BALLOC(), invalidate pages of indirect buffers on failed blockKonstantin Belousov2016-08-161-4/+4
* On unwind after failed block allocation in ffs_balloc_ufs{1,2}, assertKonstantin Belousov2016-08-161-0/+34
* When looking up dandling buffers for unwing after failing blockKonstantin Belousov2016-08-161-2/+4
* When block allocation fails in UFS_BALLOC(), and the volume does notKonstantin Belousov2016-08-161-4/+4
* In ffs_balloc_ufs{1,2} routines, assert that unwind records do notKonstantin Belousov2016-08-161-0/+12
* Implement VOP_FDATASYNC() for UFS.Konstantin Belousov2016-08-152-22/+68
* Replace all remaining calls to vprint(9) with vn_printf(9), and removeEdward Tomasz Napierala2016-08-102-2/+2
* arc4random() returns 0 to (2**32)−1, use an alternative to initializeKevin Lo2016-05-222-4/+6
* Stop dropping and reacquiring Giant around geom calls in UFS.Konstantin Belousov2016-05-211-16/+0
* Improve handling of rdev->si_mountpt on mount and unmount of FFSKonstantin Belousov2016-05-211-13/+17
* Do enable io accounting for read-only mounts and mounts which areKonstantin Belousov2016-05-171-2/+4
* If IO_SYNC was passed to ffs_truncate(), request synchronous inodeKonstantin Belousov2016-05-171-1/+1
* Fix comments.Konstantin Belousov2016-05-171-2/+2
* UFS: spelling fixes on comments.Pedro F. Giffuni2016-04-294-8/+8
* sys: use our roundup2/rounddown2() macros when param.h is available.Pedro F. Giffuni2016-04-211-1/+1
* ufs: replace 0 with NULL for pointers.Pedro F. Giffuni2016-04-103-21/+27
* Add four new RCTL resources - readbps, readiops, writebps and writeiops,Edward Tomasz Napierala2016-04-072-0/+16
* Split the global taskqueue used to process all UFS trim completions,Konstantin Belousov2016-03-272-3/+16
* Fix locking mistake in softdep_waitidle(). The surrounding codeKonstantin Belousov2016-03-231-1/+1
* 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
* For performance reasons, it is useful to have a single string used asKirk McKusick2015-11-291-4/+2