Age | Commit message (Expand) | Author |
2020-02-04 | Replace TAILQ concatenation loop with TAILQ_CONCAT | bket |
2020-01-24 | Improve small random read ffs performance: | Kurt Miller |
2020-01-20 | struct vops is not modified during runtime so use const which moves each | Claudio Jeker |
2020-01-14 | Convert custom semaphores to tsleep_nsec(9). | Martin Pieuchot |
2020-01-04 | Call process_worklist_item with LK_NOWAIT to skip locked vnodes from | Bob Beck |
2019-12-31 | Use C99 designated initializers with struct filterops. In addition, | Visa Hankala |
2019-12-26 | Convert struct vfsops initializer to C99 style. | Alexander Bluhm |
2019-11-27 | Re-enable IO_NOCACHE, and use is in vnd. | Bob Beck |
2019-11-25 | Convert infinite sleeps to tsleep_nsec(9). | Martin Pieuchot |
2019-10-06 | Fix vn_open to require an op of 0, and 0 or KERNELPATH only as flags. | Bob Beck |
2019-08-05 | Allow concurrent reads of the f_offset field of struct file by | anton |
2019-07-25 | vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@ | cheloha |
2019-07-19 | vwaitforio(9): tsleep(9) -> tsleep_nsec(9); ok visa@ | cheloha |
2019-07-19 | getblk(9): tsleep(9) -> tsleep_nsec(9); ok visa@ | cheloha |
2019-07-12 | Revert anton@ changes about read/write unlocking | solene |
2019-07-10 | Make read/write of the f_offset field belonging to struct file MP-safe; | anton |
2019-07-01 | Add more verbose messages about unsupported ext2fs features. | Kevin Lo |
2019-06-18 | Ensure the length passed to ffs_truncate() is within bounds before calling | anton |
2019-05-09 | Nope, the right byte layout is happening, but we still need to figure out | Theo de Raadt |
2019-05-09 | For filenames which are a multiple of 4 bytes long, the zero pad is | Theo de Raadt |
2019-05-04 | 3 bytes of kernel stack address space were leaked into on-disk directories. | Theo de Raadt |
2019-05-04 | Add DIR_ROUNDUP define, from Kirk McKusick | Theo de Raadt |
2019-03-15 | Remove FBSDID. | Kevin Lo |
2019-03-06 | increase dirhash mem a bit since very tiny machines are less common. | Ted Unangst |
2019-01-21 | Introduce a dedicated entry point data structure for file locks. This new data | anton |
2018-12-23 | Rectify some issues with the noperm mount flag; the root vnode was not | Martin Natano |
2018-09-26 | Move the allocating and freeing of mount points into | Visa Hankala |
2018-09-06 | fix whitespace | Jonathan Gray |
2018-07-21 | Include the vnode type in the panic message in ffs_write(), just like ffs_read() | anton |
2018-07-11 | Prevent updating async option on softdep mount | kn |
2018-07-02 | Use more list macros for v_dirtyblkhd. | Alexander Bluhm |
2018-06-21 | Drop redundant "node == parent node" checks from VOP_RMDIR() | Visa Hankala |
2018-06-13 | Make the VFS layer responsible for preventing the deletion | Visa Hankala |
2018-06-07 | Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for | Visa Hankala |
2018-05-29 | Lock the device vnode when calling vinvalbuf() in ext2fs_reload(), | Visa Hankala |
2018-05-28 | Call vput(dvp) in vnode operation functions instead of calling it in | Visa Hankala |
2018-05-28 | When mounting an ext2 filesystem, lock the device vnode for the duration | Visa Hankala |
2018-05-27 | Drop unnecessary `p' parameter from vget(9). | Visa Hankala |
2018-05-24 | Delay the vput() of the directory vnode until the vnode has been | Visa Hankala |
2018-05-02 | Remove proc from the parameters of vn_lock(). The parameter is | Visa Hankala |
2018-04-28 | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always | Visa Hankala |
2018-04-02 | Add size to free() | David Hill |
2018-04-01 | Store the size of dinode contents union. | David Hill |
2018-03-30 | Add sizes to some free() calls. | David Hill |
2018-03-28 | Mark ext2fs inode recursive lock as RWL_IS_VNODE like for ffs to let it | Martin Pieuchot |
2018-03-15 | "force dirty" printf's are no longer required when pushing filesystems | Theo de Raadt |
2018-02-19 | Remove almost unused `flags' argument of suser(). | Martin Pieuchot |
2018-02-10 | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes | Theo de Raadt |
2018-01-13 | In ext2fs_write(), clear the buffer on uiomove() failure unless it | Todd C. Miller |
2018-01-13 | Add comment describing why we need to clear the buffer if uiomove() | Todd C. Miller |