summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_vfsops.c
AgeCommit message (Expand)Author
2006-12-28Zap nextgennumber, unused since LFS went up into the attic.Thordur I. Bjornsson
2006-10-20brelse() after failed bread(), from Christoph Egger, okay mickey@Pedro Martelletto
2006-08-07Revert last commitPedro Martelletto
2006-08-06obey the locking disaplince wrt to VOP_CLOSE during umountsThordur I. Bjornsson
2006-06-17Refuse to mount a ffs fielsystems whose number of frags is not 1, 2, 4 or 8,Miod Vallat
2006-05-20Don't mark a mount point read-only if we are about to sync it, otherwisePedro Martelletto
2006-04-19Remove unused mount list simple_lock() gooPedro Martelletto
2006-04-12revert the new superblock format. it violates the rule that newTed Unangst
2006-04-07Add and use ffs_validate(), a function for sanity checking super blocksPedro Martelletto
2006-04-01Mark FFS2 file systems with UM_UFS2Pedro Martelletto
2006-03-31FFS2 dinode pool needs to be defined here tooPedro Martelletto
2006-03-31Make ffs_statfs() tag FFS2 file systems as suchPedro Martelletto
2006-03-31ffs_statfs() should not panic on FFS2 file systemsPedro Martelletto
2006-03-31Teach ffs_vget() to allocate and associate FFS2 dinodesPedro Martelletto
2006-03-31Add a pool for FFS2 dinodesPedro Martelletto
2006-03-31Super block changes for FFS2, thanks to all who tested.Pedro Martelletto
2006-03-09- Slightly more informative error message (requested by krw@)Pedro Martelletto
2006-03-09Better handling of ancient file systems that still have 4.2 BSDPedro Martelletto
2006-02-14if updating supablock fails w/ EROFS just procede w/ unmount thus allowing un...Michael Shalayeff
2006-01-03Fix UFS2 detection by looking for the super-block at every possiblePedro Martelletto
2005-12-28Use the DIP macros to uniformly access fields from UFS1 and UFS2 dinodes.Pedro Martelletto
2005-12-17Remove the 'on disk' inode (dinode) from the 'in memory' inode in UFS.Pedro Martelletto
2005-11-30Use suser() to check for root privileges, okay hshoexer@ deraadt@Pedro Martelletto
2005-11-30No need for vfs_busy() and vfs_unbusy() to take a process pointerPedro Martelletto
2005-11-08Use ANSI function declarations and deregister, no binary changePedro Martelletto
2005-11-06Replace obsolete comment with one that better describes reality.Pedro Martelletto
2005-11-05Don't go through the mountpoint vnode list if we want to skip them all.Pedro Martelletto
2005-09-29Sync dirty data when going from read-write to read-only.Pedro Martelletto
2005-07-03Extended Attributes was a piece to get to ACLs, however ACLs have notDale Rahn
2005-05-22put VLOCKSWORK stuff under a single option, VFSDEBUGPedro Martelletto
2004-08-12Prevent a panic by validating the super block size as recorded in theOtto Moerbeek
2004-07-14trailing '\n' in printf, ok deraadt@Pedro Martelletto
2004-06-21First step towards more sane time handling in the kernel -- this changesThorsten Lockert
2004-06-04rootvp is already externed in systm.h, no need for a local externTed Unangst
2004-01-25vref device vnodes early, so we don't get mismatched vrele calls.Ted Unangst
2004-01-20some pieces of ufs2. help testing otto sturmTed Unangst
2004-01-07sysctls for dirhash variables. with a hint from miod. ok deraadtTed Unangst
2003-10-17Be sure i_ffs_gen is always positive.Mike Pechkin
2003-10-04vrele swap and/or root vnode should we fail during mountroot; found by mpech@...Michael Shalayeff
2003-08-25rename struct dinode to ufs1_dinode. clears the namespace and makesTed Unangst
2003-08-14constify vfsops; tedu@ okMichael Shalayeff
2003-07-10in statfs, cast disk size to int64_t to prevent overflow on large disks.Ted Unangst
2003-06-10o make mount(2) return EROFS, not EPERM if ffs is dirtyTodd C. Miller
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
2002-08-01Limit max file size based on PAGE_SIZE. Even though ffs can handleTodd C. Miller
2002-04-23In mount.h, rename field export -> export_info, to avoid collision with C++.Marc Espie
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-22Extended Attribute support from FreeBSD/TrustedBSD ok art@, deraadt@Dale Rahn
2002-01-25Move softdep sysctls from debug to vfs.ffs; art@ OKTodd C. Miller
2002-01-23Pool deals fairly well with physical memory shortage, but it doesn't dealArtur Grabowski