Deleted Added
full compact
nfsmount.h (1817) nfsmount.h (2175)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93
37 * $Id$
37 * $Id: nfsmount.h,v 1.2 1994/08/02 07:52:21 davidg Exp $
38 */
39
38 */
39
40#ifndef _NFS_NFSMOUNT_H_
41#define _NFS_NFSMOUNT_H_
42
40/*
41 * Mount structure.
42 * One allocated on every NFS mount.
43 * Holds NFS specific information for mount.
44 */
45struct nfsmount {
46 int nm_flag; /* Flags for soft/hard... */
47 struct mount *nm_mountp; /* Vfs structure for this filesystem */

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

121 struct mbuf *nam,
122 struct vnode **vpp,
123 int *exflagsp,
124 struct ucred **credanonp));
125int nfs_vptofh __P((
126 struct vnode *vp,
127 struct fid *fhp));
128int nfs_init __P(());
43/*
44 * Mount structure.
45 * One allocated on every NFS mount.
46 * Holds NFS specific information for mount.
47 */
48struct nfsmount {
49 int nm_flag; /* Flags for soft/hard... */
50 struct mount *nm_mountp; /* Vfs structure for this filesystem */

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

124 struct mbuf *nam,
125 struct vnode **vpp,
126 int *exflagsp,
127 struct ucred **credanonp));
128int nfs_vptofh __P((
129 struct vnode *vp,
130 struct fid *fhp));
131int nfs_init __P(());
132
133#endif