| Commit message (Expand) | Author | Age | Files | Lines |
* | sys/fs: spelling fixes in comments. | pfg | 2016-04-29 | 1 | -1/+1 |
* | Pass MNTK_NO_IOPF and MNTK_UNMAPPED_BUFS flags from the lower | kib | 2016-03-04 | 1 | -1/+1 |
* | After nullfs rmdir operation, reclaim the directory vnode which was | kib | 2016-02-17 | 1 | -0/+9 |
* | Force nullfs vnode reclaim after unlinking, to potentially unlink | kib | 2015-12-30 | 1 | -3/+5 |
* | Check suspendability on the mountpoint returned by VOP_GETWRITEMOUNT. | markj | 2015-07-05 | 1 | -1/+1 |
* | File systems that do not use the buffer cache (such as ZFS) must | rmacklem | 2015-04-15 | 1 | -1/+1 |
* | Convert nullfs hash lock from a mutex to an rwlock. | mjg | 2014-12-30 | 1 | -12/+12 |
* | Provide vfs suspension support only for filesystems which need it, take | mjg | 2014-10-20 | 1 | -0/+2 |
* | VOP_LOOKUP() may relock the directory vnode for some reasons. Since | kib | 2014-08-08 | 1 | -4/+40 |
* | Assert that nullfs vnode has VV_ROOT set whenever lower vnode has. | kib | 2014-07-28 | 1 | -0/+4 |
* | Fix typo. | kib | 2014-07-24 | 1 | -1/+1 |
* | Check for the cross-device cross-link attempt in the VFS, instead of | kib | 2014-07-16 | 1 | -10/+0 |
* | Fix the length calculation for the final block of a sendfile(2) | des | 2013-09-10 | 1 | -0/+10 |
* | The tvp vnode on rename is usually unlinked. Drop the cached null | kib | 2013-07-04 | 1 | -1/+6 |
* | Do not leak the NULLV_NOUNLOCK flag from the nullfs_unlink_lowervp(), | kib | 2013-05-21 | 1 | -7/+19 |
* | - Fix nullfs vnode reference leak in nullfs_reclaim_lowervp(). The | kib | 2013-05-11 | 4 | -7/+50 |
* | nullfs: Improve f_flags in statfs(). | jilles | 2013-03-02 | 1 | -1/+2 |
* | Remove the filtering of the acceptable mount options for nullfs, added | kib | 2013-01-16 | 1 | -11/+0 |
* | The current default size of the nullfs hash table used to lookup the | kib | 2013-01-14 | 1 | -10/+6 |
* | When nullfs mount is forcibly unmounted and nullfs vnode is reclaimed, | kib | 2013-01-10 | 1 | -0/+8 |
* | Fix reversed condition in the assertion. | kib | 2013-01-04 | 1 | -1/+1 |
* | Add the "nocache" nullfs mount option, which disables the caching of | kib | 2013-01-03 | 4 | -13/+63 |
* | Remove the check and panic for an impossible condition. The NULL | kib | 2012-11-20 | 1 | -2/+0 |
* | r16312 is not any longer real since many years (likely since when VFS | attilio | 2012-11-19 | 1 | -4/+0 |
* | Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag. | attilio | 2012-11-09 | 1 | -2/+1 |
* | The r241025 fixed the case when a binary, executed from nullfs mount, | kib | 2012-11-02 | 1 | -0/+21 |
* | Grammar fixes. | kib | 2012-10-14 | 1 | -3/+3 |
* | Replace the XXX comment with the proper description. | kib | 2012-10-14 | 1 | -1/+3 |
* | Allow shared lookups for nullfs mounts, if lower filesystem supports | kib | 2012-09-09 | 4 | -46/+67 |
* | Remove unused thread argument to vrecycle(). | trasz | 2012-04-23 | 1 | -2/+1 |
* | Use NULL instead of 0 | kevlo | 2012-03-13 | 1 | -2/+2 |
* | Do not expose unlocked unconstructed nullfs vnode on mount list. | kib | 2012-03-02 | 1 | -1/+1 |
* | Allow shared locks for reads when lower filesystem accept shared locking. | kib | 2012-02-29 | 1 | -1/+2 |
* | Document that null_nodeget() cannot take shared-locked lowervp due to | kib | 2012-02-29 | 1 | -1/+5 |
* | In null_reclaim(), assert that reclaimed vnode is fully constructed, | kib | 2012-02-29 | 1 | -9/+12 |
* | Always request exclusive lock for the lower vnode in nullfs_vget(). | kib | 2012-02-29 | 1 | -0/+6 |
* | Move the code to destroy half-contructed nullfs vnode into helper | kib | 2012-02-29 | 1 | -6/+13 |
* | Merge a split multi-line comment. | kib | 2012-02-29 | 1 | -4/+1 |
* | To improve control over the use of mount(8) inside a jail(8), introduce | mm | 2012-02-23 | 1 | -0/+5 |
* | Allow mounting nullfs(5) inside jails. | mm | 2012-02-09 | 1 | -1/+1 |
* | Subject: NULLFS: properly destroy node hash | rea | 2012-01-18 | 1 | -1/+1 |
* | In sys/fs/nullfs/null_subr.c, in a KASSERT, output the correct vnode | dim | 2012-01-05 | 1 | -1/+1 |
* | Do the vput() for the lowervp in the null_nodeget() for error case too. | kib | 2012-01-03 | 3 | -8/+6 |
* | Document the state of the lowervp vnode for null_nodeget(). | kib | 2012-01-03 | 1 | -0/+3 |
* | Existing VOP_VPTOCNP() interface has a fatal flow that is critical for | kib | 2011-11-19 | 1 | -4/+3 |
* | Do not use NULLVPTOLOWERVP() in the null_print(). If diagnostic is compiled | kib | 2011-11-19 | 1 | -1/+1 |
* | Use the plain panic calls, without additional printing around them. | kib | 2011-11-19 | 1 | -14/+4 |
* | The use of VOP_ISLOCKED() without a check for the return values can cause | kib | 2011-10-24 | 1 | -4/+1 |
* | The only possible error return from null_nodeget() is due to insmntque1 | kib | 2011-10-24 | 1 | -1/+0 |
* | The covered vnode must be reloced if it was unlocked. Remove VOP_ISLOCKED | kib | 2011-10-24 | 1 | -1/+1 |