Deleted Added
full compact
cd9660_vnops.c (154152) cd9660_vnops.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_vnops.c 8.19 (Berkeley) 5/27/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_vnops.c 8.19 (Berkeley) 5/27/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.c 154152 2006-01-09 20:42:19Z tegge $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vnops.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/kernel.h>
44#include <sys/conf.h>
45#include <sys/stat.h>
46#include <sys/bio.h>

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

52#include <sys/dirent.h>
53#include <sys/unistd.h>
54#include <sys/filio.h>
55
56#include <vm/vm.h>
57#include <vm/vnode_pager.h>
58#include <vm/uma.h>
59
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/namei.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/stat.h>
46#include <sys/bio.h>

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

52#include <sys/dirent.h>
53#include <sys/unistd.h>
54#include <sys/filio.h>
55
56#include <vm/vm.h>
57#include <vm/vnode_pager.h>
58#include <vm/uma.h>
59
60#include <isofs/cd9660/iso.h>
61#include <isofs/cd9660/cd9660_node.h>
62#include <isofs/cd9660/iso_rrip.h>
60#include
61#include
62#include
63
64static vop_setattr_t cd9660_setattr;
65static vop_open_t cd9660_open;
66static vop_access_t cd9660_access;
67static vop_getattr_t cd9660_getattr;
68static vop_ioctl_t cd9660_ioctl;
69static vop_pathconf_t cd9660_pathconf;
70static vop_read_t cd9660_read;

--- 763 unchanged lines hidden ---
63
64static vop_setattr_t cd9660_setattr;
65static vop_open_t cd9660_open;
66static vop_access_t cd9660_access;
67static vop_getattr_t cd9660_getattr;
68static vop_ioctl_t cd9660_ioctl;
69static vop_pathconf_t cd9660_pathconf;
70static vop_read_t cd9660_read;

--- 763 unchanged lines hidden ---