aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* Perform range check before allocating memory when readingCraig Rodrigues2007-07-131-0/+4
* Fix an annoying pointer/int cast warning that shows up on 64 bit systems.Peter Wemm2007-07-021-1/+1
* Fix livelock that could occur when snapshoting UFS with quotas, whereKonstantin Belousov2007-06-222-3/+3
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-124-32/+16
* Commit 14/14 of sched_lock decomposition.Jeff Roberson2007-06-051-9/+15
* Change the VOP_OPEN(), vn_open() vnode operation and d_fdopen() cdev operationKonstantin Belousov2007-06-011-1/+1
* - Move rusage from being per-process in struct pstats to per-thread inJeff Roberson2007-06-012-2/+2
* Revert UF_OPENING workaround for CURRENT.Konstantin Belousov2007-05-311-1/+1
* - Remove unnecessary vnode internal locking - v_vflag is protect by vnode'sPawel Jakub Dawidek2007-05-281-18/+9
* Eliminate VI_LOCK()/VI_UNLOCK() pair from getattr and close code paths.Pawel Jakub Dawidek2007-05-231-20/+27
* Since renaming of vop_lock to _vop_lock, pre- and post-conditionKonstantin Belousov2007-05-181-7/+7
* Add a newline to the printf message.Andrew Thompson2007-05-031-1/+1
* Fix the NAMEI zone leak when snapshot was successfully created.Konstantin Belousov2007-04-101-0/+1
* Recalculate the NEWBLOCK flag for pagedep structure after the softdepKonstantin Belousov2007-04-101-5/+26
* When LK_NOWAIT is passed as argument to process_worklist_item(), thisKonstantin Belousov2007-04-101-1/+4
* Use *_EMPTY macros when appropriate.Xin LI2007-04-044-47/+47
* Revert rev. 1.205. Replace unconditional acquision of Giant when QUOTAS areKonstantin Belousov2007-03-291-0/+5
* Mark UFS as being MP-Safe in "options QUOTA" case too. Remove no moreKonstantin Belousov2007-03-202-19/+0
* When we write extended attributes, assert that the inode hasn'tBrian Somers2007-03-191-0/+3
* Implement fine-grained locking for UFS quotas.Konstantin Belousov2007-03-143-142/+493
* Call getinoquota() before allocating new block for the directory to properlyKonstantin Belousov2007-03-141-0/+8
* Remove unneeded getinoquota() call in the ufs_access().Konstantin Belousov2007-03-141-4/+0
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-1/+10
* Move macros describing extended attributes in UFS fromKirk McKusick2007-03-061-0/+49
* Fix build breakage.Pawel Jakub Dawidek2007-03-011-1/+1
* Change:Pawel Jakub Dawidek2007-03-011-1/+1
* Rename PRIV_VFS_CLEARSUGID to PRIV_VFS_RETAINSUGID, which seems to betterPawel Jakub Dawidek2007-03-012-3/+4
* Avoid checking for privileges if there is no need to.Pawel Jakub Dawidek2007-03-012-13/+18
* Account for di_blocks allocations when IN_SPACECOUNTED is set in anBrian Somers2007-02-232-7/+32
* The functions that set and delete external attributes must checkKirk McKusick2007-02-211-0/+9
* Rename three quota privileges from the UFS privilege namespace to theRobert Watson2007-02-191-5/+5
* Limit quota privileges in jail to PRIV_UFS_GETQUOTA andRobert Watson2007-02-191-12/+3
* This README file is obsolete. The cited problems were fixed long agoKirk McKusick2007-02-171-58/+0
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-152-22/+28
* Style(9).Konstantin Belousov2007-02-151-5/+11
* Remove not needed acquision of the mount interlock aroung reading ofKonstantin Belousov2007-02-081-12/+5
* Call pbgetvp() and pbrelvp() instead of setting b_vp directly.Tor Egge2007-02-041-3/+9
* If quotacheck or edquota reset the block or inode grace time forMike Pritchard2007-02-041-2/+10
* Prevent quotactl calls that pass in an id of -1 from incorrectlyMike Pritchard2007-02-011-7/+20
* Disallow negative UIDs when processing quotactl options.Mike Pritchard2007-02-011-0/+5
* Cylinder group bitmaps and blocks containing inode for a snapshotKonstantin Belousov2007-01-233-0/+120
* Fix build. chkdquot() should not return anything.Xin LI2007-01-201-1/+1
* Quota system cleanup.Mike Pritchard2007-01-204-30/+41
* Fix a spelling error. heirarchy -> hierarchy.Mike Pritchard2007-01-161-1/+1
* Fix a spelling error in some comments. heirarchy -> hierarchy.Mike Pritchard2007-01-161-2/+2
* Canonicalize copyright: use a date range rather than comma-delimitedRobert Watson2007-01-081-1/+1
* change vop_lock handling to allowing tracking of callers' file and line forKip Macy2006-11-131-9/+11
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-066-43/+84
* Aquire Giant in the softdep_flush for clear_remove() and clear_inodedeps()Konstantin Belousov2006-11-011-0/+7
* Add gjournal specific code to the UFS file system:Pawel Jakub Dawidek2006-10-317-4/+247