Deleted Added
full compact
cd9660_lookup.c (30474) cd9660_lookup.c (31016)
1/*-
2 * Copyright (c) 1989, 1993, 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).

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

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 * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91
39 *
40 * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94
1/*-
2 * Copyright (c) 1989, 1993, 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).

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

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 * from: @(#)ufs_lookup.c 7.33 (Berkeley) 5/19/91
39 *
40 * @(#)cd9660_lookup.c 8.2 (Berkeley) 1/23/94
41 * $Id: cd9660_lookup.c,v 1.18 1997/09/10 19:43:15 phk Exp $
41 * $Id: cd9660_lookup.c,v 1.19 1997/10/16 10:47:33 phk Exp $
42 */
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/namei.h>
47#include <sys/buf.h>
48#include <sys/vnode.h>
49#include <sys/mount.h>

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

112 u_short namelen;
113 int isoflags;
114 char altname[NAME_MAX];
115 int res;
116 int assoc, len;
117 char *name;
118 struct vnode **vpp = ap->a_vpp;
119 struct componentname *cnp = ap->a_cnp;
42 */
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/namei.h>
47#include <sys/buf.h>
48#include <sys/vnode.h>
49#include <sys/mount.h>

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

112 u_short namelen;
113 int isoflags;
114 char altname[NAME_MAX];
115 int res;
116 int assoc, len;
117 char *name;
118 struct vnode **vpp = ap->a_vpp;
119 struct componentname *cnp = ap->a_cnp;
120 struct ucred *cred = cnp->cn_cred;
121 int flags = cnp->cn_flags;
122 int nameiop = cnp->cn_nameiop;
123 struct proc *p = cnp->cn_proc;
124
125 bp = NULL;
126 *vpp = NULL;
127 vdp = ap->a_dvp;
128 dp = VTOI(vdp);

--- 295 unchanged lines hidden ---
120 int flags = cnp->cn_flags;
121 int nameiop = cnp->cn_nameiop;
122 struct proc *p = cnp->cn_proc;
123
124 bp = NULL;
125 *vpp = NULL;
126 vdp = ap->a_dvp;
127 dp = VTOI(vdp);

--- 295 unchanged lines hidden ---