Deleted Added
full compact
cd9660_vfsops.c (164033) cd9660_vfsops.c (166639)
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 164033 2006-11-06 13:42:10Z rwatson $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 166639 2007-02-11 13:54:25Z rodrigc $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/priv.h>
44#include <sys/proc.h>
45#include <sys/kernel.h>
46#include <sys/vnode.h>
47#include <sys/mount.h>
48#include <sys/bio.h>
49#include <sys/buf.h>
50#include <sys/cdio.h>
51#include <sys/conf.h>
52#include <sys/fcntl.h>
53#include <sys/malloc.h>
54#include <sys/stat.h>
55#include <sys/syslog.h>
56#include <sys/iconv.h>
57
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/priv.h>
44#include <sys/proc.h>
45#include <sys/kernel.h>
46#include <sys/vnode.h>
47#include <sys/mount.h>
48#include <sys/bio.h>
49#include <sys/buf.h>
50#include <sys/cdio.h>
51#include <sys/conf.h>
52#include <sys/fcntl.h>
53#include <sys/malloc.h>
54#include <sys/stat.h>
55#include <sys/syslog.h>
56#include <sys/iconv.h>
57
58#include <isofs/cd9660/iso.h>
59#include <isofs/cd9660/iso_rrip.h>
60#include <isofs/cd9660/cd9660_node.h>
61#include <isofs/cd9660/cd9660_mount.h>
58#include
59#include
60#include
61#include
62
63#include <geom/geom.h>
64#include <geom/geom_vfs.h>
65
66MALLOC_DEFINE(M_ISOFSMNT, "isofs_mount", "ISOFS mount structure");
67MALLOC_DEFINE(M_ISOFSNODE, "isofs_node", "ISOFS vnode private part");
68
69struct iconv_functions *cd9660_iconv = NULL;

--- 779 unchanged lines hidden ---
62
63#include <geom/geom.h>
64#include <geom/geom_vfs.h>
65
66MALLOC_DEFINE(M_ISOFSMNT, "isofs_mount", "ISOFS mount structure");
67MALLOC_DEFINE(M_ISOFSNODE, "isofs_node", "ISOFS vnode private part");
68
69struct iconv_functions *cd9660_iconv = NULL;

--- 779 unchanged lines hidden ---