summaryrefslogtreecommitdiffstats
path: root/sys/isofs/udf
AgeCommit message (Expand)AuthorFilesLines
2020-06-23Revert previous. hashfree() just calls free() which handles NULL withkrw1-7/+6
2020-06-23hashfree() doesn't like NULL, so check for NULL if NULL is akrw1-6/+7
2020-01-20struct vops is not modified during runtime so use const which moves eachclaudio2-4/+4
2019-12-26Convert struct vfsops initializer to C99 style.bluhm1-14/+14
2019-07-25vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@cheloha1-3/+3
2018-05-27Drop unnecessary `p' parameter from vget(9).visa1-3/+2
2018-05-02Remove proc from the parameters of vn_lock(). The parameter isvisa2-7/+6
2018-04-28Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysvisa2-8/+7
2018-03-28Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(),visa1-2/+2
2018-02-10Syncronize filesystems to disk when suspending. Each mountpoint's vnodesderaadt2-4/+4
2017-12-11In uvm Chuck decided backing store would not be allocated proactivelyderaadt1-10/+11
2017-09-08If you use sys/param.h, you don't need sys/types.hderaadt1-2/+1
2017-04-20Tweak lock inits to make the system runnable with witness(4)visa1-2/+2
2017-02-08Move a pointer deref to after a NULL test.jsg1-3/+2
2016-09-24use hashfree in fs code. from Mathieu -tedu1-6/+3
2016-09-15all pools have their ipl set via pool_setipl, so fold it into pool_init.dlg1-7/+4
2016-09-07Remove usermount remnants. ok tedunatano1-12/+1
2016-08-25pool_setipl for udfdlg1-1/+4
2016-08-13Eliminate pointless casts to qaddr_t of a value being assigned to a void*guenther1-2/+2
2016-06-19Remove the lockmgr() API. It is only used by filesystems, where it is anatano3-10/+9
2016-05-22When pulling an msdos formated umass stick during mount while thebluhm1-1/+3
2016-04-26Populate all necessary statfs members in .vfs_statfs. cd9660, udf,natano1-1/+4
2016-03-27When pulling and unmounting an umass USB stick, the file systembluhm1-4/+2
2016-03-19Remove the unused flags argument from VOP_UNLOCK().natano2-9/+9
2016-03-17Set mnt_data to NULL after freeing the file system specific mount point.bluhm1-2/+2
2016-02-02Convert to uiomove(). From Martin Natano.stefan1-7/+6
2015-09-23remove lockmgr_printinfo stubs. from Martin Natanotedu1-2/+1
2015-08-31Use PR_WAITOK to indicate that pools are not used in interrupt contextkettenis1-7/+7
2015-03-14Remove some includes include-what-you-use claims don'tjsg2-4/+2
2015-02-10First step towards making uiomove() take a size_t size argument:miod1-3/+3
2014-12-16primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu3-3/+6
2014-11-18use siphash for key lookups in all the filesystem hashes.dlg4-7/+18
2014-11-03include sys/unistd.h where needed instead of indirect reliance. ok jsgtedu2-4/+3
2014-07-12add a size argument to free. will be used soon, but for now default to 0.tedu2-14/+14
2013-12-14Zero out dirent structures that will be copied out to avoid leaking garbageguenther1-1/+2
2013-09-22On return, uio_offset needs to be set to the offset of the first entryguenther1-4/+11
2013-09-17KNF - extraneous blank line snuck in during last commitmlarkin1-2/+1
2013-08-30Fix handling of getdents() against UDF filesystems: d_off must be theguenther1-18/+41
2013-08-16int overflow in sector calculation, broke UDF reads past 2GB. Diff promotesmlarkin1-2/+3
2013-08-13Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther1-54/+10
2013-06-11final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt1-6/+6
2013-06-02Actually use the subsecond timestamp dataguenther1-3/+4
2013-06-02repair and activate pathconf supportderaadt2-6/+13
2013-05-30CD filesystems don't do inode numbers >2^32, so use a smaller type internally,guenther3-11/+17
2013-04-15Add an f_mntfromspec member to struct statfs, which specifies the name ofjsing1-1/+3
2013-03-28Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,guenther1-4/+1
2013-03-23A small sprinking of #ifdef _KERNELderaadt2-3/+14
2013-03-23convert a DEV_BSHIFT use to DEV_BSIZE (this .h file is reused inderaadt1-2/+2
2012-09-10Cleanup VFS mount string handling:jsing1-7/+11
2012-06-20Cleanup our filesystem pathconf() code a little bit to make it easiermatthew1-6/+10