summaryrefslogtreecommitdiff
path: root/sys/ufs
AgeCommit message (Expand)Author
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
2019-01-21Introduce a dedicated entry point data structure for file locks. This new dataanton
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-09-06fix whitespaceJonathan Gray
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-06-21Drop redundant "node == parent node" checks from VOP_RMDIR()Visa Hankala
2018-06-13Make the VFS layer responsible for preventing the deletionVisa Hankala
2018-06-07Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible forVisa Hankala
2018-05-29Lock the device vnode when calling vinvalbuf() in ext2fs_reload(),Visa Hankala
2018-05-28Call vput(dvp) in vnode operation functions instead of calling it inVisa Hankala
2018-05-28When mounting an ext2 filesystem, lock the device vnode for the durationVisa Hankala
2018-05-27Drop unnecessary `p' parameter from vget(9).Visa Hankala
2018-05-24Delay the vput() of the directory vnode until the vnode has beenVisa 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-02Add size to free()David Hill
2018-04-01Store the size of dinode contents union.David Hill
2018-03-30Add sizes to some free() calls.David Hill
2018-03-28Mark ext2fs inode recursive lock as RWL_IS_VNODE like for ffs to let itMartin Pieuchot
2018-03-15"force dirty" printf's are no longer required when pushing filesystemsTheo de Raadt
2018-02-19Remove almost unused `flags' argument of suser().Martin Pieuchot
2018-02-10Syncronize filesystems to disk when suspending. Each mountpoint's vnodesTheo de Raadt
2018-01-13In ext2fs_write(), clear the buffer on uiomove() failure unless itTodd C. Miller
2018-01-13Add comment describing why we need to clear the buffer if uiomove()Todd C. Miller