summaryrefslogtreecommitdiff
path: root/sys/ufs/mfs
AgeCommit message (Expand)Author
2024-10-18Put the bowels of the various VOP_PRINT routines underMiod Vallat
2024-10-17Shortcut cursig when called during sleep setup.Claudio Jeker
2024-04-16Call bufq_destroy() in mfs_reclaim() before freeing the mfsnode.Claudio Jeker
2022-06-26Remove unused VOP_POLL().Visa Hankala
2022-02-14Introduce a signal context that is used to pass signal related informationClaudio Jeker
2021-12-12Use vnode parameter instead of vfinddev() in mfs_strategy()Visa Hankala
2021-10-15vnode: remove vop_generic_{,is,un}lock stub functionsSebastien Marie
2021-10-08curproc can't be NULL here. So simplify code accordingly.Claudio Jeker
2021-10-05For now the signal returned in cursig() is only set in p_siglist.Claudio Jeker
2021-10-02vfs: merge *_badop to vop_generic_badopSebastien Marie
2021-03-24cd9660, mfs: do not hide generic vop functions behind #defineSebastien Marie
2021-03-04Merge issignal() and CURSIG() in preparation for turning it mp-safe.Martin Pieuchot
2020-05-21Explicitly documents that `vop_kqfilter' isn't missing.Martin Pieuchot
2020-02-18Cleanup <sys/kthread.h> and <sys/proc.h> includes.Martin Pieuchot
2020-02-14Call CURSIG() only once and pass that signal to the check in dounmount()Claudio Jeker
2020-01-20struct vops is not modified during runtime so use const which moves eachClaudio Jeker
2019-12-26Convert struct vfsops initializer to C99 style.Alexander Bluhm
2019-11-25Convert infinite sleeps to tsleep_nsec(9).Martin Pieuchot
2019-07-25vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@cheloha
2018-04-28Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysVisa Hankala
2018-04-02Add size to free()David Hill
2017-12-11In uvm Chuck decided backing store would not be allocated proactivelyTheo de Raadt
2017-01-10Remove the unused olddp parameter from function dounmount().Alexander Bluhm
2016-11-07Split PID from TID, giving processes a PID unrelated to the TID of theirPhilip Guenther
2016-09-08move mfs_pri into tsleep so it's easy to see and it doesn't changeTed Unangst
2016-09-08delete useless comments, such as how KVA is mapped on HPTed Unangst
2016-04-26Populate all necessary statfs members in .vfs_statfs. cd9660, udf,Martin Natano
2016-03-19Remove the unused flags argument from VOP_UNLOCK().natano
2016-03-14Change a bunch of (<blah> *)0 to NULL.Kenneth R Westerback
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
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-04-15Add an f_mntfromspec member to struct statfs, which specifies the name ofJoel Sing
2013-01-15Switch mfs to bufq. This simplifies the code, gives us queue limits forJoel Sing
2012-12-29Keep mfs from potentially consuming the entire buffer cache if it getsBob Beck
2012-09-10Cleanup VFS mount string handling:Joel Sing
2011-07-04move the specfs code to a place people can see it; ok guenther thib krwTheo de Raadt
2011-04-05Every single vop_default is set to eopnotsupp, so retire itThordur 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
2009-08-13- remove super-obvious comments from $fs_vnodeop_entries[]Jasper Lievisse Adriaanse
2008-09-30Fix an occasional mfs-related panic on reboot in mfs_close. There's noTodd C. Miller
2008-05-08retire vn_default_error() and replace all instancesThordur I. Bjornsson
2008-05-03Introduce vop_generic_bmap(); use it where applicable.Thordur I. Bjornsson
2008-04-24remove useless defines for the vnode operations, and insteadThordur I. Bjornsson
2007-12-16fix remaining cases of potential concurrent mfs_buflist access;Otto Moerbeek
2007-12-06solve the biggest problem with concurrent buflist access; makes mfs onOtto Moerbeek
2007-12-04fix out of partition/memory bounds access when accessing blocks at the tailOtto Moerbeek
2007-11-28g/c mfs_mountroot() and mfs_initminiroot(). We don't support root onTodd C. Miller