aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
Commit message (Expand)AuthorAgeFilesLines
* Enable vn_io_fault() lock avoidance for UFS.Konstantin Belousov2012-05-302-4/+4
* Add missing `continue' statement at end of case.Kirk McKusick2012-05-181-0/+1
* Remove unused thread argument from clear_inodeps() and clear_remove().Edward Tomasz Napierala2012-04-231-11/+8
* Remove unused thread argument from vtruncbuf().Edward Tomasz Napierala2012-04-234-10/+8
* Fix use-after-free introduced in r234036.Edward Tomasz Napierala2012-04-211-1/+5
* This update uses the MNT_VNODE_FOREACH_ACTIVE interface that loopsKirk McKusick2012-04-201-1/+1
* Replace the MNT_VNODE_FOREACH interface with MNT_VNODE_FOREACH_ALL.Kirk McKusick2012-04-173-79/+29
* Export vinactive() from kern/vfs_subr.c (e.g., make it no longerKirk McKusick2012-04-111-12/+1
* Fix panic in ffs_reload(), which may happen when read-only filesystemEdward Tomasz Napierala2012-04-081-2/+8
* Drop an unnecessary setting of si_mountpt when updating a UFS mount point.Kirk McKusick2012-04-081-2/+0
* A file cannot be deallocated until its last name has been removedKirk McKusick2012-04-021-52/+29
* A refinement of change 232351 to avoid a race with a forcible unmount.Kirk McKusick2012-03-281-4/+19
* Keep track of the mount point associated with a special deviceKirk McKusick2012-03-281-0/+6
* Do trivial reformatting of the comment to record the missed commitKonstantin Belousov2012-03-281-4/+3
* Reviewed by: bde, mckusickKonstantin Belousov2012-03-281-11/+73
* Update comment.Konstantin Belousov2012-03-281-1/+1
* Add a third flags argument to ffs_syncvnode to avoid a possible conflictKirk McKusick2012-03-258-43/+40
* Supply boolean as the second argument to ffs_update(), and not aKonstantin Belousov2012-03-132-7/+7
* Remove superfluous brackets.Konstantin Belousov2012-03-111-1/+1
* Do schedule delayed writes for async mounts.Konstantin Belousov2012-03-111-7/+11
* Do not fall back to slow synchronous i/o when low on memory or buffers.Konstantin Belousov2012-03-111-2/+4
* In ffs_syncvnode(), pass boolean false as second argument of ffs_update().Konstantin Belousov2012-03-111-1/+1
* Remove not needed ARGSUSED lint command.Konstantin Belousov2012-03-111-1/+0
* Revert r232692 as the correct place to fix this is at the syscall level.Peter Holm2012-03-091-2/+2
* Decomission mnt_noasync. Introduce MNTK_NOASYNC mnt_kern_flag whichKonstantin Belousov2012-03-091-2/+1
* syscall() fuzzing can trigger this panic. Return EINVAL instead.Peter Holm2012-03-081-2/+2
* This change avoids a kernel deadlock on "snaplk" when usingKirk McKusick2012-03-015-75/+150
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-4/+8
* Missing conditions in checking whether an inode has been written.Kirk McKusick2012-02-131-0/+3
* Historically when an application wrote an entire block of a file,Kirk McKusick2012-02-091-9/+20
* In the original days of BSD, a sync was issued on every filesystemKirk McKusick2012-02-071-5/+15
* Add missing opt_quota.h include to activate #ifdef QUOTA blocks,Konstantin Belousov2012-02-061-1/+2
* JNEWBLK dependency may legitimately appear on the buf dependencyKonstantin Belousov2012-02-061-0/+1
* There are several bugs/hangs when trying to take a snapshot on a UFS/FFSKirk McKusick2012-01-171-1/+9
* Make sure all intermediate variables holding mount flags (mnt_flag)Kirk McKusick2012-01-171-2/+2
* Convert FFS mount error messages from kernel printf's to using theKirk McKusick2012-01-141-61/+65
* Migrate ufs and ext2fs from skpc() to memcchr().Ed Schouten2012-01-011-13/+7
* Use implementation independent inoNN_t scalars for on-disk UFS structuresGleb Kurtsou2011-11-091-9/+9
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-4/+5
* This update eliminates a lock-order reversal warning discoveredKirk McKusick2011-09-271-21/+24
* This update eliminates the system hang reported in kern/160662 whenKirk McKusick2011-09-271-1/+1
* Use nowait sync request for a vnode when doing softdep cleanup. We possiblyKonstantin Belousov2011-09-201-1/+1
* Generalize ffs_pages_remove() into vn_pages_remove().Martin Matuska2011-08-253-16/+3
* Fix two cases involving opt_capsicum.h and module builds:Robert Watson2011-08-151-1/+0
* Second-to-last commit implementing Capsicum capabilities in the FreeBSDRobert Watson2011-08-111-2/+6
* Update to -r224294 to ensure that only one of MNT_SUJ or MNT_SOFTDEPKirk McKusick2011-07-304-32/+29
* Move the MNTK_SUJ flag in mnt_kern_flag to MNT_SUJ in mnt_flagKirk McKusick2011-07-242-19/+22
* Default debugging error messages to off for journaled soft updates sysctls.Kirk McKusick2011-07-221-5/+3
* Add an FFS specific mount option to allow a filesystem checkerKirk McKusick2011-07-154-24/+305
* Consistently check mount flag (MNTK_SUJ) rather than superblockKirk McKusick2011-07-141-2/+2