| Commit message (Expand) | Author | Age | Files | Lines |
* | MFC r311815: | kib | 2017-01-16 | 1 | -4/+9 |
* | MFC r303704: | kib | 2016-08-10 | 4 | -16/+8 |
* | Do not perform unneccessary shared recursion on the allproc_lock in | kib | 2016-03-11 | 1 | -10/+12 |
* | Hide vfs.pfs.trace variable if it is not used. | dchagin | 2015-05-24 | 1 | -0/+2 |
* | Redo r258088 to avoid relying on signed arithmetic overflow, since | kib | 2013-11-20 | 1 | -9/+4 |
* | Remove useless comparisions of assigned offset and resid with the | kib | 2013-11-13 | 1 | -4/+6 |
* | Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag. | attilio | 2012-11-09 | 1 | -1/+0 |
* | Apply inlined vn_vget_ino() algorithm for ".." lookup in pseudofs. | kib | 2012-03-05 | 1 | -5/+32 |
* | Add procfs to jail-mountable filesystems. | mm | 2012-02-29 | 1 | -2/+6 |
* | Fix found places where uio_resid is truncated to int. | kib | 2012-02-21 | 1 | -1/+2 |
* | Make sure all intermediate variables holding mount flags (mnt_flag) | mckusick | 2012-01-17 | 2 | -2/+2 |
* | Convert files to UTF-8 | uqs | 2012-01-15 | 6 | -6/+6 |
* | r222004 changed sbuf_finish() to not clear the buffer error status. As a | jh | 2012-01-06 | 1 | -6/+12 |
* | Check the return value of sbuf_finish() in pfs_readlink() and return | jh | 2012-01-06 | 1 | -1/+5 |
* | Existing VOP_VPTOCNP() interface has a fatal flow that is critical for | kib | 2011-11-19 | 1 | -2/+1 |
* | Fix build, use %d for int value formatting. | kib | 2011-11-16 | 1 | -1/+1 |
* | Handle invalid large values for getdirentries(2) data buffer size. | pho | 2011-11-16 | 1 | -22/+35 |
* | Removed extra PRELE() call. | pho | 2011-11-15 | 1 | -2/+0 |
* | Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. | ed | 2011-11-07 | 1 | -1/+1 |
* | Add dedicated routines to toggle lockmgr flags such as LK_NOSHARE and | jhb | 2010-08-20 | 1 | -1/+1 |
* | The cache_enter(9) function shall not be called for doomed dvp. | kib | 2010-04-20 | 1 | -1/+1 |
* | Truncate read request rather than returning EIO if the request is | jh | 2010-01-22 | 1 | -4/+2 |
* | If a race is detected, pfs_vncache_alloc() may reclaim a vnode that had | kib | 2009-09-07 | 1 | -3/+5 |
* | insmntque_stddtr() clears vp->v_data and resets vp->v_op to | kib | 2009-09-07 | 1 | -0/+1 |
* | Remove spurious pfs_unlock(). | kib | 2009-08-31 | 1 | -1/+0 |
* | Change the type of uio_resid member of struct uio from int to ssize_t. | kib | 2009-06-25 | 1 | -2/+2 |
* | VOP_IOCTL takes unlocked vnode as an argument. Due to this, v_data may | kib | 2009-06-10 | 1 | -6/+22 |
* | Drop Giant. | des | 2009-06-06 | 1 | -12/+14 |
* | Unlock the pseudofs vnode before calling fill method for pfs_readlink(). | kib | 2009-05-31 | 1 | -1/+6 |
* | Use a temporary variable to avoid a duplicate strlen(). | des | 2009-05-28 | 1 | -2/+3 |
* | Remove the thread argument from the FSD (File-System Dependent) parts of | attilio | 2009-05-11 | 2 | -17/+14 |
* | Remove spurious locking in pfs_write(). | des | 2009-04-08 | 1 | -2/+0 |
* | Fix an inverted KASSERT. Add similar assertions in other similar places. | des | 2009-04-07 | 1 | -2/+20 |
* | Fix a logic bug that caused the pfs_attr method to be called only for | des | 2009-02-16 | 1 | -3/+6 |
* | Fix a deadlock which can occur due to a pseudofs vnode not getting unlocked. | marcus | 2009-01-09 | 1 | -0/+1 |
* | Add a VOP_VPTOCNP implementation for pseudofs which covers file systems | marcus | 2008-12-30 | 1 | -0/+79 |
* | When the insmntque() in the pfs_vncache_alloc() fails, vop_reclaim calls | kib | 2008-12-29 | 1 | -1/+2 |
* | Drop the pseudofs vnode lock around call to pfs_read handler. The handler | kib | 2008-12-29 | 1 | -15/+18 |
* | After the pfs_vncache_mutex is dropped, another thread may attempt to | kib | 2008-12-29 | 1 | -13/+26 |
* | Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessary | trasz | 2008-10-28 | 1 | -1/+1 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 2 | -6/+6 |
* | fdescfs, devfs, mqueuefs, nfs, portalfs, pseudofs, tmpfs and xfs | kib | 2008-09-20 | 1 | -1/+1 |
* | Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed thread | attilio | 2008-08-28 | 1 | -2/+2 |
* | Introduce some functions in the vnode locks namespace and in the ffs | attilio | 2008-02-24 | 1 | -1/+1 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 2 | -3/+3 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 2 | -3/+3 |
* | Get rid of qaddr_t. | alfred | 2007-10-16 | 1 | -1/+1 |
* | Use the correct pid when checking to see whether or not the /proc/<pid> | jhb | 2007-10-05 | 1 | -1/+1 |
* | Fix off-by-one error (introduced in r1.60) that had the effect of | bmah | 2007-06-07 | 1 | -1/+1 |
* | Fix old locking bugs which were revealed when pseudofs was made MPSAFE. | des | 2007-04-23 | 1 | -1/+9 |