aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_mount.c
Commit message (Expand)AuthorAgeFilesLines
* Do not allocate struct statfs on kernel stack.Konstantin Belousov2017-01-051-0/+1
* Provide simple mutual exclusion between mount point update and unmount.Konstantin Belousov2016-11-131-0/+6
* Move common cleanup code into helper.Konstantin Belousov2016-11-131-17/+21
* vfs: assert empty tmp free list on unmountMateusz Guzik2016-10-081-0/+2
* Limit scope of the optimization in r306608 to dounmount() caller only.Konstantin Belousov2016-10-071-1/+1
* vfs: batch free vnodes in per-mnt listsMateusz Guzik2016-09-301-0/+4
* Fix bug introduced with r302388, which could cause processes accessingEdward Tomasz Napierala2016-09-211-0/+7
* Renumber license clauses in sys/kern to avoid skipping #3Ed Maste2016-09-151-1/+1
* Replace all remaining calls to vprint(9) with vn_printf(9), and removeEdward Tomasz Napierala2016-08-101-1/+1
* Add new unmount(2) flag, MNT_NONBUSY, to check whether there areEdward Tomasz Napierala2016-07-071-0/+37
* Do not assume that we own the use reference on the covered vnode untilKonstantin Belousov2016-06-151-3/+18
* dounmount: do not call mountcheckdirs() for mounts with MNT_IGNOREAndriy Gapon2016-05-161-2/+4
* Do not copy by field when converting struct oexport_args to structKonstantin Belousov2016-02-041-18/+16
* Make vfs_unmountall() unmount /dev after /, not before. The onlyEdward Tomasz Napierala2015-08-241-0/+2
* Vnode is not referenced by the vfs_domount() at the point whereKonstantin Belousov2015-07-021-3/+0
* Right now, dounmount() is called with unreferenced mount point.Konstantin Belousov2015-05-271-15/+15
* Mountd iterating over the mount points may race with the parallelKonstantin Belousov2015-02-101-2/+8
* Do not call VFS_SYNC() before VFS_UNMOUNT() for forced unmount.Konstantin Belousov2014-12-091-2/+2
* Bring in the new automounter, similar to what's provided in most otherEdward Tomasz Napierala2014-08-171-0/+4
* Remove Giant acquisition from the mount and unmount pathes.Konstantin Belousov2014-08-031-23/+5
* Use proper MFSNAMELEN for fs type.Bryan Drewery2014-04-121-1/+1
* Change len checks for fstypelen and fspathlen to be against absolute lenSean Bruno2013-10-031-1/+1
* Forced dismounts of NFS mounts can fail when thread(s) are stuckRick Macklem2013-09-011-1/+9
* Add vfs_mounted and vfs_unmounted events so that components can be informedMarcel Moolenaar2013-07-101-1/+3
* Revert r251590. It unexpectedly broke the build and there were someMarcel Moolenaar2013-06-101-2/+0
* Add vfs_mounted and vfs_unmounted events so that components can be informedMarcel Moolenaar2013-06-091-0/+2
* - Correct mispellings of the word occurrenceGabor Kovesdan2013-04-171-1/+1
* When the journaled FFS volume is suspended due to the journal spaceKonstantin Belousov2013-03-201-1/+2
* Revert revision 244760 because strncpy pads trailing space with zero,David Xu2013-01-041-3/+3
* Remove the deprecated MNT_VNODE_FOREACH interface. Use theKonstantin Belousov2013-01-031-97/+0
* Use strlcpy to NULL-terminate error message even if user provided a shortDavid Xu2012-12-281-3/+3
* Fixup r218424: uio_yield() was scaling directly to userland priority.Attilio Rao2012-12-211-1/+1
* Fix typo.Konstantin Belousov2012-12-091-1/+1
* IFp4 @208450:Pawel Jakub Dawidek2012-11-301-1/+0
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-23/+4
* Add a facility for vgone() to inform the set of subscribed mountsKonstantin Belousov2012-09-091-1/+4
* This change creates a new list of active vnodes associated withKirk McKusick2012-04-201-0/+4
* Replace the MNT_VNODE_FOREACH interface with MNT_VNODE_FOREACH_ALL.Kirk McKusick2012-04-171-4/+6
* Add vfs_getopt_size. Support human readable file system options in tmpfs.Gleb Kurtsou2012-04-071-0/+42
* Decomission mnt_noasync. Introduce MNTK_NOASYNC mnt_kern_flag whichKonstantin Belousov2012-03-091-3/+6
* Analogous to r230407 a separate path buffer in vfs_mount.c is requiredMartin Matuska2012-02-051-2/+6
* Make sure all intermediate variables holding mount flags (mnt_flag)Kirk McKusick2012-01-171-19/+36
* Introduce vn_path_to_global_path()Martin Matuska2012-01-151-5/+24
* Introduce the option VFS_ALLOW_NONMPSAFE and turn it on by default onAttilio Rao2011-11-081-0/+15
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
* When unmounting a filesystem always wait for the vfs_busy lock to clearKirk McKusick2011-10-111-12/+0
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-3/+3
* Revert r224655 and r224614 because vn_fullpath* does not always workMartin Matuska2011-08-081-79/+7
* The change in r224615 didn't take into account that vn_fullpath_global()Martin Matuska2011-08-051-31/+68
* For mount, discover f_mntonname from supplied path argumentMartin Matuska2011-08-021-7/+42