summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
AgeCommit message (Expand)Author
2023-07-05Make softdep mounts a no-opBob Beck
2023-04-14Use designated initializer for ffs_vtbl.Moritz Buhl
2023-04-11fix double words in commentsJonathan Gray
2022-08-12Put more struct vnode fields under splbio().Visa Hankala
2022-06-26Remove unused VOP_POLL().Visa Hankala
2022-01-11spellingJonathan Gray
2021-12-12Add vnode parameter to VOP_STRATEGY()Visa Hankala
2021-10-20revert vnode: remove VLOCKSWORK and check locking when vop_islocked != nullopSebastien Marie
2021-10-19vnode: remove VLOCKSWORK and check locking when vop_islocked != nullopSebastien Marie
2021-10-04Use the fact the vnodes are locked when operations are inflight.Claudio Jeker
2021-10-02vfs: merge *_badop to vop_generic_badopSebastien Marie
2021-05-01Update the remaining SYSCTL_INT_READONLY casesgnezdo
2021-04-28Introduce a global vnode_mtx and use it to make vn_lock() safe to be calledClaudio Jeker
2021-03-11spellingJonathan Gray
2020-11-07Convert ffs_sysctl to sysctl_bounded_argsgnezdo
2020-08-10remove #if 0'd ufs2 magic error which predates ffs2 supportJonathan Gray
2020-08-10use EROFS when attempting to mount a 4.2BSD fs without MNT_RDONLYJonathan Gray
2020-06-24kernel: use gettime(9)/getuptime(9) in lieu of time_second(9)/time_uptime(9)cheloha
2020-06-20With filesystem having many cylinder groups and many inodes per cg theOtto Moerbeek
2020-05-29When the preferred cylinder group if full scan forward (wrapping if needed)Otto Moerbeek
2020-05-28Make generation numbers unsigned and fill them using a random numberOtto Moerbeek
2020-03-09Avoid a tight CPU loop when no unlocked worklist items can be processed.Todd C. Miller
2020-02-27Remove unused "struct proc *" argument from the following functions:Martin Pieuchot
2020-02-21Use proper function to get a timestamp, as time_second isn't safe;Otto Moerbeek
2020-02-21Handle the mount(... MNT_RELOAD) case for ffs2 as well. ok kettenis@Otto Moerbeek
2020-02-04Replace TAILQ concatenation loop with TAILQ_CONCATbket
2020-01-24Improve small random read ffs performance:Kurt Miller
2020-01-20struct vops is not modified during runtime so use const which moves eachClaudio Jeker
2020-01-14Convert custom semaphores to tsleep_nsec(9).Martin Pieuchot
2020-01-04Call process_worklist_item with LK_NOWAIT to skip locked vnodes fromBob Beck
2019-12-26Convert struct vfsops initializer to C99 style.Alexander Bluhm
2019-11-27Re-enable IO_NOCACHE, and use is in vnd.Bob Beck
2019-11-25Convert infinite sleeps to tsleep_nsec(9).Martin Pieuchot
2019-07-25vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@cheloha
2019-07-19vwaitforio(9): tsleep(9) -> tsleep_nsec(9); ok visa@cheloha
2019-07-19getblk(9): tsleep(9) -> tsleep_nsec(9); ok visa@cheloha
2019-06-18Ensure the length passed to ffs_truncate() is within bounds before callinganton
2018-12-23Rectify some issues with the noperm mount flag; the root vnode was notMartin Natano
2018-09-26Move the allocating and freeing of mount points intoVisa Hankala
2018-07-21Include the vnode type in the panic message in ffs_write(), just like ffs_read()anton
2018-07-11Prevent updating async option on softdep mountkn
2018-07-02Use more list macros for v_dirtyblkhd.Alexander Bluhm
2018-05-27Drop unnecessary `p' parameter from vget(9).Visa Hankala
2018-05-02Remove proc from the parameters of vn_lock(). The parameter isVisa Hankala
2018-04-28Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysVisa Hankala
2018-04-01Store the size of dinode contents union.David Hill
2018-03-30Add sizes to some free() calls.David Hill
2018-03-15"force dirty" printf's are no longer required when pushing filesystemsTheo de Raadt
2018-02-10Syncronize filesystems to disk when suspending. Each mountpoint's vnodesTheo de Raadt
2018-01-13Add comment describing why we need to clear the buffer if uiomove()Todd C. Miller