aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/msdosfs
Commit message (Expand)AuthorAgeFilesLines
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-2/+1
* Remove unused thread argument from vtruncbuf().Edward Tomasz Napierala2012-04-234-12/+10
* This change creates a new list of active vnodes associated withKirk McKusick2012-04-201-1/+1
* Replace the MNT_VNODE_FOREACH interface with MNT_VNODE_FOREACH_ALL.Kirk McKusick2012-04-171-9/+2
* Add I/O accounting to msdos filesystem.Kirk McKusick2012-04-081-0/+4
* Clean up style(9) nitsKevin Lo2012-03-041-4/+4
* Use DOINGASYNC() to test for async allowance, to honor VFS syncing requests.Konstantin Belousov2012-02-223-7/+7
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-2/+2
* Make sure all intermediate variables holding mount flags (mnt_flag)Kirk McKusick2012-01-171-1/+1
* Discarding local array based on return valuesKevin Lo2011-12-221-14/+14
* Put all the messages from msdosfs under the MSDOSFS_DEBUG ifdef.Konstantin Belousov2011-11-225-1/+24
* Add unicode support to msdosfs and smbfs; original pathes from imura,Kevin Lo2011-11-181-64/+48
* This update changes the mnt_flag field in the mount structure fromKirk McKusick2011-07-241-1/+1
* Add a lock flags argument to the VFS_FHTOVP() file systemRick Macklem2011-05-221-1/+1
* Report EBUSY instead of EROFS for attempt of deleting or renaming theKonstantin Belousov2011-03-251-2/+2
* Fix typos - remove duplicate "the".Rebecca Cran2011-02-211-1/+1
* Remove prtactive variable and related printf()s in the vop_inactiveKonstantin Belousov2010-11-191-5/+0
* Fix a possible race where the directory dirent is moved to the locationKevin Lo2010-10-181-3/+8
* Ignore the return value of DE_INTERNALIZE().Rui Paulo2010-10-131-1/+1
* The r184588 changed the layout of struct export_args, causing an ABIKonstantin Belousov2010-10-102-2/+4
* Add a comment describing the reason for calling cache_purge(fvp).Konstantin Belousov2010-10-081-0/+7
* The msdosfs lookup is case insensitive. Several aliases may be inserted forKonstantin Belousov2010-10-071-0/+1
* Style fixes and removal of unneeded variable.Edward Tomasz Napierala2010-05-061-2/+1
* Move checking against RLIMIT_FSIZE into one place, vn_rlimit_fsize().Edward Tomasz Napierala2010-05-051-13/+2
* mountmsdosfs: reject too high value of bytes per clusterAndriy Gapon2010-04-021-0/+1
* When returning error from msdosfs_lookup(), make sure that *vpp is NULL.Konstantin Belousov2010-03-031-3/+6
* Do not leak vnode lock when msdosfs mount is updated and specifiedKonstantin Belousov2010-03-021-3/+2
* Only destroy pm_fatlock on error if it was initialized.Konstantin Belousov2010-03-021-1/+1
* Mark msdosfs as mpsafe.Konstantin Belousov2010-02-281-0/+1
* Fix the race between dotdot lookup and forced unmount, by usingKonstantin Belousov2010-02-281-23/+81
* Use pm_fatlock to protect per-filesystem rb tree used to allocate filenoKonstantin Belousov2010-02-281-10/+6
* Add assertions for FAT bitmap state.Konstantin Belousov2010-02-281-0/+8
* Use pm_fatlock to protect fat bitmap.Konstantin Belousov2010-02-282-12/+38
* Add per-mountpoint lockmgr lock for msdosfs. It is intended to be usedKonstantin Belousov2010-02-282-1/+19
* In msdosfs deget(), properly handle the case when the vnode is found in hash.Konstantin Belousov2010-02-281-3/+2
* In msdosfs_inactive(), reclaim the vnodes both for SLOT_DELETED andKonstantin Belousov2010-02-281-2/+2
* Remove seemingly unneeded unlock/relock of the dvp in msdosfs_rmdir,Konstantin Belousov2010-02-281-2/+0
* Assert that the msdosfs vnode is (e)locked in several places.Konstantin Belousov2010-02-282-8/+8
* Remove unused global statistic about fat cache usage.Konstantin Belousov2010-02-281-21/+0
* Fix common misspelling of hierarchyUlrich Spörlein2010-02-201-1/+1
* Invalid filesystem might cause the bp to be never read.Konstantin Belousov2010-02-141-1/+2
* Fix function name in the comment in the second location too.Konstantin Belousov2010-02-131-1/+1
* - Add idempotency guards so the structures can be used in other utilities.Konstantin Belousov2010-02-136-23/+24
* Use M_ZERO instead of calling bzero().Konstantin Belousov2010-02-131-3/+2
* Remove unused macros.Konstantin Belousov2010-02-131-3/+0
* Revert previous commit and add myself to the list of people who shouldPoul-Henning Kamp2009-09-081-1/+0
* Add necessary include.Poul-Henning Kamp2009-09-081-0/+1
* Fix r193923 by noting that type of a_fp is struct file *, not int.Konstantin Belousov2009-06-101-1/+1
* s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_argsKonstantin Belousov2009-06-101-1/+1
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-10/+15