Deleted Added
full compact
cd9660_vfsops.c (118047) cd9660_vfsops.c (118607)
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).

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

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_vfsops.c 8.18 (Berkeley) 5/22/95
39 */
40
41#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).

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

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_vfsops.c 8.18 (Berkeley) 5/22/95
39 */
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 118047 2003-07-26 07:32:23Z phk $");
42__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_vfsops.c 118607 2003-08-07 15:04:27Z jhb $");
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/namei.h>
47#include <sys/proc.h>
48#include <sys/kernel.h>
49#include <sys/vnode.h>
50#include <sys/mount.h>

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

615 * Have to be really careful about stale file handles:
616 * - check that the inode number is in range
617 * - call iget() to get the locked inode
618 * - check for an unallocated inode (i_mode == 0)
619 * - check that the generation number matches
620 */
621
622struct ifid {
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/namei.h>
47#include <sys/proc.h>
48#include <sys/kernel.h>
49#include <sys/vnode.h>
50#include <sys/mount.h>

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

615 * Have to be really careful about stale file handles:
616 * - check that the inode number is in range
617 * - call iget() to get the locked inode
618 * - check for an unallocated inode (i_mode == 0)
619 * - check that the generation number matches
620 */
621
622struct ifid {
623 ushort ifid_len;
624 ushort ifid_pad;
623 u_short ifid_len;
624 u_short ifid_pad;
625 int ifid_ino;
626 long ifid_start;
627};
628
629/* ARGSUSED */
630static int
631cd9660_fhtovp(mp, fhp, vpp)
632 register struct mount *mp;

--- 263 unchanged lines hidden ---
625 int ifid_ino;
626 long ifid_start;
627};
628
629/* ARGSUSED */
630static int
631cd9660_fhtovp(mp, fhp, vpp)
632 register struct mount *mp;

--- 263 unchanged lines hidden ---