summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_vfsops.c
AgeCommit message (Expand)Author
2009-07-09Remove the VREF() macro and replaces all instances with a call to verf(),Thordur I. Bjornsson
2008-11-06use PAGE_SIZE in FS_KERNMAXFILESIZE() use, note this is not the same as getpa...Theo de Raadt
2008-11-02introduce a macro for max file size, instead of hardcoding it; okOtto Moerbeek
2008-09-12Remove bzero/memset calls after pool_gets by passing the PR_ZEROBret Lambert
2008-08-08Admit b_blkno means block number; a block is DEV_BSIZE (a.k.a.Kenneth R Westerback
2008-08-08spacing + wrap a line at 79chars.Thordur I. Bjornsson
2008-07-09Remove an XXX comment about using the same pool for mfs and ffs, sinceThordur I. Bjornsson
2008-03-16Widen some struct statfs fields to support large filesystem stataOtto Moerbeek
2008-01-05Make the ffs code 64-bit disk block number clean. Based on a diffOtto Moerbeek
2007-09-10Lock the vnode in ffs_unmount() before passing it too vinvalbuf()Thordur I. Bjornsson
2007-09-07Use M_ZERO in a few more places to shave bytes from the kernel.Artur Grabowski
2007-08-04When we're writing out the summary information and fail on some blockArtur Grabowski
2007-06-06Don't promote MNT_WAIT to MNT_NOWAIT when syncing the device vnode of aPedro Martelletto
2007-06-01convert ufs2_daddr_t -> daddr64_t for greater clarity; ok pedro otto thibTheo de Raadt
2007-05-29when mount -f'ing a dirty filesystem, do not clear the unclean flag,Otto Moerbeek
2007-05-29FFS2-aware code for ffs_sbupdate() and ffs_reload().Pedro Martelletto
2007-04-24Fix mounting of ffs2 via "mount -a". ffs2 is not separate from ffsTodd C. Miller
2007-04-11in ffs_reload() use ffs_validate() to check if theThordur I. Bjornsson
2007-03-31deregister, no change in object codePedro Martelletto
2007-03-21Remove the v_interlock simplelock from the vnode structure.Thordur I. Bjornsson
2007-03-19Also shift superblock fields in ffs_reload(), okay beck@ deraadt@Pedro Martelletto
2007-03-19Add FFS2 fields to the superblock, change file system tools to keepPedro Martelletto
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