aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/cd9660
Commit message (Expand)AuthorAgeFilesLines
* Handle _PC_FILESIZEBITS and _PC_SYMLINK_MAX pathconf() requests in cd9660.John Baldwin2017-10-021-0/+9
* Consistently use vop_stdpathconf() for default pathconf values.John Baldwin2017-07-111-10/+1
* Add MD_VERIFY option to enable O_VERIFY in open for vnode type.Stephen J. Kiernan2017-05-311-0/+5
* Renumber copyright clause 4Warner Losh2017-02-2812-12/+12
* cd9660: fix up compilation on sparc after r311665Mateusz Guzik2017-01-101-3/+5
* cd9660: typedef cd_ino_t in preference to #defineConrad Meyer2017-01-091-1/+1
* cd9660: Add a prototype for cd9660_vfs_hash_cmpConrad Meyer2017-01-091-0/+1
* iso_rrip.h: Hide kernel definitions from makefs(8)Conrad Meyer2017-01-081-0/+2
* Do not truncate inode calculation from ISO9660 block offsetConrad Meyer2017-01-081-3/+10
* cd9660: Expand internal inum size to 64 bitsConrad Meyer2017-01-088-23/+50
* Use buffer pager for cd9660.Konstantin Belousov2016-10-281-0/+42
* Remove drop/reacquire of Giant around geom calls for cd9660 and udf.Konstantin Belousov2016-05-221-6/+0
* fs misc: for pointers replace 0 with NULL.Pedro F. Giffuni2016-04-151-2/+2
* Do not access buffer if bread(9) or cluster_read(9) failed. On error,Konstantin Belousov2016-03-291-4/+2
* cd9660: More "check for NULL" cleaunps.Pedro F. Giffuni2016-02-121-10/+8
* cd9660: Drop an unnecessary check for NULL.Pedro F. Giffuni2016-02-071-2/+1
* Fix a bunch of -Wcast-qual warnings in cd9660_util.c, by usingDimitry Andric2015-01-291-2/+4
* Generalize vn_get_ino() to allow filesystems to use custom vnodeKonstantin Belousov2014-07-141-33/+24
* NULL stale pointers (should be a no-op as they should no longer beJohn-Mark Gurney2013-09-251-0/+5
* fix a bug where we access a bread buffer after we have brelse'd it...John-Mark Gurney2013-09-251-5/+5
* - Add const-qualifiers to the arguments of isonum_*().Marius Strobl2013-07-281-13/+22
* Add currently unused flag argument to the cluster_read(),Konstantin Belousov2013-03-141-1/+1
* 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-2/+2
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-2/+1
* Remove fifo.h. The only used function declaration from the header isKonstantin Belousov2012-03-111-1/+0
* Remove unneeded cast to u_int. The values as small enough to fit intoKonstantin Belousov2012-03-041-2/+1
* Remove unnecessary castsKevin Lo2012-03-041-2/+2
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-2/+2
* Remove an unnecessary cast.Kevin Lo2012-02-201-1/+1
* Make sure all intermediate variables holding mount flags (mnt_flag)Kirk McKusick2012-01-171-1/+1
* This update changes the mnt_flag field in the mount structure fromKirk McKusick2011-07-241-1/+1
* Add a lock flags argument to the VFS_FHTOVP() file systemRick Macklem2011-05-221-1/+2
* Remove prtactive variable and related printf()s in the vop_inactiveKonstantin Belousov2010-11-191-5/+0
* The r184588 changed the layout of struct export_args, causing an ABIKonstantin Belousov2010-10-102-2/+4
* Revert the previous commit. The race is not applicable to the lockmgrJohn Baldwin2010-07-161-2/+0
* When the MNTK_EXTENDED_SHARED mount option was added, some filesystems wereJohn Baldwin2010-07-161-0/+2
* On LP64 struct ifid is 64-bit aligned while struct fid is 32-bit alignedMarius Strobl2010-01-232-10/+17
* In vn_vget_ino() and their inline equivalents, mnt_ref() the mount pointKonstantin Belousov2009-07-021-0/+2
* Update the inline version of vn_get_ino() for ".." lookups to match theJohn Baldwin2009-06-121-6/+8
* For cd9660_ioctl, check for recycled vnode after locking it.Konstantin Belousov2009-06-101-0/+4
* Fix r193923 by noting that type of a_fp is struct file *, not int.Konstantin Belousov2009-06-101-1/+1
* s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_argsKonstantin Belousov2009-06-101-1/+1
* VOP_IOCTL takes unlocked vnode as an argument. Due to this, v_data mayKonstantin Belousov2009-06-101-6/+17
* Place hostnames and similar information fully under the prison system.Jamie Gritton2009-05-291-9/+10
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-111-9/+9
* Add a new internal mount flag (MNTK_EXTENDED_SHARED) to indicate that aJohn Baldwin2009-03-111-1/+2
* - Consolidate error handling in the cd9660 and udf mount routines.John Baldwin2009-02-111-10/+8
* Use the correct field name for the size of the sierra_id. While thisWarner Losh2009-01-281-1/+1
* Mark cd9660 MPSAFE and add support for using shared vnode locks duringJohn Baldwin2009-01-284-50/+114