Deleted Added
full compact
vnode_if.src (193762) vnode_if.src (194019)
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 193762 2009-06-08 21:23:54Z ps $
30# $FreeBSD: head/sys/kern/vnode_if.src 194019 2009-06-11 17:06:45Z ps $
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

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

242%% revoke vp L L L
243
244vop_revoke {
245 IN struct vnode *vp;
246 IN int flags;
247};
248
249
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

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

242%% revoke vp L L L
243
244vop_revoke {
245 IN struct vnode *vp;
246 IN int flags;
247};
248
249
250%% fsync vp E E E
250%% fsync vp L L L
251
252vop_fsync {
253 IN struct vnode *vp;
254 IN int waitfor;
255 IN struct thread *td;
256};
257
258

--- 354 unchanged lines hidden ---
251
252vop_fsync {
253 IN struct vnode *vp;
254 IN int waitfor;
255 IN struct thread *td;
256};
257
258

--- 354 unchanged lines hidden ---