| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert previous. hashfree() just calls free() which handles NULL with |  krw | 2020-06-23 | 1 | -7/+6 |
* | hashfree() doesn't like NULL, so check for NULL if NULL is a |  krw | 2020-06-23 | 1 | -6/+7 |
* | Convert struct vfsops initializer to C99 style. |  bluhm | 2019-12-26 | 1 | -14/+14 |
* | vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@ |  cheloha | 2019-07-25 | 1 | -3/+3 |
* | Remove proc from the parameters of vn_lock(). The parameter is |  visa | 2018-05-02 | 1 | -4/+4 |
* | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2018-04-28 | 1 | -4/+4 |
* | Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(), |  visa | 2018-03-28 | 1 | -2/+2 |
* | Syncronize filesystems to disk when suspending. Each mountpoint's vnodes |  deraadt | 2018-02-10 | 1 | -2/+2 |
* | In uvm Chuck decided backing store would not be allocated proactively |  deraadt | 2017-12-11 | 1 | -10/+11 |
* | If you use sys/param.h, you don't need sys/types.h |  deraadt | 2017-09-08 | 1 | -2/+1 |
* | Tweak lock inits to make the system runnable with witness(4) |  visa | 2017-04-20 | 1 | -2/+2 |
* | Move a pointer deref to after a NULL test. |  jsg | 2017-02-08 | 1 | -3/+2 |
* | use hashfree in fs code. from Mathieu - |  tedu | 2016-09-24 | 1 | -6/+3 |
* | all pools have their ipl set via pool_setipl, so fold it into pool_init. |  dlg | 2016-09-15 | 1 | -7/+4 |
* | Remove usermount remnants. ok tedu |  natano | 2016-09-07 | 1 | -12/+1 |
* | pool_setipl for udf |  dlg | 2016-08-25 | 1 | -1/+4 |
* | Eliminate pointless casts to qaddr_t of a value being assigned to a void* |  guenther | 2016-08-13 | 1 | -2/+2 |
* | Remove the lockmgr() API. It is only used by filesystems, where it is a |  natano | 2016-06-19 | 1 | -2/+2 |
* | When pulling an msdos formated umass stick during mount while the |  bluhm | 2016-05-22 | 1 | -1/+3 |
* | Populate all necessary statfs members in .vfs_statfs. cd9660, udf, |  natano | 2016-04-26 | 1 | -1/+4 |
* | When pulling and unmounting an umass USB stick, the file system |  bluhm | 2016-03-27 | 1 | -4/+2 |
* | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2016-03-19 | 1 | -5/+5 |
* | Set mnt_data to NULL after freeing the file system specific mount point. |  bluhm | 2016-03-17 | 1 | -2/+2 |
* | Use PR_WAITOK to indicate that pools are not used in interrupt context |  kettenis | 2015-08-31 | 1 | -7/+7 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | primary change: move uvm_vnode out of vnode, keeping only a pointer. |  tedu | 2014-12-16 | 1 | -1/+2 |
* | use siphash for key lookups in all the filesystem hashes. |  dlg | 2014-11-18 | 1 | -1/+4 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -10/+10 |
* | CD filesystems don't do inode numbers >2^32, so use a smaller type internally, |  guenther | 2013-05-30 | 1 | -3/+7 |
* | Add an f_mntfromspec member to struct statfs, which specifies the name of |  jsing | 2013-04-15 | 1 | -1/+3 |
* | Cleanup VFS mount string handling: |  jsing | 2012-09-10 | 1 | -7/+11 |
* | move the specfs code to a place people can see it; ok guenther thib krw |  deraadt | 2011-07-04 | 1 | -3/+2 |
* | bread does nothing with its ucred argument. remove it. ok matthew |  tedu | 2011-07-04 | 1 | -4/+3 |
* | Bring back the "End the VOP experiment." diff, naddy's issues where |  thib | 2010-12-21 | 1 | -2/+2 |
* | Backout the VOP diff until the issues naddy was seeing on alpha (gcc3) |  thib | 2010-09-10 | 1 | -2/+2 |
* | End the VOP experiment. Instead of the ridicolusly complicated operation |  thib | 2010-09-06 | 1 | -2/+2 |
* | makefstype was only used in ported from freebsd filesystems. fix them |  tedu | 2010-06-29 | 1 | -2/+2 |
* | Re-introduce the remaining bits of thib@'s Aug 2006 VOP_CLOSE() |  krw | 2009-12-19 | 1 | -1/+4 |
* | make UDF less chatty during normal operation |  jolan | 2009-08-27 | 1 | -1/+3 |
* | First cut at UDF 2.[56] support, allowing read-only access to HDDVD |  krw | 2009-08-14 | 1 | -25/+112 |
* | Remove the VREF() macro and replaces all instances with a call to verf(), |  thib | 2009-07-09 | 1 | -2/+2 |
* | Update to Reinoud Zandijk's much more current version of ecma167-udf.h |  krw | 2009-06-05 | 1 | -13/+14 |
* | A bunch of pool_get() + bzero() -> pool_get(..., .. | PR_ZERO) |  mk | 2008-06-14 | 1 | -3/+2 |
* | update pedro's email address, at his request; |  jmc | 2007-12-09 | 1 | -2/+2 |
* | Oops. Forgot to do FREE -> free when I did MALLOC -> malloc. |  krw | 2007-10-06 | 1 | -3/+3 |
* | MALLOC+bzero -> malloc+M_ZERO. |  krw | 2007-10-03 | 1 | -4/+2 |
* | Revert last commit |  pedro | 2006-08-07 | 1 | -4/+1 |
* | obey the locking disaplince wrt to VOP_CLOSE during umounts |  thib | 2006-08-06 | 1 | -1/+4 |
* | Don't hold up a vnode for the VAT when a unode is sufficient |  pedro | 2006-07-11 | 1 | -1/+4 |
* | Make the mounting process pass a hint to the kernel of where to find the VAT |  pedro | 2006-07-11 | 1 | -6/+5 |