aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/udf
Commit message (Expand)AuthorAgeFilesLines
* Add currently unused flag argument to the cluster_read(),Konstantin Belousov2013-03-141-2/+3
* Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag.Attilio Rao2012-11-091-2/+1
* Use NULL instead of 0 for pointersKevin Lo2012-07-221-1/+1
* Remove fifo.h. The only used function declaration from the header isKonstantin Belousov2012-03-111-1/+0
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-1/+2
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-2/+2
* Add a lock flags argument to the VFS_FHTOVP() file systemRick Macklem2011-05-221-1/+1
* Revert the previous commit. The race is not applicable to the lockmgrJohn Baldwin2010-07-161-4/+1
* When the MNTK_EXTENDED_SHARED mount option was added, some filesystems wereJohn Baldwin2010-07-161-1/+4
* udf_vnops: cosmetic followup to r208671 - better looking codeAndriy Gapon2010-06-221-1/+1
* udf_readlink: fix malloc call with uninitialized size parameterAndriy Gapon2010-05-311-1/+1
* Use #ifdef APPLE_MAC instead of #ifdef MAC to conditionalize Apple-specificRobert Watson2009-06-061-2/+2
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-5/+7
* Add a new internal mount flag (MNTK_EXTENDED_SHARED) to indicate that aJohn Baldwin2009-03-111-1/+2
* udf: use truly unique directory cookieAndriy Gapon2009-03-041-1/+1
* udf_strategy: remove redundant commentAndriy Gapon2009-03-041-4/+0
* udf_readdir: do not advance offset if entry can not be uio-edAndriy Gapon2009-03-031-1/+1
* udf_readatoffset: return correct size and data pointer for data in fentryAndriy Gapon2009-02-271-0/+6
* udf_readatoffset: read through directory vnode, do not read > MAXBSIZEAndriy Gapon2009-02-263-25/+23
* udf: add read-ahead support modeled after cd9660Andriy Gapon2009-02-262-3/+23
* udf_map: return proper error code instead of leaking an internal oneAndriy Gapon2009-02-261-2/+13
* udf_read: correctly read data from files with data embedded into fentry,Andriy Gapon2009-02-261-0/+26
* udf_strategy: tiny optimization of logic, calculations; extra diagnosticsAndriy Gapon2009-02-261-14/+11
* style nit in r188815Andriy Gapon2009-02-191-1/+1
* fs/udf: fix incorrect error return (-1) when reading a large dirAndriy Gapon2009-02-191-4/+3
* - Consolidate error handling in the cd9660 and udf mount routines.John Baldwin2009-02-111-14/+18
* Mark udf(4) MPSAFE and add support for shared vnode locks during pathnameJohn Baldwin2009-02-092-24/+55
* Use the same style as the rest of the file for the optional data stringJohn Baldwin2009-02-091-1/+1
* Add rudimentary support for symbolic links on UDF. Links are stored as aJohn Baldwin2009-02-062-3/+124
* Add support for fifos to UDF:John Baldwin2009-02-063-0/+64
* Remove unused local variables.Bjoern A. Zeeb2009-01-311-2/+0
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-281-4/+5
* Fix a number of style issues in the MALLOC / FREE commit. I've tried toDag-Erling Smørgrav2008-10-231-3/+3
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-232-15/+14
* Remove the struct thread unuseful argument from bufobj interface.Attilio Rao2008-10-101-6/+6
* Initialize va_rdev to NODEV instead of 0 or VNOVAL in VOP_GETATTR().Konstantin Belousov2008-09-201-1/+1
* Fix and speedup timestamp calculations which is roughly based on the patch inMarkus Brueffer2008-05-161-22/+34
* Cleanup lockmgr interface and exported KPI:Attilio Rao2008-01-241-1/+1
* udf_vget() shall vgone() the vnode when the file_entry cannot be allocatedKonstantin Belousov2008-01-181-0/+3
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-132-2/+2
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Fix calculation of descriptor tag checksums. According to ECMA-167, Part 4,Markus Brueffer2007-12-111-1/+1
* Get rid of qaddr_t.Alfred Perlstein2007-10-161-2/+2
* Correct corrupt read when the read starts at a non-aligned offset.Remko Lodder2007-06-111-4/+6
* o cd9660 code repo-copied, update a comment.Maxim Konovalov2007-03-241-1/+1
* Make insmntque() externally visibile and allow it to fail (e.g. duringTor Egge2007-03-131-1/+7
* Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method.Pawel Jakub Dawidek2007-02-153-23/+23
* Rewrite the udf_read() routine to use a file vnode instead of the devvp vnode.Pav Lucistnik2007-01-151-24/+52
* Tell backing v_object the filesize right on it's creation.Pav Lucistnik2007-01-071-1/+6
* Call vnode_create_vobject() in VOP_OPEN. Makes mmap work on UDF filesystem.Pav Lucistnik2006-12-231-0/+12