Deleted Added
full compact
vnode_if.src (1817) vnode_if.src (3167)
1#
2# Copyright (c) 1992, 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# @(#)vnode_if.src 8.3 (Berkeley) 2/3/94
1#
2# Copyright (c) 1992, 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# @(#)vnode_if.src 8.3 (Berkeley) 2/3/94
34# $Id$
34# $Id: vnode_if.src,v 1.2 1994/08/02 07:43:37 davidg Exp $
35#
36vop_lookup {
37 IN struct vnode *dvp;
38 INOUT struct vnode **vpp;
39 IN struct componentname *cnp;
40};
41
42vop_create {

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

183 IN struct vattr *vap;
184 IN char *target;
185};
186
187vop_readdir {
188 IN struct vnode *vp;
189 INOUT struct uio *uio;
190 IN struct ucred *cred;
35#
36vop_lookup {
37 IN struct vnode *dvp;
38 INOUT struct vnode **vpp;
39 IN struct componentname *cnp;
40};
41
42vop_create {

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

183 IN struct vattr *vap;
184 IN char *target;
185};
186
187vop_readdir {
188 IN struct vnode *vp;
189 INOUT struct uio *uio;
190 IN struct ucred *cred;
191 INOUT int *eofflag;
192 INOUT int *ncookies;
193 INOUT u_int **cookies;
191};
192
193vop_readlink {
194 IN struct vnode *vp;
195 INOUT struct uio *uio;
196 IN struct ucred *cred;
197};
198

--- 99 unchanged lines hidden ---
194};
195
196vop_readlink {
197 IN struct vnode *vp;
198 INOUT struct uio *uio;
199 IN struct ucred *cred;
200};
201

--- 99 unchanged lines hidden ---