Deleted Added
full compact
namei.h (50477) namei.h (51649)
1/*
2 * Copyright (c) 1985, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)namei.h 8.5 (Berkeley) 1/9/95
1/*
2 * Copyright (c) 1985, 1989, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)namei.h 8.5 (Berkeley) 1/9/95
34 * $FreeBSD: head/sys/sys/namei.h 50477 1999-08-28 01:08:13Z peter $
34 * $FreeBSD: head/sys/sys/namei.h 51649 1999-09-25 14:14:21Z phk $
35 */
36
37#ifndef _SYS_NAMEI_H_
38#define _SYS_NAMEI_H_
39
40#include <sys/queue.h>
41#include <sys/uio.h>
42

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

53 /* u_long ni_flags; flags to namei */
54 /* struct proc *ni_proc; process requesting lookup */
55 /*
56 * Arguments to lookup.
57 */
58 /* struct ucred *ni_cred; credentials */
59 struct vnode *ni_startdir; /* starting directory */
60 struct vnode *ni_rootdir; /* logical root directory */
35 */
36
37#ifndef _SYS_NAMEI_H_
38#define _SYS_NAMEI_H_
39
40#include <sys/queue.h>
41#include <sys/uio.h>
42

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

53 /* u_long ni_flags; flags to namei */
54 /* struct proc *ni_proc; process requesting lookup */
55 /*
56 * Arguments to lookup.
57 */
58 /* struct ucred *ni_cred; credentials */
59 struct vnode *ni_startdir; /* starting directory */
60 struct vnode *ni_rootdir; /* logical root directory */
61 struct vnode *ni_topdir; /* logical top directory */
61 /*
62 * Results: returned from/manipulated by lookup
63 */
64 struct vnode *ni_vp; /* vnode of result */
65 struct vnode *ni_dvp; /* vnode of intermediate directory */
66 /*
67 * Shared between namei and lookup/commit routines.
68 */

--- 128 unchanged lines hidden ---
62 /*
63 * Results: returned from/manipulated by lookup
64 */
65 struct vnode *ni_vp; /* vnode of result */
66 struct vnode *ni_dvp; /* vnode of intermediate directory */
67 /*
68 * Shared between namei and lookup/commit routines.
69 */

--- 128 unchanged lines hidden ---