| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add I/O accounting to msdos filesystem. | mckusick | 2012-04-08 | 1 | -0/+4 |
* | Clean up style(9) nits | kevlo | 2012-03-04 | 1 | -4/+4 |
* | Use DOINGASYNC() to test for async allowance, to honor VFS syncing requests. | kib | 2012-02-22 | 3 | -7/+7 |
* | Fix found places where uio_resid is truncated to int. | kib | 2012-02-21 | 1 | -2/+2 |
* | Make sure all intermediate variables holding mount flags (mnt_flag) | mckusick | 2012-01-17 | 1 | -1/+1 |
* | Discarding local array based on return values | kevlo | 2011-12-22 | 1 | -14/+14 |
* | Put all the messages from msdosfs under the MSDOSFS_DEBUG ifdef. | kib | 2011-11-22 | 5 | -1/+24 |
* | Add unicode support to msdosfs and smbfs; original pathes from imura, | kevlo | 2011-11-18 | 1 | -64/+48 |
* | This update changes the mnt_flag field in the mount structure from | mckusick | 2011-07-24 | 1 | -1/+1 |
* | Add a lock flags argument to the VFS_FHTOVP() file system | rmacklem | 2011-05-22 | 1 | -1/+1 |
* | Report EBUSY instead of EROFS for attempt of deleting or renaming the | kib | 2011-03-25 | 1 | -2/+2 |
* | Fix typos - remove duplicate "the". | brucec | 2011-02-21 | 1 | -1/+1 |
* | Remove prtactive variable and related printf()s in the vop_inactive | kib | 2010-11-19 | 1 | -5/+0 |
* | Fix a possible race where the directory dirent is moved to the location | kevlo | 2010-10-18 | 1 | -3/+8 |
* | Ignore the return value of DE_INTERNALIZE(). | rpaulo | 2010-10-13 | 1 | -1/+1 |
* | The r184588 changed the layout of struct export_args, causing an ABI | kib | 2010-10-10 | 2 | -2/+4 |
* | Add a comment describing the reason for calling cache_purge(fvp). | kib | 2010-10-08 | 1 | -0/+7 |
* | The msdosfs lookup is case insensitive. Several aliases may be inserted for | kib | 2010-10-07 | 1 | -0/+1 |
* | Style fixes and removal of unneeded variable. | trasz | 2010-05-06 | 1 | -2/+1 |
* | Move checking against RLIMIT_FSIZE into one place, vn_rlimit_fsize(). | trasz | 2010-05-05 | 1 | -13/+2 |
* | mountmsdosfs: reject too high value of bytes per cluster | avg | 2010-04-02 | 1 | -0/+1 |
* | When returning error from msdosfs_lookup(), make sure that *vpp is NULL. | kib | 2010-03-03 | 1 | -3/+6 |
* | Do not leak vnode lock when msdosfs mount is updated and specified | kib | 2010-03-02 | 1 | -3/+2 |
* | Only destroy pm_fatlock on error if it was initialized. | kib | 2010-03-02 | 1 | -1/+1 |
* | Mark msdosfs as mpsafe. | kib | 2010-02-28 | 1 | -0/+1 |
* | Fix the race between dotdot lookup and forced unmount, by using | kib | 2010-02-28 | 1 | -23/+81 |
* | Use pm_fatlock to protect per-filesystem rb tree used to allocate fileno | kib | 2010-02-28 | 1 | -10/+6 |
* | Add assertions for FAT bitmap state. | kib | 2010-02-28 | 1 | -0/+8 |
* | Use pm_fatlock to protect fat bitmap. | kib | 2010-02-28 | 2 | -12/+38 |
* | Add per-mountpoint lockmgr lock for msdosfs. It is intended to be used | kib | 2010-02-28 | 2 | -1/+19 |
* | In msdosfs deget(), properly handle the case when the vnode is found in hash. | kib | 2010-02-28 | 1 | -3/+2 |
* | In msdosfs_inactive(), reclaim the vnodes both for SLOT_DELETED and | kib | 2010-02-28 | 1 | -2/+2 |
* | Remove seemingly unneeded unlock/relock of the dvp in msdosfs_rmdir, | kib | 2010-02-28 | 1 | -2/+0 |
* | Assert that the msdosfs vnode is (e)locked in several places. | kib | 2010-02-28 | 2 | -8/+8 |
* | Remove unused global statistic about fat cache usage. | kib | 2010-02-28 | 1 | -21/+0 |
* | Fix common misspelling of hierarchy | uqs | 2010-02-20 | 1 | -1/+1 |
* | Invalid filesystem might cause the bp to be never read. | kib | 2010-02-14 | 1 | -1/+2 |
* | Fix function name in the comment in the second location too. | kib | 2010-02-13 | 1 | -1/+1 |
* | - Add idempotency guards so the structures can be used in other utilities. | kib | 2010-02-13 | 6 | -23/+24 |
* | Use M_ZERO instead of calling bzero(). | kib | 2010-02-13 | 1 | -3/+2 |
* | Remove unused macros. | kib | 2010-02-13 | 1 | -3/+0 |
* | Revert previous commit and add myself to the list of people who should | phk | 2009-09-08 | 1 | -1/+0 |
* | Add necessary include. | phk | 2009-09-08 | 1 | -0/+1 |
* | Fix r193923 by noting that type of a_fp is struct file *, not int. | kib | 2009-06-10 | 1 | -1/+1 |
* | s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args | kib | 2009-06-10 | 1 | -1/+1 |
* | Remove the thread argument from the FSD (File-System Dependent) parts of | attilio | 2009-05-11 | 1 | -10/+15 |
* | - Hold a reference on the cdev a filesystem is mounted from in the mount. | jhb | 2009-02-27 | 5 | -12/+14 |
* | Right now, when trying to unmount a device that's already gone, | trasz | 2009-02-23 | 1 | -3/+3 |
* | Turn a "panic: non-decreasing id" into an error printf. This seems | trasz | 2009-01-13 | 1 | -2/+5 |
* | Fix msdosfs_print(), which in turn fixes "show lockedvnods" for msdosfs | trasz | 2009-01-11 | 1 | -0/+1 |