Deleted Added
full compact
vnode_if.src (176590) vnode_if.src (177633)
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

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

22# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27# SUCH DAMAGE.
28#
29# @(#)vnode_if.src 8.12 (Berkeley) 5/14/95
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

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

22# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27# SUCH DAMAGE.
28#
29# @(#)vnode_if.src 8.12 (Berkeley) 5/14/95
30# $FreeBSD: head/sys/kern/vnode_if.src 176590 2008-02-26 12:16:35Z kib $
30# $FreeBSD: head/sys/kern/vnode_if.src 177633 2008-03-26 15:23:12Z dfr $
31#
32
33#
34# Above each of the vop descriptors in lines starting with %%
35# is a specification of the locking protocol used by each vop call.
36# The first column is the name of the variable, the remaining three
37# columns are in, out and error respectively. The "in" column defines
38# the lock state on input, the "out" column defines the state on succesful

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

432 IN struct vnode *vp;
433 IN void *id;
434 IN int op;
435 IN struct flock *fl;
436 IN int flags;
437};
438
439
31#
32
33#
34# Above each of the vop descriptors in lines starting with %%
35# is a specification of the locking protocol used by each vop call.
36# The first column is the name of the variable, the remaining three
37# columns are in, out and error respectively. The "in" column defines
38# the lock state on input, the "out" column defines the state on succesful

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

432 IN struct vnode *vp;
433 IN void *id;
434 IN int op;
435 IN struct flock *fl;
436 IN int flags;
437};
438
439
440%% advlockasync vp U U U
441
442vop_advlockasync {
443 IN struct vnode *vp;
444 IN void *id;
445 IN int op;
446 IN struct flock *fl;
447 IN int flags;
448 IN struct task *task;
449 INOUT void **cookiep;
450};
451
452
440%% reallocblks vp E E E
441
442vop_reallocblks {
443 IN struct vnode *vp;
444 IN struct cluster_save *buflist;
445};
446
447

--- 139 unchanged lines hidden ---
453%% reallocblks vp E E E
454
455vop_reallocblks {
456 IN struct vnode *vp;
457 IN struct cluster_save *buflist;
458};
459
460

--- 139 unchanged lines hidden ---