summaryrefslogtreecommitdiff
path: root/sys/isofs/udf/udf_vnops.c
AgeCommit message (Expand)Author
2015-09-23remove lockmgr_printinfo stubs. from Martin NatanoTed Unangst
2015-03-14Remove some includes include-what-you-use claims don'tJonathan Gray
2015-02-10First step towards making uiomove() take a size_t size argument:Miod Vallat
2014-12-16primary change: move uvm_vnode out of vnode, keeping only a pointer.Ted Unangst
2014-11-18use siphash for key lookups in all the filesystem hashes.David Gwynne
2014-11-03include sys/unistd.h where needed instead of indirect reliance. ok jsgTed Unangst
2014-07-12add a size argument to free. will be used soon, but for now default to 0.Ted Unangst
2013-12-14Zero out dirent structures that will be copied out to avoid leaking garbagePhilip Guenther
2013-09-22On return, uio_offset needs to be set to the offset of the first entryPhilip Guenther
2013-08-30Fix handling of getdents() against UDF filesystems: d_off must be thePhilip Guenther
2013-08-13Switch time_t, ino_t, clock_t, and struct kevent's ident and dataPhilip Guenther
2013-06-11final removal of daddr64_t. daddr_t has been 64 bit for a long enoughTheo de Raadt
2013-06-02Actually use the subsecond timestamp dataPhilip Guenther
2013-06-02repair and activate pathconf supportTheo de Raadt
2013-05-30CD filesystems don't do inode numbers >2^32, so use a smaller type internally,Philip Guenther
2013-03-28Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,Philip Guenther
2012-06-20Cleanup our filesystem pathconf() code a little bit to make it easierMatthew Dempsky
2011-07-04move the specfs code to a place people can see it; ok guenther thib krwTheo de Raadt
2011-04-05Every single vop_default is set to eopnotsupp, so retire itThordur I. Bjornsson
2010-12-21Bring back the "End the VOP experiment." diff, naddy's issues whereThordur I. Bjornsson
2010-09-10Backout the VOP diff until the issues naddy was seeing on alpha (gcc3)Thordur I. Bjornsson
2010-09-06End the VOP experiment. Instead of the ridicolusly complicated operationThordur I. Bjornsson
2009-08-27make UDF less chatty during normal operationJolan Luff
2009-08-14First cut at UDF 2.[56] support, allowing read-only access to HDDVDKenneth R Westerback
2009-08-13- remove super-obvious comments from $fs_vnodeop_entries[]Jasper Lievisse Adriaanse
2009-07-09Remove the VREF() macro and replaces all instances with a call to verf(),Thordur I. Bjornsson
2009-06-05Update to Reinoud Zandijk's much more current version of ecma167-udf.hKenneth R Westerback
2008-11-08fix potential null dereference.Charles Longeau
2008-06-14A bunch of pool_get() + bzero() -> pool_get(..., .. | PR_ZERO)Michael Knudsen
2008-06-09Update access(2) to have modern semantics with respect to X_OK andTodd C. Miller
2008-05-08retire vn_default_error() and replace all instancesThordur I. Bjornsson
2007-12-09update pedro's email address, at his request;Jason McIntyre
2007-10-29MALLOC/FREE -> malloc/freeCharles Longeau
2007-09-17Only the most obvious bzero() -> M_ZERO changes. No cast changes, noKenneth R Westerback
2007-06-06now that all partition size/offsets are potentially 64-bit, change theTheo de Raadt
2007-06-01pedro ok'd this ~3500 line diff which removes the vop argumentTheo de Raadt
2007-05-09lockmgr_printinfo() calls only if DIAGNOSTICTheo de Raadt
2007-04-10``it's'' -> ``its'' when the grammar gods require this change.Miod Vallat
2007-03-25Remove LK_INTERLOCK from flags in a call to vget();Thordur I. Bjornsson
2007-03-21Remove the v_interlock simplelock from the vnode structure.Thordur I. Bjornsson
2006-10-16Use daddr64_t for logical blocks, okay krw@ thib@ mickey@Pedro Martelletto
2006-07-09Be consistent about how we name 'struct umount' instancesPedro Martelletto
2006-07-09udf_mnt -> umount and rename fields accordinglyPedro Martelletto
2006-07-08Be consistent about how we name 'struct unode' instancesPedro Martelletto
2006-07-08udf_node -> unode and rename fields accordinglyPedro Martelletto
2006-07-08Rename VTON() to VTOU()Pedro Martelletto
2006-07-05Add VAT support a la UDF 1.50Pedro Martelletto
2006-07-01Fix MALLOC()/malloc() usage in a couple of placesPedro Martelletto
2006-06-24rearrange some commentsPedro Martelletto
2006-06-14Avoid potential deadlock during hash lookup; ok pedro@Patrick Latifi