aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_alloc.c
Commit message (Expand)AuthorAgeFilesLines
* Update to -r224294 to ensure that only one of MNT_SUJ or MNT_SOFTDEPKirk McKusick2011-07-301-2/+2
* 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-151-8/+177
* When first creating snapshots, we may free some blocks within it.Kirk McKusick2011-07-101-1/+5
* - Fix directory count rollbacks by passing the mode to the journal depJeff Roberson2011-06-201-1/+1
* Ensure that filesystem metadata contained within persistent snapshotsKirk McKusick2011-06-151-9/+10
* With the restructuring of the block reclaimation code, the notificationKirk McKusick2011-06-151-4/+3
* Update to soft updates journaling to properly track freed blocksKirk McKusick2011-06-121-1/+1
* Implement fully asynchronous partial truncation with softupdates journalingJeff Roberson2011-06-101-2/+2
* 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
* VFS sometimes is unable to inactivate a vnode when vnode use countKonstantin Belousov2011-04-241-1/+2
* Be far more persistent in reclaiming blocks and inodes before givingKirk McKusick2011-04-051-5/+5
* Add retry code analogous to the block allocation retry codeKirk McKusick2011-03-231-3/+10
* Use ffs() to locate free bits in the inode bitmap rather than a loop withJohn Baldwin2011-03-041-10/+6
* Add kernel side support for BIO_DELETE/TRIM on UFS.Konstantin Belousov2010-12-291-2/+100
* - Handle the truncation of an inode with an effective link count of 0 inJeff Roberson2010-07-061-20/+0
* - Merge soft-updates journaling from projects/suj/head into head. ThisJeff Roberson2010-04-241-169/+83
* When ffs_realloccg() failed to allocate bigger fragment and, becauseKonstantin Belousov2010-02-131-1/+3
* This fix corrects a problem in the file system that treats largeKirk McKusick2010-02-101-32/+38
* Cast 64-bit quantity to intptr_t rather than int so as to work properlyKirk McKusick2010-01-111-2/+2
* Background:Kirk McKusick2010-01-111-8/+124
* Introduce vfs_bio_set_valid() and use it from ffs_realloccg(). ThisAlan Cox2009-05-171-8/+6
* When a device containing mounted UFS filesystem disappears, the typeEdward Tomasz Napierala2009-02-061-4/+4
* Following a fair amount of real world experience with ACLs andRobert Watson2009-01-271-7/+16
* In ffs_valloc(), ffs_vget() may fail because insmntque() refused toKonstantin Belousov2008-08-281-1/+11
* Fix a broken check that recently became more annoying because it nowKen Smith2007-12-011-2/+4
* Turn most ffs 'DIAGNOSTIC's into INVARIANTS.David E. O'Brien2007-11-081-17/+17
* Fix a DIV0 in case a large value for fs_avgfilesize or fs_avgfpdirBjoern A. Zeeb2007-09-101-1/+4
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-2/+2
* Account for di_blocks allocations when IN_SPACECOUNTED is set in anBrian Somers2007-02-231-3/+28
* Quota system cleanup.Mike Pritchard2007-01-201-1/+1
* Fix a spelling error in some comments. heirarchy -> hierarchy.Mike Pritchard2007-01-161-2/+2
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-2/+3
* Drop two unnecessary casts.Stefan Farfeleder2006-07-181-2/+2
* - Move softdep from using a global worklist to per-mount worklists. ThisJeff Roberson2006-03-021-3/+3
* Rate limit filesystem full and out of inodes messages to once aPaul Saab2005-10-311-6/+21
* Avoid unintended VMIO on directories and symlinks due to leftover objectTor Egge2005-10-101-0/+1
* Reinitialize v_type and v_op fields in case vnode has been reused withoutTor Egge2005-10-091-0/+5
* Initialize the inode i_flag field in ffs_valloc() to clean up anyDon Lewis2005-10-031-0/+1
* Back out alpha/alpha/trap.c:1.124, osf1_ioctl.c:1.14, osf1_misc.c:1.57,Robert Watson2005-09-281-6/+0
* Add GIANT_REQUIRED and WITNESS sleep warnings to uprintf() and tprintf(),Robert Watson2005-09-191-0/+6
* The recomputation of file system summary at mount time can be aXin LI2005-02-201-1/+68
* Make a some SYSCTL_NODEs and some of FFS's VFS_ methods static.Poul-Henning Kamp2005-02-101-5/+5
* Don't use the UFS_* and VFS_* functions where a direct call is possble.Poul-Henning Kamp2005-02-081-6/+6
* - Don't use atomic operations to deal with the active array, insteadJeff Roberson2005-01-241-96/+183
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
* Fixes a bug that caused UFS2 filesystems bigger than 2TB toKirk McKusick2004-12-091-9/+9
* Move UFS from DEVFS backing to GEOM backing.Poul-Henning Kamp2004-10-291-3/+0