Deleted Added
full compact
cd9660_node.h (5651) cd9660_node.h (7090)
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).

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)cd9660_node.h 8.2 (Berkeley) 1/23/94
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).

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)cd9660_node.h 8.2 (Berkeley) 1/23/94
39 * $Id: cd9660_node.h,v 1.3 1994/09/15 19:46:00 bde Exp $
39 * $Id: cd9660_node.h,v 1.4 1995/01/16 17:03:25 joerg Exp $
40 */
41
42/*
43 * Theoretically, directories can be more than 2Gb in length,
44 * however, in practice this seems unlikely. So, we define
45 * the type doff_t as a long to keep down the cost of doing
46 * lookup on a 32-bit machine. If you are porting to a 64-bit
47 * architecture, you should make doff_t the same as off_t.

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

106#define IACC 0x0020 /* inode access time to be updated */
107
108#define VTOI(vp) ((struct iso_node *)(vp)->v_data)
109#define ITOV(ip) ((ip)->i_vnode)
110
111#define ISO_ILOCK(ip) iso_ilock(ip)
112#define ISO_IUNLOCK(ip) iso_iunlock(ip)
113
40 */
41
42/*
43 * Theoretically, directories can be more than 2Gb in length,
44 * however, in practice this seems unlikely. So, we define
45 * the type doff_t as a long to keep down the cost of doing
46 * lookup on a 32-bit machine. If you are porting to a 64-bit
47 * architecture, you should make doff_t the same as off_t.

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

106#define IACC 0x0020 /* inode access time to be updated */
107
108#define VTOI(vp) ((struct iso_node *)(vp)->v_data)
109#define ITOV(ip) ((ip)->i_vnode)
110
111#define ISO_ILOCK(ip) iso_ilock(ip)
112#define ISO_IUNLOCK(ip) iso_iunlock(ip)
113
114extern int (**cd9660_fifoop_p)();
115extern int (**cd9660_specop_p)();
116
114/*
115 * Prototypes for ISOFS vnode operations
116 */
117int cd9660_lookup __P((struct vop_lookup_args *));
118int cd9660_open __P((struct vop_open_args *));
119int cd9660_close __P((struct vop_close_args *));
120int cd9660_access __P((struct vop_access_args *));
121int cd9660_getattr __P((struct vop_getattr_args *));

--- 27 unchanged lines hidden ---
117/*
118 * Prototypes for ISOFS vnode operations
119 */
120int cd9660_lookup __P((struct vop_lookup_args *));
121int cd9660_open __P((struct vop_open_args *));
122int cd9660_close __P((struct vop_close_args *));
123int cd9660_access __P((struct vop_access_args *));
124int cd9660_getattr __P((struct vop_getattr_args *));

--- 27 unchanged lines hidden ---