Deleted Added
full compact
vnode_if.awk (9842) vnode_if.awk (10551)
1#!/bin/sh -
2#
3# Copyright (c) 1992, 1993
4# The Regents of the University of California. All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

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

27# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32# SUCH DAMAGE.
33#
34# @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
1#!/bin/sh -
2#
3# Copyright (c) 1992, 1993
4# The Regents of the University of California. All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

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

27# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32# SUCH DAMAGE.
33#
34# @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
35# $Id: vnode_if.sh,v 1.3 1995/07/07 13:41:27 davidg Exp $
35# $Id: vnode_if.sh,v 1.4 1995/08/01 18:50:40 davidg Exp $
36#
37
38# Script to produce VFS front-end sugar.
39#
40# usage: vnode_if.sh srcfile
41# (where srcfile is currently /sys/kern/vnode_if.src)
42#
43# These awk scripts are not particularly well written, specifically they

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

66/*
67 * This file is produced automatically.
68 * Do not modify anything in here by hand.
69 *
70 * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
71 */
72
73extern struct vnodeop_desc vop_default_desc;
36#
37
38# Script to produce VFS front-end sugar.
39#
40# usage: vnode_if.sh srcfile
41# (where srcfile is currently /sys/kern/vnode_if.src)
42#
43# These awk scripts are not particularly well written, specifically they

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

66/*
67 * This file is produced automatically.
68 * Do not modify anything in here by hand.
69 *
70 * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
71 */
72
73extern struct vnodeop_desc vop_default_desc;
74
75#include <vm/vm.h>
76#include <vm/vm_page.h>
74END_OF_LEADING_COMMENT
75
76# Awk script to take vnode_if.src and turn it into vnode_if.h.
77$AWK '
78 NF == 0 || $0 ~ "^#" {
79 next;
80 }
81 {

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

161 * Do not modify anything in here by hand.
162 *
163 * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
164 */
165
166#include <sys/param.h>
167#include <sys/mount.h>
168#include <sys/vnode.h>
77END_OF_LEADING_COMMENT
78
79# Awk script to take vnode_if.src and turn it into vnode_if.h.
80$AWK '
81 NF == 0 || $0 ~ "^#" {
82 next;
83 }
84 {

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

164 * Do not modify anything in here by hand.
165 *
166 * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93
167 */
168
169#include <sys/param.h>
170#include <sys/mount.h>
171#include <sys/vnode.h>
172#include <vm/vm.h>
173#include <vm/vm_page.h>
169
170struct vnodeop_desc vop_default_desc = {
171 0,
172 "default",
173 0,
174 NULL,
175 VDESC_NO_OFFSET,
176 VDESC_NO_OFFSET,

--- 258 unchanged lines hidden ---
174
175struct vnodeop_desc vop_default_desc = {
176 0,
177 "default",
178 0,
179 NULL,
180 VDESC_NO_OFFSET,
181 VDESC_NO_OFFSET,

--- 258 unchanged lines hidden ---