summaryrefslogtreecommitdiffstats
path: root/sys/msdosfs (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Change a bunch of (<blah> *)0 to NULL.krw2016-03-141-2/+2
* Guard against integer overflow when checking whetherstefan2016-02-051-2/+3
* Convert min + uiomovei to ulmin + uiomove.stefan2016-01-271-12/+10
* Implement VFS read clustering for MSDOSFS.mpi2016-01-132-51/+71
* Fix renaming in the root directory by correctly setting directorykrw2015-10-231-2/+3
* Fix printf() types so kernel compiles with or w/o MSDOSFS_DEBUG.krw2015-10-235-32/+37
* Nuke a bunch of leading/embedded/trailing whitespace so the code can bekrw2015-10-2312-139/+139
* remove lockmgr_printinfo stubs. from Martin Natanotedu2015-09-231-2/+1
* Tweaks utimensat/futimens handling to always update ctime, even when bothguenther2015-04-171-4/+6
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Include sys/stdint.h for SIZE_MAX instead of relying on the misplacedmillert2015-02-131-1/+2
* First step towards making uiomove() take a size_t size argument:miod2015-02-101-5/+5
* rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadttedu2015-01-091-2/+2
* Use <sys/endian.h> instead of <machine/endian.h>guenther2014-12-191-2/+2
* primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu2014-12-166-6/+12
* More malloc() -> mallocarray() in the kernel.doug2014-12-091-2/+2
* use siphash for key lookups in all the filesystem hashes.dlg2014-11-181-3/+21
* include sys/unistd.h where needed instead of indirect reliance. ok jsgtedu2014-11-031-1/+2
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* fix kqueue read/write filters for msdosfs and fusefsjsg2014-08-101-7/+34
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-122-7/+7
* decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hderaadt2014-07-082-6/+2
* Fix possible crash on invalid filesystems.tobias2014-06-231-2/+3
* Fix off by one in pm_inusemap.tobias2014-06-182-4/+4
* Fix 'mount -ur' for msdosfssf2014-05-271-1/+7
* stop using B_AGE, it was effectively retired some time ago.tedu2014-05-091-2/+1
* disable IO_NOCACHE B_NOCACHE conversion until it works.tedu2014-05-091-1/+3
* msdosfs timestamps can only represent 1/1/1980 throughkrw2014-04-211-3/+12
* add IO_NOCACHE flag to vop_write arguments, which in turn sets B_NOCACHEbeck2014-04-081-1/+3
* fix error checking oddity in msdosfs code, as noted by kettenis@halex2013-12-241-2/+2
* Zero out dirent structures that will be copied out to avoid leaking garbageguenther2013-12-141-2/+2
* Format string fixes: %hu/%hd for uint16_t, %u/%d/%x for uint32_tsf2013-10-013-6/+6
* Correct the handling of I/O of >=2^32 bytes and the ktracing there ofguenther2013-09-141-2/+2
* Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther2013-08-131-31/+7
* final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt2013-06-116-22/+22
* revoke's default imp works.espie2013-05-231-2/+3
* Add an f_mntfromspec member to struct statfs, which specifies the name ofjsing2013-04-151-4/+9
* Add support for _PC_TIMESTAMP_RESOLUTION for ffs/mfs, cd9600, ext2,guenther2013-03-281-1/+4
* Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,guenther2013-03-281-4/+1
* Make the FAT setattr handling more consistent about unsupportedmartynas2013-01-151-42/+119
* Cleanup VFS mount string handling:jsing2012-09-101-13/+10
* Remove the need to occasionally treat dos file names as strings bykrw2012-09-064-15/+17
* If the current offset is strictly less than the process filesizeguenther2012-07-111-12/+10
* Cleanup our filesystem pathconf() code a little bit to make it easiermatthew2012-06-201-8/+11
* As it was made evident by Olaf 'Rhialto' Seibert in the NetBSD PR 34583,mikeb2012-04-052-3/+11
* add kevent support for msdosfs to make applicationsrobert2012-02-161-2/+103
* move the specfs code to a place people can see it; ok guenther thib krwderaadt2011-07-042-4/+4
* bread does nothing with its ucred argument. remove it. ok matthewtedu2011-07-045-35/+30
* Every single vop_default is set to eopnotsupp, so retire itthib2011-04-051-2/+1
* Bring back the "End the VOP experiment." diff, naddy's issues wherethib2010-12-212-45/+40