summaryrefslogtreecommitdiffstats
path: root/sys/msdosfs/msdosfs_denode.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Drop unnecessary `p' parameter from vget(9).visa2018-05-271-3/+2
* Remove proc from the parameters of vn_lock(). The parameter isvisa2018-05-021-3/+2
* Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is alwaysvisa2018-04-281-2/+2
* Use RWL_IS_VNODE with locks that are acquired through VOP_LOCK(),visa2018-03-281-2/+2
* msdofs: Add new CLUST_END constantsf2017-08-141-2/+2
* Tweak lock inits to make the system runnable with witness(4)visa2017-04-201-2/+2
* Remove the lockmgr() API. It is only used by filesystems, where it is anatano2016-06-191-2/+2
* Remove the unused flags argument from VOP_UNLOCK().natano2016-03-191-2/+2
* Fix printf() types so kernel compiles with or w/o MSDOSFS_DEBUG.krw2015-10-231-7/+8
* Nuke a bunch of leading/embedded/trailing whitespace so the code can bekrw2015-10-231-19/+19
* rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadttedu2015-01-091-2/+2
* primary change: move uvm_vnode out of vnode, keeping only a pointer.tedu2014-12-161-1/+2
* use siphash for key lookups in all the filesystem hashes.dlg2014-11-181-3/+21
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hderaadt2014-07-081-3/+1
* fix error checking oddity in msdosfs code, as noted by kettenis@halex2013-12-241-2/+2
* Format string fixes: %hu/%hd for uint16_t, %u/%d/%x for uint32_tsf2013-10-011-2/+2
* final removal of daddr64_t. daddr_t has been 64 bit for a long enoughderaadt2013-06-111-2/+2
* Remove the need to occasionally treat dos file names as strings bykrw2012-09-061-6/+8
* bread does nothing with its ucred argument. remove it. ok matthewtedu2011-07-041-5/+3
* Bring back the "End the VOP experiment." diff, naddy's issues wherethib2010-12-211-4/+3
* improve the look of a for loopderaadt2010-10-271-2/+2
* Backout the VOP diff until the issues naddy was seeing on alpha (gcc3)thib2010-09-101-3/+4
* End the VOP experiment. Instead of the ridicolusly complicated operationthib2010-09-061-4/+3
* Initialize various uninitialized variables. Found by jsg@ via Clang.krw2010-03-291-2/+2
* - ansify function declarations, no binary changejasper2009-08-131-35/+14
* Remove the VREF() macro and replaces all instances with a call to verf(),thib2009-07-091-3/+3
* Return pcbmap() errors from deget() rather than ignoring them. EIO atkrw2008-01-131-2/+4
* Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.krw2007-10-061-2/+2
* MALLOC+bzero -> malloc+M_ZERO.krw2007-10-031-4/+2
* convert all daddr_t types to either daddr64_t or uint32_t or other suchderaadt2007-06-021-2/+2
* pedro ok'd this ~3500 line diff which removes the vop argumentderaadt2007-06-011-8/+3
* Remove the simplelock argument from vrecycle();thib2007-04-111-2/+2
* Remove the v_interlock simplelock from the vnode structure.thib2007-03-211-3/+2
* Put vprint() under DIAGNOSTIC, as to save space in generated ramdisks.pedro2006-01-091-6/+11
* This moves access to wall and uptime variables in MI code,tholo2004-06-241-2/+2
* use pool for namei pathbuf. testing ok millert@ tdeval@tedu2004-05-141-1/+1
* 32 bit ints are uint32_t, not u_long. works on 64bit now. ok deraadt@tedu2004-05-121-13/+13
* First round of __P removal in sysmillert2002-03-141-5/+5
* UBC was a disaster. It worked very good when it worked, but on someart2001-12-191-26/+6
* Big cleanup inspired by NetBSD with some parts of the code from NetBSD.art2001-12-101-1/+14
* Merge in struct uvm_vnode into struct vnode.art2001-12-101-2/+2
* Merge in the unified buffer cache code as found in NetBSD 2001/03/10. Theart2001-11-271-6/+13
* Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.miod2001-11-061-2/+2
* Remove old vm.art2001-06-271-9/+1
* Get rid of several vnode operationscsapuntz2001-06-231-2/+24
* zap the newhashinit hack.art1999-04-281-2/+2
* compat with uvm vnode pagerart1999-02-261-1/+9
* always initialize error in inactiveart1999-01-081-2/+3