aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* When performing a VOP_LOOKUP() as part of UFS1 extended attributeRobert Watson2005-10-121-0/+1
* Move execve's access time update functionality into a newDiomidis Spinellis2005-10-121-3/+3
* Avoid unintended VMIO on directories and symlinks due to leftover objectTor Egge2005-10-101-0/+1
* Adjust totread argument passed to cluster_read() to account for offset notTor Egge2005-10-091-1/+1
* Don't pretend that a failed sync write was succesful.Tor Egge2005-10-091-3/+1
* Reduce probability for a deadlock that can occur when a snapshot inode isTor Egge2005-10-091-0/+11
* Eliminate a deadlock that can occur when a dirty block belonging to a snapshotTor Egge2005-10-091-0/+2
* Eliminate a deadlock that can occur during the cgaccount() processing due toTor Egge2005-10-091-3/+2
* Reduce the probability of low block numbers passed to ffs_snapblkfree() byTor Egge2005-10-091-55/+35
* 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
* Correct previous commit to fix the sense of the TDP_NORUNNINGBUFDon Lewis2005-10-011-1/+1
* Un-staticize waitrunningbufspace() and call it before returning fromDon Lewis2005-09-301-1/+13
* Un-staticize runningbufwakeup() and staticize updateproc.Don Lewis2005-09-301-4/+16
* After a rmdir()ed directory has been truncated, force an update ofDon Lewis2005-09-291-0/+2
* Back out alpha/alpha/trap.c:1.124, osf1_ioctl.c:1.14, osf1_misc.c:1.57,Robert Watson2005-09-281-6/+0
* Use the refcount API to manage the reference count for user credentialsJohn Baldwin2005-09-271-2/+3
* Restore a historical ufs_inactive behavior that has been changedXin LI2005-09-231-1/+1
* Add GIANT_REQUIRED and WITNESS sleep warnings to uprintf() and tprintf(),Robert Watson2005-09-191-0/+6
* Giant is no longer needed here.Tor Egge2005-09-121-3/+0
* Convert the primary ACL allocator from malloc(9) to using a UMA zone instead.Christian S.J. Peron2005-09-061-19/+19
* Retain generation count when writing zeroes instead of an inode to disk.Tor Egge2005-09-051-4/+42
* ffs_mountfs() needs devvp to be locked, so lock it.Suleiman Souhlal2005-09-021-5/+3
* Set the mountpoint path in the superblock (fs_fsmnt) at mount-timeSuleiman Souhlal2005-08-211-1/+2
* Don't set the COMPLETE flag in an inodedep structure before the relatedTor Egge2005-08-211-1/+1
* In the ufsdirhash_build() failure case for corrupted directoriesIan Dowse2005-08-171-2/+3
* Delay freeing disk space for file system blocks until all dirty buffersStephan Uphoff2005-07-312-0/+20
* Eliminate inconsistency in the setting of the B_DONE flag. Specifically,Alan Cox2005-07-201-1/+1
* Allow EVFILT_VNODE events to work on every filesystem type, not justSuleiman Souhlal2005-06-092-129/+2
* This patch addresses a standards violation issue. The standards say aKen Smith2005-05-311-0/+11
* - Don't set our bio op to be a READ when we've just completed a write. ThereJeff Roberson2005-05-301-10/+10
* Allow removal of empty directories with high link counts. These canKirk McKusick2005-05-181-3/+2
* - Don't restrict the softdep stats to DEBUG kernels, they cost nothing toJeff Roberson2005-05-031-11/+7
* - Use bdone() directly instead of calling it indirectly throughJeff Roberson2005-04-301-11/+1
* - Plug memory leak.Pawel Jakub Dawidek2005-04-161-3/+10
* - Change all filesystems and vfs_cache to relock the dvp once the child isJeff Roberson2005-04-131-3/+2
* - Consistently call 'vp' vp rather than ovp sometimes in ffs_truncate().Jeff Roberson2005-04-051-105/+104
* - Use M_ZERO rather than explicitly calling bzero().Jeff Roberson2005-04-031-13/+13
* - In ffs_sync we need to pass LK_SLEEPFAIL in when we lock the vnodeJeff Roberson2005-04-031-4/+3
* - Move the contents of softdep_disk_prewrite into ffs_geom_strategy to fixJeff Roberson2005-04-033-32/+21
* - Fix botched LK_NOWAIT removal. I mistakenly thought this compiled asJeff Roberson2005-03-311-1/+1
* - FFS supports shared locks, clear LK_NOSHARE from our vnode locks.Jeff Roberson2005-03-311-1/+2
* - Set LK_NOSHARE for snapshot locks. snapshots require exclusive onlyJeff Roberson2005-03-312-22/+2
* - LK_NOPAUSE is a nop now.Jeff Roberson2005-03-313-8/+8
* - Remove wantparent, it is no longer necessary. An assert in vfs_lookup.cJeff Roberson2005-03-291-7/+1
* - Upgrade a shared lock request to exclusive in ffs_vget() if we haveJeff Roberson2005-03-291-0/+9
* - Honor the cn_lkflags passed from namei() when locking the leaf.Jeff Roberson2005-03-291-2/+3
* - UFS no longer uses PDIRUNLOCK to track the parent state. Instead, we nowJeff Roberson2005-03-281-12/+7
* - We no longer have to bother with PDIRUNLOCK, lookup() handles it for us.Jeff Roberson2005-03-281-30/+5
* When the softupdates worklist gets too long, threads that attempt toDavid Schultz2005-03-251-2/+5