summaryrefslogtreecommitdiffstats
path: root/sys/isofs/udf (follow)
Commit message (Expand)AuthorAgeFilesLines
* Drop unnecessary `p' parameter from vget(9).visa2018-05-271-3/+2
* Remove proc from the parameters of vn_lock(). The parameter isvisa2018-05-022-7/+6
* Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysvisa2018-04-282-8/+7
* Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(),visa2018-03-281-2/+2
* Syncronize filesystems to disk when suspending. Each mountpoint's vnodesderaadt2018-02-102-4/+4
* In uvm Chuck decided backing store would not be allocated proactivelyderaadt2017-12-111-10/+11
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-2/+1
* Tweak lock inits to make the system runnable with witness(4)visa2017-04-201-2/+2
* Move a pointer deref to after a NULL test.jsg2017-02-081-3/+2
* use hashfree in fs code. from Mathieu -tedu2016-09-241-6/+3
* all pools have their ipl set via pool_setipl, so fold it into pool_init.dlg2016-09-151-7/+4
* Remove usermount remnants. ok tedunatano2016-09-071-12/+1
* pool_setipl for udfdlg2016-08-251-1/+4
* Eliminate pointless casts to qaddr_t of a value being assigned to a void*guenther2016-08-131-2/+2
* Remove the lockmgr() API. It is only used by filesystems, where it is anatano2016-06-193-10/+9
* When pulling an msdos formated umass stick during mount while thebluhm2016-05-221-1/+3
* Populate all necessary statfs members in .vfs_statfs. cd9660, udf,natano2016-04-261-1/+4
* When pulling and unmounting an umass USB stick, the file systembluhm2016-03-271-4/+2
* Remove the unused flags argument from VOP_UNLOCK().natano2016-03-192-9/+9
* Set mnt_data to NULL after freeing the file system specific mount point.bluhm2016-03-171-2/+2
* Convert to uiomove(). From Martin Natano.stefan2016-02-021-7/+6
* remove lockmgr_printinfo stubs. from Martin Natanotedu2015-09-231-2/+1
* Use PR_WAITOK to indicate that pools are not used in interrupt contextkettenis2015-08-311-7/+7
* Remove some includes include-what-you-use claims don'tjsg2015-03-142-4/+2
* First step towards making uiomove() take a size_t size argument:miod2015-02-101-3/+3
* primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu2014-12-163-3/+6
* use siphash for key lookups in all the filesystem hashes.dlg2014-11-184-7/+18
* include sys/unistd.h where needed instead of indirect reliance. ok jsgtedu2014-11-032-4/+3
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-122-14/+14
* Zero out dirent structures that will be copied out to avoid leaking garbageguenther2013-12-141-1/+2
* On return, uio_offset needs to be set to the offset of the first entryguenther2013-09-221-4/+11
* KNF - extraneous blank line snuck in during last commitmlarkin2013-09-171-2/+1
* Fix handling of getdents() against UDF filesystems: d_off must be theguenther2013-08-301-18/+41
* int overflow in sector calculation, broke UDF reads past 2GB. Diff promotesmlarkin2013-08-161-2/+3
* Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther2013-08-131-54/+10
* final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt2013-06-111-6/+6
* Actually use the subsecond timestamp dataguenther2013-06-021-3/+4
* repair and activate pathconf supportderaadt2013-06-022-6/+13
* CD filesystems don't do inode numbers >2^32, so use a smaller type internally,guenther2013-05-303-11/+17
* Add an f_mntfromspec member to struct statfs, which specifies the name ofjsing2013-04-151-1/+3
* Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,guenther2013-03-281-4/+1
* A small sprinking of #ifdef _KERNELderaadt2013-03-232-3/+14
* convert a DEV_BSHIFT use to DEV_BSIZE (this .h file is reused inderaadt2013-03-231-2/+2
* Cleanup VFS mount string handling:jsing2012-09-101-7/+11
* Cleanup our filesystem pathconf() code a little bit to make it easiermatthew2012-06-201-6/+10
* fix typos; while here, improve spacing in comments.sobrado2011-07-071-9/+9
* move the specfs code to a place people can see it; ok guenther thib krwderaadt2011-07-042-6/+4
* bread does nothing with its ucred argument. remove it. ok matthewtedu2011-07-042-6/+5
* Use 'CLR(<buf>->b_flags, B_READ | B_WRITE | B_DONE)' regardless ofkrw2011-04-161-3/+3
* In days of yore one could arbitrarily whack buffer flags. Those dayskrw2011-04-151-3/+5