Deleted Added
full compact
nfsnode.h (9336) nfsnode.h (9759)
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 * @(#)nfsnode.h 8.4 (Berkeley) 2/13/94
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 * @(#)nfsnode.h 8.4 (Berkeley) 2/13/94
37 * $Id: nfsnode.h,v 1.9 1995/03/16 18:15:42 bde Exp $
37 * $Id: nfsnode.h,v 1.10 1995/06/27 11:06:57 dfr Exp $
38 */
39
40#ifndef _NFS_NFSNODE_H_
41#define _NFS_NFSNODE_H_
42
43#ifndef _NFS_NFS_H_
44#include <nfs/nfs.h>
45#endif

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

143 * Convert between nfsnode pointers and vnode pointers
144 */
145#define VTONFS(vp) ((struct nfsnode *)(vp)->v_data)
146#define NFSTOV(np) ((struct vnode *)(np)->n_vnode)
147
148/*
149 * Queue head for nfsiod's
150 */
38 */
39
40#ifndef _NFS_NFSNODE_H_
41#define _NFS_NFSNODE_H_
42
43#ifndef _NFS_NFS_H_
44#include <nfs/nfs.h>
45#endif

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

143 * Convert between nfsnode pointers and vnode pointers
144 */
145#define VTONFS(vp) ((struct nfsnode *)(vp)->v_data)
146#define NFSTOV(np) ((struct vnode *)(np)->n_vnode)
147
148/*
149 * Queue head for nfsiod's
150 */
151TAILQ_HEAD(, buf) nfs_bufq;
151extern TAILQ_HEAD(nfs_bufq, buf) nfs_bufq;
152
153#if defined(KERNEL) || defined(_KERNEL)
154extern int (**fifo_nfsv2nodeop_p)();
155extern int (**nfsv2_vnodeop_p)();
156extern int (**spec_nfsv2nodeop_p)();
157
158/*
159 * Prototypes for NFS vnode operations

--- 82 unchanged lines hidden ---
152
153#if defined(KERNEL) || defined(_KERNEL)
154extern int (**fifo_nfsv2nodeop_p)();
155extern int (**nfsv2_vnodeop_p)();
156extern int (**spec_nfsv2nodeop_p)();
157
158/*
159 * Prototypes for NFS vnode operations

--- 82 unchanged lines hidden ---