Deleted Added
full compact
nfsnode.h (1979) nfsnode.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 * @(#)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.3 1994/08/08 17:30:55 davidg Exp $
37 * $Id: nfsnode.h,v 1.4 1994/08/09 15:10:14 davidg Exp $
38 */
39
38 */
39
40#ifndef _NFS_NFSNODE_H_
41#define _NFS_NFSNODE_H_
42
40/*
41 * Silly rename structure that hangs off the nfsnode until the name
42 * can be removed by nfs_inactive()
43 */
44struct sillyrename {
45 struct ucred *s_cred;
46 struct vnode *s_dvp;
47 long s_namlen;

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

160int nfs_valloc __P((struct vop_valloc_args *));
161#define nfs_reallocblks \
162 ((int (*) __P((struct vop_reallocblks_args *)))eopnotsupp)
163int nfs_vfree __P((struct vop_vfree_args *));
164int nfs_truncate __P((struct vop_truncate_args *));
165int nfs_update __P((struct vop_update_args *));
166int nfs_bwrite __P((struct vop_bwrite_args *));
167#endif /* KERNEL */
43/*
44 * Silly rename structure that hangs off the nfsnode until the name
45 * can be removed by nfs_inactive()
46 */
47struct sillyrename {
48 struct ucred *s_cred;
49 struct vnode *s_dvp;
50 long s_namlen;

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

163int nfs_valloc __P((struct vop_valloc_args *));
164#define nfs_reallocblks \
165 ((int (*) __P((struct vop_reallocblks_args *)))eopnotsupp)
166int nfs_vfree __P((struct vop_vfree_args *));
167int nfs_truncate __P((struct vop_truncate_args *));
168int nfs_update __P((struct vop_update_args *));
169int nfs_bwrite __P((struct vop_bwrite_args *));
170#endif /* KERNEL */
171
172#endif