aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Use implementation independent inoNN_t scalars for on-disk UFS structuresGleb Kurtsou2011-11-092-11/+11
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-4/+5
* Remove MALLOC_DECLAREs of nonexisting malloc-pools.Ed Schouten2011-11-061-4/+0
* Fix the wrong commit log message for r226967: "Added missing cache purgePeter Holm2011-10-311-0/+2
* The kern_renameat() looks up the fvp using the DELETE flag, which causesPeter Holm2011-10-311-0/+7
* 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 lock leak.Andrey V. Elsukov2011-08-231-2/+2
* 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-305-35/+34
* Move the MNTK_SUJ flag in mnt_kern_flag to MNT_SUJ in mnt_flagKirk McKusick2011-07-243-20/+23
* 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-155-24/+306
* Consistently check mount flag (MNTK_SUJ) rather than superblockKirk McKusick2011-07-141-2/+2
* When first creating snapshots, we may free some blocks within it.Kirk McKusick2011-07-101-1/+5
* Allow disk partitions associated with UFS read-only mountedKirk McKusick2011-07-101-15/+7
* Use 'curthread_pflags' instead of 'thread_pflags' to signify that onlyKonstantin Belousov2011-07-091-12/+12
* Use helper functions instead of manually managing TDP_INBDFLUSH.Konstantin Belousov2011-07-091-16/+12
* - Speed up pendingblock processing again. Having too much delay betweenJeff Roberson2011-07-042-15/+41
* - Handle D_JSEGDEP in the softdep_sync_buf() switch. These can nowJeff Roberson2011-07-041-0/+1
* - It is impossible to run request_cleanup() while doing a copyonwrite.Jeff Roberson2011-07-041-25/+21
* - Fix an inode quota leak. We need to decrement the quota once and onlyJeff Roberson2011-07-041-5/+4
* Handle the FREEDEP case in softdep_sync_buf().Kirk McKusick2011-06-291-0/+1
* Add a new option, OBJPR_NOTMAPPED, to vm_object_page_remove(). Passing thisAlan Cox2011-06-291-1/+1
* - Fix directory count rollbacks by passing the mode to the journal depJeff Roberson2011-06-203-47/+163
* Fixed dereference of a NULL pointer.Kirk McKusick2011-06-181-1/+2
* Drop the include of <ufs/ffs/ffs_extern.h> from usr.sbin/makefs/ffs/ffs_bswap.cKirk McKusick2011-06-161-2/+5
* Fixing compilation bustage by introducing another forward declaration.Tai-hwa Liang2011-06-161-0/+1
* Ensure that filesystem metadata contained within persistent snapshotsKirk McKusick2011-06-157-42/+74
* With the restructuring of the block reclaimation code, the notificationKirk McKusick2011-06-153-4/+28
* Missing cleanup case after completion of a snapshot vnode writeKirk McKusick2011-06-151-0/+4
* Use alternative, less messy solution to avoid breakage after r223020:Dimitry Andric2011-06-131-0/+2
* Update to soft updates journaling to properly track freed blocksKirk McKusick2011-06-125-30/+180
* Disable the soft updates journaling after a filesystem is successfullyKirk McKusick2011-06-122-2/+11
* Implement fully asynchronous partial truncation with softupdates journalingJeff Roberson2011-06-1011-1507/+2627
* - Add support for referencing quota structures without needing the inodeJeff Roberson2011-06-102-0/+101
* - If the fsync in ufs_direnter fails SUJ can later panic because we haveJeff Roberson2011-06-101-1/+1
* Grammer fix in comment.Kirk McKusick2011-06-051-3/+3
* Due to a lag in updating the fs_pendinginodes count, we cannot dependKirk McKusick2011-05-281-1/+1
* The check for whether a block is going to be claimed by a snapshotKirk McKusick2011-05-261-4/+12
* Fix the ufs/ffs file system so that it uses the lockRick Macklem2011-05-221-1/+1
* Add a lock flags argument to the VFS_FHTOVP() file systemRick Macklem2011-05-223-4/+6
* Use a name instead of a magic number for kern_yield(9) when the priorityMatthew D Fleming2011-05-131-1/+1
* Fix typos.Konstantin Belousov2011-04-301-2/+2
* Clarify the comment.Konstantin Belousov2011-04-301-2/+4
* VFS sometimes is unable to inactivate a vnode when vnode use countKonstantin Belousov2011-04-243-23/+31
* - Refactor softdep_setup_freeblocks() into a set of functions to prepareJeff Roberson2011-04-111-151/+221