summaryrefslogtreecommitdiff
path: root/sys/ufs
AgeCommit message (Expand)Author
2021-04-28Introduce a global vnode_mtx and use it to make vn_lock() safe to be calledClaudio Jeker
2021-03-24cd9660, mfs: do not hide generic vop functions behind #defineSebastien Marie
2021-03-24make some `struct vops' members explicitly NULL instead of implicitly NULLSebastien Marie
2021-03-11spellingJonathan Gray
2021-03-05ansiJonathan Gray
2021-03-04Merge issignal() and CURSIG() in preparation for turning it mp-safe.Martin Pieuchot
2020-12-25Refactor klist insertion and removalVisa Hankala
2020-11-07Convert ffs_sysctl to sysctl_bounded_argsgnezdo
2020-10-09Do not dereference `vp' after vput(9)ing it.Martin Pieuchot
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-06-11Rename poll-compatibility flag to better reflect what it is.Martin Pieuchot
2020-06-08Use a new EV_OLDAPI flag to match the behavior of poll(2) and select(2).Martin Pieuchot
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-05-21Explicitly documents that `vop_kqfilter' isn't missing.Martin Pieuchot
2020-04-07Abstract the head of knote lists. This allows extending the lists,Visa Hankala
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-20Replace field f_isfd with field f_flags in struct filterops to allowVisa Hankala
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-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-31Use C99 designated initializers with struct filterops. In addition,Visa Hankala
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-10-06Fix vn_open to require an op of 0, and 0 or KERNELPATH only as flags.Bob Beck
2019-08-05Allow concurrent reads of the f_offset field of struct file byanton
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-07-12Revert anton@ changes about read/write unlockingsolene
2019-07-10Make read/write of the f_offset field belonging to struct file MP-safe;anton
2019-07-01Add more verbose messages about unsupported ext2fs features.Kevin Lo
2019-06-18Ensure the length passed to ffs_truncate() is within bounds before callinganton
2019-05-09Nope, the right byte layout is happening, but we still need to figure outTheo de Raadt
2019-05-09For filenames which are a multiple of 4 bytes long, the zero pad isTheo de Raadt
2019-05-043 bytes of kernel stack address space were leaked into on-disk directories.Theo de Raadt
2019-05-04Add DIR_ROUNDUP define, from Kirk McKusickTheo de Raadt
2019-03-15Remove FBSDID.Kevin Lo
2019-03-06increase dirhash mem a bit since very tiny machines are less common.Ted Unangst