summaryrefslogtreecommitdiff
path: root/sys/msdosfs
AgeCommit message (Expand)Author
2019-01-21Introduce a dedicated entry point data structure for file locks. This new dataanton
2018-06-21Drop redundant "node == parent node" checks from VOP_RMDIR()Visa Hankala
2018-06-07Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible forVisa Hankala
2018-05-27Drop unnecessary `p' parameter from vget(9).Visa Hankala
2018-05-07Implement VFS read clustering for MSDOSFS, take 3.Martin Pieuchot
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-03-28Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(),Visa Hankala
2018-02-10Syncronize filesystems to disk when suspending. Each mountpoint's vnodesTheo de Raadt
2018-01-02Stop assuming <sys/file.h> will pull in fcntl.h when _KERNEL is defined.Philip Guenther
2017-12-30Don't pull in <sys/file.h> just to get fcntl.hPhilip Guenther
2017-12-30Delete unnecessary <sys/file.h> includesPhilip Guenther
2017-12-11In uvm Chuck decided backing store would not be allocated proactivelyTheo de Raadt
2017-08-14msdofs: Add new CLUST_END constantStefan Fritsch
2017-08-14msdofs: Add new CLUST_END constantStefan Fritsch
2017-08-13minor msdosfs tweaksStefan Fritsch
2017-06-13Revert 'Implement VFS read clustering for MSDOSFS' againStefan Fritsch
2017-05-29msdosfs & ffs: flush cache if updating mount from r/w to r/oStefan Fritsch
2017-05-29Implement VFS read clustering for MSDOSFSStefan Fritsch
2017-04-20Tweak lock inits to make the system runnable with witness(4)Visa Hankala
2016-10-10Rename BIOS parameter block field from bsPBP to bsBPB. This typoAlexander Bluhm
2016-10-09Do not check the SecPerTrack field of the BPB when mounting a MSDOSAlexander Bluhm
2016-09-28Kill empty ifdef; ok fcambus@Jeremie Courreges-Anglas
2016-09-07Remove usermount remnants. ok teduMartin Natano
2016-08-30Revert "Implement VFS read clustering for MSDOSFS"Stefan Fritsch
2016-08-13Eliminate pointless casts to qaddr_t of a value being assigned to a void*Philip Guenther
2016-06-19Remove the lockmgr() API. It is only used by filesystems, where it is aMartin Natano
2016-05-22When pulling an msdos formated umass stick during mount while theAlexander Bluhm
2016-05-21Remove the -x flag from mount_msdos and always assume the execute bitMartin Natano
2016-05-21by default, files were made executable. that does not make sense today.Theo de Raadt
2016-04-26Populate all necessary statfs members in .vfs_statfs. cd9660, udf,Martin Natano
2016-03-27When pulling and unmounting an umass USB stick, the file systemAlexander Bluhm
2016-03-19Remove the unused flags argument from VOP_UNLOCK().natano
2016-03-17Set mnt_data to NULL after freeing the file system specific mount point.Alexander Bluhm
2016-03-14Change a bunch of (<blah> *)0 to NULL.Kenneth R Westerback
2016-02-05Guard against integer overflow when checking whetherStefan Kempf
2016-01-27Convert min + uiomovei to ulmin + uiomove.Stefan Kempf
2016-01-13Implement VFS read clustering for MSDOSFS.Martin Pieuchot
2015-10-23Fix renaming in the root directory by correctly setting directoryKenneth R Westerback
2015-10-23Fix printf() types so kernel compiles with or w/o MSDOSFS_DEBUG.Kenneth R Westerback
2015-10-23Nuke a bunch of leading/embedded/trailing whitespace so the code can beKenneth R Westerback
2015-09-23remove lockmgr_printinfo stubs. from Martin NatanoTed Unangst
2015-04-17Tweaks utimensat/futimens handling to always update ctime, even when bothPhilip Guenther
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2015-02-13Include sys/stdint.h for SIZE_MAX instead of relying on the misplacedTodd C. Miller
2015-02-10First step towards making uiomove() take a size_t size argument:Miod Vallat
2015-01-09rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadtTed Unangst
2014-12-19Use <sys/endian.h> instead of <machine/endian.h>Philip Guenther
2014-12-16primary change: move uvm_vnode out of vnode, keeping only a pointer.Ted Unangst
2014-12-09More malloc() -> mallocarray() in the kernel.Doug Hogan