summaryrefslogtreecommitdiff
path: root/sys/msdosfs/msdosfs_vnops.c
AgeCommit message (Expand)Author
2020-02-20Replace field f_isfd with field f_flags in struct filterops to allowVisa Hankala
2020-01-20struct vops is not modified during runtime so use const which moves eachClaudio Jeker
2019-12-31Use C99 designated initializers with struct filterops. In addition,Visa Hankala
2019-08-05Allow concurrent reads of the f_offset field of struct file byanton
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
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-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-01-02Stop assuming <sys/file.h> will pull in fcntl.h when _KERNEL is defined.Philip Guenther
2017-08-14msdofs: Add new CLUST_END constantStefan Fritsch
2017-06-13Revert 'Implement VFS read clustering for MSDOSFS' againStefan Fritsch
2017-05-29Implement VFS read clustering for MSDOSFSStefan Fritsch
2016-08-30Revert "Implement VFS read clustering for MSDOSFS"Stefan Fritsch
2016-06-19Remove the lockmgr() API. It is only used by filesystems, where it is aMartin Natano
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-03-19Remove the unused flags argument from VOP_UNLOCK().natano
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-10First step towards making uiomove() take a size_t size argument:Miod Vallat
2014-12-16primary change: move uvm_vnode out of vnode, keeping only a pointer.Ted Unangst
2014-11-03include sys/unistd.h where needed instead of indirect reliance. ok jsgTed Unangst
2014-08-10fix kqueue read/write filters for msdosfs and fusefsJonathan Gray
2014-07-08decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hTheo de Raadt
2014-05-09disable IO_NOCACHE B_NOCACHE conversion until it works.Ted Unangst
2014-04-08add IO_NOCACHE flag to vop_write arguments, which in turn sets B_NOCACHEBob Beck
2013-12-14Zero out dirent structures that will be copied out to avoid leaking garbagePhilip Guenther
2013-10-01Format string fixes: %hu/%hd for uint16_t, %u/%d/%x for uint32_tStefan Fritsch
2013-09-14Correct the handling of I/O of >=2^32 bytes and the ktracing there ofPhilip Guenther
2013-08-13Switch time_t, ino_t, clock_t, and struct kevent's ident and dataPhilip Guenther
2013-06-11final removal of daddr64_t. daddr_t has been 64 bit for a long enoughTheo de Raadt
2013-05-23revoke's default imp works.Marc Espie
2013-03-28Add support for _PC_TIMESTAMP_RESOLUTION for ffs/mfs, cd9600, ext2,Philip Guenther
2013-03-28Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,Philip Guenther
2013-01-15Make the FAT setattr handling more consistent about unsupportedMartynas Venckus
2012-07-11If the current offset is strictly less than the process filesizePhilip Guenthe
2012-06-20Cleanup our filesystem pathconf() code a little bit to make it easierMatthew Dempsky
2012-02-16add kevent support for msdosfs to make applicationsRobert Nagy