summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_vfsops.c
AgeCommit message (Expand)Author
2016-06-19add pool_setipl on all pools.David Gwynne
2016-05-23VOP_REALLOCBLKS() and related code is unused since the removal ofMartin Natano
2016-05-22When pulling an msdos formated umass stick during mount while theAlexander Bluhm
2016-05-10FFS2 does lazy inode initialization, so try harder to avoid usingKenneth R Westerback
2016-03-27When pulling and unmounting an umass USB stick, the file systemAlexander Bluhm
2016-03-19Remove the unused flags argument from VOP_UNLOCK().natano
2016-03-17Set mnt_data to NULL after freeing the file system specific mount point.Alexander Bluhm
2016-02-27Move mnt_maxsymlink from struct mount to struct ufsmount.natano
2016-02-26Convert mnt_maxsymlinklen to unsigned.natano
2016-01-12Remove the "doclusterread" and "doclusterwrite" buttons.Martin Pieuchot
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2014-12-29Explicitely include <uvm/uvm_extern.h> in order to build on variable page sizeMiod Vallat
2014-12-23change pool_init allocator to NULL and pass PR_WAITOK in flags as a signTed Unangst
2014-12-12free correct size. it's variable!Ted Unangst
2014-12-12sizeof(*ptr) for some free()Ted Unangst
2014-11-18move arc4random prototype to systm.h. more appropriate for most codeTed Unangst
2014-07-14revert free checks in here. this seems to be a bit too agressive at theBob Beck
2014-07-13pass correct sizes to free()Ted Unangst
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2013-12-12replace old bcopy/bzero with standard functions. ok kettenisTed Unangst
2013-12-01Change 'mountlist' from CIRCLEQ to TAILQ. Be paranoid andKenneth R Westerback
2013-06-11final removal of daddr64_t. daddr_t has been 64 bit for a long enoughTheo de Raadt
2013-05-30UFS does't do inode numbers >2^32, so use a smaller type internally,Philip Guenther
2013-04-15Add an f_mntfromspec member to struct statfs, which specifies the name ofJoel Sing
2012-09-10Cleanup VFS mount string handling:Joel Sing
2012-06-10Do NOT make all check condition results report EIO. Only use EIOKenneth R Westerback
2011-07-04move the specfs code to a place people can see it; ok guenther thib krwTheo de Raadt
2011-07-04bread does nothing with its ucred argument. remove it. ok matthewTed Unangst
2011-07-03correctify NULL 0 confusionTed Unangst
2011-07-02Getting a disklabel to extract d_secsize to initialize a variable that is thenKenneth R Westerback
2011-07-02rename VFSDEBUG to VFLCKDEBUG;Thordur I. Bjornsson
2010-12-21Bring back the "End the VOP experiment." diff, naddy's issues whereThordur I. Bjornsson
2010-09-10Backout the VOP diff until the issues naddy was seeing on alpha (gcc3)Thordur I. Bjornsson
2010-09-06End the VOP experiment. Instead of the ridicolusly complicated operationThordur I. Bjornsson
2010-07-23Improve English.Ray Lai
2010-06-29remove lies. the arguments are actually used.Thordur I. Bjornsson
2010-06-09Teach FFS mounts about disklabel UIDs. This allows file systems to beJoel Sing
2010-05-18dont let sys/ioctl.h imply that you get the ioctls in dkio.h. thisDavid Gwynne
2009-12-19Re-introduce the remaining bits of thib@'s Aug 2006 VOP_CLOSE()Kenneth R Westerback
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