Home | History | Annotate | Line # | Download | only in kern
vnode_if.sh revision 1.48.10.2
      1        1.1   mycroft #!/bin/sh -
      2        1.9       cgd copyright="\
      3        1.2       gwr /*
      4       1.16      fvdl  * Copyright (c) 1992, 1993, 1994, 1995
      5        1.2       gwr  *	The Regents of the University of California.  All rights reserved.
      6        1.2       gwr  *
      7        1.2       gwr  * Redistribution and use in source and binary forms, with or without
      8        1.2       gwr  * modification, are permitted provided that the following conditions
      9        1.2       gwr  * are met:
     10        1.2       gwr  * 1. Redistributions of source code must retain the above copyright
     11        1.2       gwr  *    notice, this list of conditions and the following disclaimer.
     12        1.2       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.2       gwr  *    notice, this list of conditions and the following disclaimer in the
     14        1.2       gwr  *    documentation and/or other materials provided with the distribution.
     15       1.33       agc  * 3. Neither the name of the University nor the names of its contributors
     16        1.2       gwr  *    may be used to endorse or promote products derived from this software
     17        1.2       gwr  *    without specific prior written permission.
     18        1.2       gwr  *
     19       1.18  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS \`\`AS IS'' AND
     20        1.2       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21        1.2       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22        1.2       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23        1.2       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24        1.2       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25        1.2       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26        1.2       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27        1.2       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28        1.2       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29        1.2       gwr  * SUCH DAMAGE.
     30        1.2       gwr  */
     31        1.9       cgd "
     32  1.48.10.2      yamt SCRIPT_ID='$NetBSD: vnode_if.sh,v 1.48.10.2 2010/03/11 15:04:21 yamt Exp $'
     33        1.1   mycroft 
     34        1.1   mycroft # Script to produce VFS front-end sugar.
     35        1.1   mycroft #
     36        1.1   mycroft # usage: vnode_if.sh srcfile
     37        1.1   mycroft #	(where srcfile is currently /sys/kern/vnode_if.src)
     38        1.1   mycroft #
     39        1.1   mycroft 
     40        1.1   mycroft if [ $# -ne 1 ] ; then
     41        1.1   mycroft 	echo 'usage: vnode_if.sh srcfile'
     42        1.1   mycroft 	exit 1
     43        1.1   mycroft fi
     44        1.2       gwr 
     45        1.9       cgd # Name and revision of the source file.
     46        1.2       gwr src=$1
     47        1.9       cgd SRC_ID=`head -1 $src | sed -e 's/.*\$\(.*\)\$.*/\1/'`
     48        1.1   mycroft 
     49        1.1   mycroft # Names of the created files.
     50        1.2       gwr out_c=vnode_if.c
     51  1.48.10.1      yamt out_rumpc=../rump/librump/rumpvfs/rumpvnode_if.c
     52        1.9       cgd out_h=../sys/vnode_if.h
     53  1.48.10.1      yamt out_rumph=../rump/include/rump/rumpvnode_if.h
     54        1.2       gwr 
     55  1.48.10.2      yamt # generate VNODE_LOCKDEBUG checks (not fully functional)
     56  1.48.10.2      yamt lockdebug=0
     57  1.48.10.2      yamt 
     58        1.2       gwr # Awk program (must support nawk extensions)
     59        1.2       gwr # Use "awk" at Berkeley, "nawk" or "gawk" elsewhere.
     60        1.2       gwr awk=${AWK:-awk}
     61        1.2       gwr 
     62        1.2       gwr # Does this awk have a "toupper" function? (i.e. is it GNU awk)
     63        1.2       gwr isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null`
     64        1.2       gwr 
     65        1.2       gwr # If this awk does not define "toupper" then define our own.
     66        1.2       gwr if [ "$isgawk" = TRUE ] ; then
     67        1.2       gwr 	# GNU awk provides it.
     68        1.2       gwr 	toupper=
     69        1.2       gwr else
     70        1.2       gwr 	# Provide our own toupper()
     71        1.2       gwr 	toupper='
     72        1.2       gwr function toupper(str) {
     73        1.2       gwr 	_toupper_cmd = "echo "str" |tr a-z A-Z"
     74        1.2       gwr 	_toupper_cmd | getline _toupper_str;
     75        1.2       gwr 	close(_toupper_cmd);
     76        1.2       gwr 	return _toupper_str;
     77        1.2       gwr }'
     78        1.2       gwr fi
     79        1.1   mycroft 
     80        1.2       gwr #
     81        1.2       gwr # This is the common part of all awk programs that read $src
     82        1.2       gwr # This parses the input for one function into the arrays:
     83        1.2       gwr #	argdir, argtype, argname, willrele
     84        1.2       gwr # and calls "doit()" to generate output for the function.
     85        1.2       gwr #
     86        1.2       gwr # Input to this parser is pre-processed slightly by sed
     87        1.2       gwr # so this awk parser doesn't have to work so hard.  The
     88        1.2       gwr # changes done by the sed pre-processing step are:
     89        1.2       gwr #	insert a space beween * and pointer name
     90        1.2       gwr #	replace semicolons with spaces
     91        1.2       gwr #
     92        1.2       gwr sed_prep='s:\*\([^\*/]\):\* \1:g
     93        1.2       gwr s/;/ /'
     94        1.2       gwr awk_parser='
     95        1.2       gwr # Comment line
     96        1.2       gwr /^#/	{ next; }
     97        1.2       gwr # First line of description
     98        1.2       gwr /^vop_/	{
     99  1.48.10.1      yamt 	name=rump $1;
    100        1.2       gwr 	argc=0;
    101       1.44     pooka 	willmake=-1;
    102        1.2       gwr 	next;
    103        1.2       gwr }
    104        1.2       gwr # Last line of description
    105        1.2       gwr /^}/	{
    106        1.2       gwr 	doit();
    107        1.2       gwr 	next;
    108        1.2       gwr }
    109        1.2       gwr # Middle lines of description
    110        1.2       gwr {
    111        1.2       gwr 	argdir[argc] = $1; i=2;
    112       1.35   thorpej 
    113       1.35   thorpej 	if ($2 == "LOCKED=YES") {
    114       1.35   thorpej 		lockstate[argc] = 1;
    115       1.35   thorpej 		i++;
    116       1.35   thorpej 	} else if ($2 == "LOCKED=NO") {
    117       1.35   thorpej 		lockstate[argc] = 0;
    118       1.35   thorpej 		i++;
    119       1.35   thorpej 	} else
    120       1.35   thorpej 		lockstate[argc] = -1;
    121       1.35   thorpej 
    122       1.35   thorpej 	if ($2 == "WILLRELE" ||
    123       1.35   thorpej 	    $3 == "WILLRELE") {
    124        1.2       gwr 		willrele[argc] = 1;
    125        1.2       gwr 		i++;
    126       1.35   thorpej 	} else if ($2 == "WILLUNLOCK" ||
    127       1.35   thorpej 		   $3 == "WILLUNLOCK") {
    128       1.19  wrstuden 		willrele[argc] = 2;
    129       1.19  wrstuden 		i++;
    130       1.35   thorpej 	} else if ($2 == "WILLPUT" ||
    131       1.35   thorpej 		   $3 == "WILLPUT") {
    132       1.19  wrstuden 		willrele[argc] = 3;
    133       1.19  wrstuden 		i++;
    134        1.2       gwr 	} else
    135        1.2       gwr 		willrele[argc] = 0;
    136       1.44     pooka 
    137       1.44     pooka 	if ($2 == "WILLMAKE") {
    138       1.44     pooka 		willmake=argc;
    139       1.44     pooka 		i++;
    140       1.44     pooka 	}
    141       1.44     pooka 
    142  1.48.10.1      yamt 	# XXX: replace non-portable types for rump.  We should really
    143  1.48.10.1      yamt 	# nuke the types from the kernel, but that is a battle for
    144  1.48.10.1      yamt 	# another day.
    145  1.48.10.1      yamt 	at = $i;
    146  1.48.10.1      yamt 	if (length(rump) != 0) {
    147  1.48.10.1      yamt 		if (at == "vm_prot_t")
    148  1.48.10.1      yamt 			at = "int";
    149  1.48.10.1      yamt 		if (at == "voff_t")
    150  1.48.10.1      yamt 			at = "off_t";
    151  1.48.10.1      yamt 	}
    152  1.48.10.1      yamt 	argtype[argc] = at;
    153  1.48.10.1      yamt 	i++;
    154        1.2       gwr 	while (i < NF) {
    155        1.7       cgd 		argtype[argc] = argtype[argc]" "$i;
    156        1.2       gwr 		i++;
    157        1.2       gwr 	}
    158        1.2       gwr 	argname[argc] = $i;
    159        1.2       gwr 	argc++;
    160        1.2       gwr 	next;
    161        1.2       gwr }
    162        1.2       gwr '
    163        1.1   mycroft 
    164       1.15   thorpej # This is put before the copyright on each generated file.
    165        1.9       cgd warning="\
    166       1.15   thorpej /*	@NetBSD@	*/
    167       1.15   thorpej 
    168        1.1   mycroft /*
    169       1.37     perry  * Warning: DO NOT EDIT! This file is automatically generated!
    170        1.2       gwr  * (Modifications made here may easily be lost!)
    171        1.1   mycroft  *
    172        1.9       cgd  * Created from the file:
    173        1.9       cgd  *	${SRC_ID}
    174        1.9       cgd  * by the script:
    175        1.2       gwr  *	${SCRIPT_ID}
    176        1.1   mycroft  */
    177       1.36     perry "
    178        1.2       gwr 
    179        1.7       cgd # This is to satisfy McKusick (get rid of evil spaces 8^)
    180        1.7       cgd anal_retentive='s:\([^/]\*\) :\1:g'
    181        1.2       gwr 
    182  1.48.10.1      yamt do_hfile () {
    183        1.2       gwr #
    184        1.2       gwr # Redirect stdout to the H file.
    185        1.2       gwr #
    186  1.48.10.1      yamt echo "$0: Creating $1" 1>&2
    187  1.48.10.1      yamt exec > $1
    188  1.48.10.1      yamt rump=$2
    189        1.1   mycroft 
    190        1.2       gwr # Begin stuff
    191  1.48.10.1      yamt if [ -z "${rump}" ]; then
    192  1.48.10.1      yamt 	SYS='SYS_'
    193  1.48.10.1      yamt else
    194  1.48.10.1      yamt 	SYS='RUMP_RUMP'
    195  1.48.10.1      yamt fi
    196       1.38     perry echo -n "$warning" | sed -e 's/\$//g;s/@/\$/g;s/ $//'
    197        1.9       cgd echo ""
    198        1.9       cgd echo -n "$copyright"
    199       1.10     mikel echo ''
    200  1.48.10.1      yamt echo "#ifndef _${SYS}VNODE_IF_H_"
    201  1.48.10.1      yamt echo "#define _${SYS}VNODE_IF_H_"
    202  1.48.10.2      yamt if [ ${lockdebug} -ne 0 ] ; then
    203  1.48.10.2      yamt 	echo ''
    204  1.48.10.2      yamt 	echo '#ifdef _KERNEL_OPT'
    205  1.48.10.2      yamt 	echo '#include "opt_vnode_lockdebug.h"'
    206  1.48.10.2      yamt 	echo '#endif /* _KERNEL_OPT */'
    207  1.48.10.2      yamt fi
    208  1.48.10.1      yamt echo "
    209  1.48.10.1      yamt extern const struct vnodeop_desc ${rump}vop_default_desc;
    210  1.48.10.1      yamt "
    211        1.1   mycroft 
    212        1.2       gwr # Body stuff
    213        1.2       gwr # This awk program needs toupper() so define it if necessary.
    214  1.48.10.1      yamt sed -e "$sed_prep" $src | $awk -v rump=${rump} "$toupper"'
    215        1.2       gwr function doit() {
    216        1.2       gwr 	# Declare arg struct, descriptor.
    217       1.43     pooka 	printf("\n#define %s_DESCOFFSET %d\n", toupper(name), vop_offset++);
    218       1.43     pooka 	printf("struct %s_args {\n", name);
    219       1.28  jdolecek 	printf("\tconst struct vnodeop_desc * a_desc;\n");
    220        1.2       gwr 	for (i=0; i<argc; i++) {
    221        1.7       cgd 		printf("\t%s a_%s;\n", argtype[i], argname[i]);
    222        1.1   mycroft 	}
    223        1.2       gwr 	printf("};\n");
    224       1.28  jdolecek 	printf("extern const struct vnodeop_desc %s_desc;\n", name);
    225        1.8    chopps 	# Prototype it.
    226       1.20   thorpej 	protoarg = sprintf("int %s(", toupper(name));
    227        1.8    chopps 	protolen = length(protoarg);
    228        1.8    chopps 	printf("%s", protoarg);
    229        1.8    chopps 	for (i=0; i<argc; i++) {
    230        1.8    chopps 		protoarg = sprintf("%s", argtype[i]);
    231        1.8    chopps 		if (i < (argc-1)) protoarg = (protoarg ", ");
    232        1.8    chopps 		arglen = length(protoarg);
    233        1.8    chopps 		if ((protolen + arglen) > 77) {
    234        1.8    chopps 			protoarg = ("\n    " protoarg);
    235        1.8    chopps 			arglen += 4;
    236        1.8    chopps 			protolen = 0;
    237        1.8    chopps 		}
    238        1.8    chopps 		printf("%s", protoarg);
    239        1.8    chopps 		protolen += arglen;
    240        1.8    chopps 	}
    241       1.39   thorpej 	printf(");\n");
    242        1.2       gwr }
    243        1.2       gwr BEGIN	{
    244        1.2       gwr 	arg0special="";
    245       1.43     pooka 	vop_offset = 1; # start at 1, to count the 'default' op
    246       1.43     pooka 
    247  1.48.10.1      yamt 	printf("\n/* Special cases: */\nstruct buf;\n");
    248       1.48        ad 	printf("#ifndef _KERNEL\n#include <stdbool.h>\n#endif\n\n");
    249       1.48        ad 
    250        1.2       gwr 	argc=1;
    251        1.2       gwr 	argtype[0]="struct buf *";
    252        1.2       gwr 	argname[0]="bp";
    253       1.35   thorpej 	lockstate[0] = -1;
    254        1.2       gwr 	arg0special="->b_vp";
    255  1.48.10.1      yamt 	name=rump "vop_bwrite";
    256        1.2       gwr 	doit();
    257       1.43     pooka 	printf("/* End of special cases */\n");
    258       1.43     pooka }
    259       1.43     pooka END	{
    260       1.43     pooka 	printf("\n#define VNODE_OPS_COUNT\t%d\n", vop_offset);
    261        1.2       gwr }
    262        1.7       cgd '"$awk_parser" | sed -e "$anal_retentive"
    263        1.1   mycroft 
    264        1.2       gwr # End stuff
    265        1.2       gwr echo '
    266        1.2       gwr /* End of special cases. */'
    267       1.10     mikel echo ''
    268  1.48.10.1      yamt echo "#endif /* !_${SYS}VNODE_IF_H_ */"
    269  1.48.10.1      yamt }
    270  1.48.10.1      yamt do_hfile $out_h ''
    271  1.48.10.1      yamt do_hfile $out_rumph 'rump_'
    272        1.1   mycroft 
    273  1.48.10.1      yamt do_cfile () {
    274        1.2       gwr #
    275        1.2       gwr # Redirect stdout to the C file.
    276        1.2       gwr #
    277  1.48.10.1      yamt echo "$0: Creating $1" 1>&2
    278  1.48.10.1      yamt exec > $1
    279  1.48.10.1      yamt rump=$2
    280        1.1   mycroft 
    281        1.2       gwr # Begin stuff
    282       1.38     perry echo -n "$warning" | sed -e 's/\$//g;s/@/\$/g;s/ $//'
    283        1.9       cgd echo ""
    284        1.9       cgd echo -n "$copyright"
    285       1.30     lukem echo "
    286       1.30     lukem #include <sys/cdefs.h>
    287  1.48.10.2      yamt __KERNEL_RCSID(0, \"\$NetBSD\$\");"
    288  1.48.10.2      yamt 
    289  1.48.10.2      yamt [ ${lockdebug} -ne 0 ] && echo && echo '#include "opt_vnode_lockdebug.h"'
    290       1.30     lukem 
    291        1.2       gwr echo '
    292        1.1   mycroft #include <sys/param.h>
    293        1.1   mycroft #include <sys/mount.h>
    294       1.20   thorpej #include <sys/buf.h>
    295        1.1   mycroft #include <sys/vnode.h>
    296  1.48.10.1      yamt #include <sys/lock.h>'
    297  1.48.10.2      yamt [ ! -z "${rump}" ] && echo '#include <rump/rumpvnode_if.h>'		\
    298  1.48.10.2      yamt 	&& echo '#include "rump_private.h"'
    299        1.1   mycroft 
    300  1.48.10.1      yamt echo "
    301  1.48.10.1      yamt const struct vnodeop_desc ${rump}vop_default_desc = {"
    302  1.48.10.1      yamt echo '	0,
    303        1.1   mycroft 	"default",
    304        1.1   mycroft 	0,
    305        1.1   mycroft 	NULL,
    306        1.1   mycroft 	VDESC_NO_OFFSET,
    307        1.1   mycroft 	VDESC_NO_OFFSET,
    308        1.1   mycroft 	VDESC_NO_OFFSET,
    309        1.1   mycroft 	NULL,
    310        1.1   mycroft };
    311        1.2       gwr '
    312        1.1   mycroft 
    313        1.2       gwr # Body stuff
    314  1.48.10.2      yamt sed -e "$sed_prep" $src | $awk -v rump=${rump} -v lockdebug=${lockdebug} '
    315        1.2       gwr function do_offset(typematch) {
    316        1.2       gwr 	for (i=0; i<argc; i++) {
    317        1.2       gwr 		if (argtype[i] == typematch) {
    318        1.2       gwr 			printf("\tVOPARG_OFFSETOF(struct %s_args, a_%s),\n",
    319        1.2       gwr 				name, argname[i]);
    320        1.2       gwr 			return i;
    321        1.2       gwr 		};
    322        1.2       gwr 	};
    323        1.2       gwr 	print "\tVDESC_NO_OFFSET,";
    324        1.2       gwr 	return -1;
    325        1.2       gwr }
    326        1.1   mycroft 
    327        1.2       gwr function doit() {
    328        1.2       gwr 	# Define offsets array
    329       1.26  jdolecek 	printf("\nconst int %s_vp_offsets[] = {\n", name);
    330        1.2       gwr 	for (i=0; i<argc; i++) {
    331        1.2       gwr 		if (argtype[i] == "struct vnode *") {
    332        1.2       gwr 			printf ("\tVOPARG_OFFSETOF(struct %s_args,a_%s),\n",
    333        1.2       gwr 				name, argname[i]);
    334        1.2       gwr 		}
    335        1.1   mycroft 	}
    336        1.2       gwr 	print "\tVDESC_NO_OFFSET";
    337        1.2       gwr 	print "};";
    338        1.2       gwr 	# Define F_desc
    339       1.28  jdolecek 	printf("const struct vnodeop_desc %s_desc = {\n", name);
    340        1.2       gwr 	# offset
    341       1.43     pooka 	printf ("\t%s_DESCOFFSET,\n", toupper(name));
    342        1.2       gwr 	# printable name
    343        1.2       gwr 	printf ("\t\"%s\",\n", name);
    344        1.2       gwr 	# flags
    345        1.2       gwr 	printf("\t0");
    346        1.2       gwr 	vpnum = 0;
    347        1.2       gwr 	for (i=0; i<argc; i++) {
    348        1.2       gwr 		if (willrele[i]) {
    349       1.19  wrstuden 			if (willrele[i] == 2) {
    350       1.19  wrstuden 				word = "UNLOCK";
    351       1.19  wrstuden 			} else if (willrele[i] == 3) {
    352       1.19  wrstuden 				word = "PUT";
    353       1.19  wrstuden 			} else {
    354       1.19  wrstuden 				word = "RELE";
    355       1.19  wrstuden 			}
    356        1.2       gwr 			if (argdir[i] ~ /OUT/) {
    357       1.19  wrstuden 				printf(" | VDESC_VPP_WILL%s", word);
    358        1.1   mycroft 			} else {
    359       1.19  wrstuden 				printf(" | VDESC_VP%s_WILL%s", vpnum, word);
    360        1.1   mycroft 			};
    361        1.2       gwr 			vpnum++;
    362        1.2       gwr 		}
    363        1.1   mycroft 	}
    364        1.2       gwr 	print ",";
    365        1.2       gwr 	# vp offsets
    366        1.2       gwr 	printf ("\t%s_vp_offsets,\n", name);
    367        1.2       gwr 	# vpp (if any)
    368        1.2       gwr 	do_offset("struct vnode **");
    369        1.2       gwr 	# cred (if any)
    370       1.42      elad 	do_offset("kauth_cred_t");
    371        1.2       gwr 	# componentname
    372        1.2       gwr 	do_offset("struct componentname *");
    373        1.2       gwr 	# transport layer information
    374        1.2       gwr 	printf ("\tNULL,\n};\n");
    375       1.20   thorpej 
    376       1.20   thorpej 	# Define function.
    377       1.20   thorpej 	printf("int\n%s(", toupper(name));
    378       1.20   thorpej 	for (i=0; i<argc; i++) {
    379       1.40   thorpej 		printf("%s %s", argtype[i], argname[i]);
    380       1.40   thorpej 		if (i < (argc-1)) printf(",\n    ");
    381       1.20   thorpej 	}
    382       1.20   thorpej 	printf(")\n");
    383       1.46        ad 	printf("{\n\tint error;\n\tbool mpsafe;\n\tstruct %s_args a;\n", name);
    384  1.48.10.2      yamt 	if (lockdebug) {
    385  1.48.10.2      yamt 		printf("#ifdef VNODE_LOCKDEBUG\n");
    386  1.48.10.2      yamt 		for (i=0; i<argc; i++) {
    387  1.48.10.2      yamt 			if (lockstate[i] != -1)
    388  1.48.10.2      yamt 				printf("\tint islocked_%s;\n", argname[i]);
    389  1.48.10.2      yamt 		}
    390  1.48.10.2      yamt 		printf("#endif\n");
    391       1.35   thorpej 	}
    392       1.20   thorpej 	printf("\ta.a_desc = VDESC(%s);\n", name);
    393       1.20   thorpej 	for (i=0; i<argc; i++) {
    394       1.20   thorpej 		printf("\ta.a_%s = %s;\n", argname[i], argname[i]);
    395  1.48.10.2      yamt 		if (lockdebug && lockstate[i] != -1) {
    396       1.35   thorpej 			printf("#ifdef VNODE_LOCKDEBUG\n");
    397       1.45        ad 			printf("\tislocked_%s = (%s->v_vflag & VV_LOCKSWORK) ? (VOP_ISLOCKED(%s) == LK_EXCLUSIVE) : %d;\n",
    398       1.35   thorpej 			    argname[i], argname[i], argname[i], lockstate[i]);
    399       1.35   thorpej 			printf("\tif (islocked_%s != %d)\n", argname[i],
    400       1.35   thorpej 			    lockstate[i]);
    401       1.35   thorpej 			printf("\t\tpanic(\"%s: %s: locked %%d, expected %%d\", islocked_%s, %d);\n", name, argname[i], argname[i], lockstate[i]);
    402       1.35   thorpej 			printf("#endif\n");
    403       1.35   thorpej 		}
    404       1.20   thorpej 	}
    405       1.46        ad 	printf("\tmpsafe = (%s%s->v_vflag & VV_MPSAFE);\n", argname[0], arg0special);
    406  1.48.10.2      yamt 	if (rump)
    407  1.48.10.2      yamt 		printf("\trump_schedule();\n");
    408       1.46        ad 	printf("\tif (!mpsafe) { KERNEL_LOCK(1, curlwp); }\n");
    409       1.46        ad 	printf("\terror = (VCALL(%s%s, VOFFSET(%s), &a));\n",
    410       1.20   thorpej 		argname[0], arg0special, name);
    411       1.46        ad 	printf("\tif (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }\n");
    412  1.48.10.2      yamt 	if (rump)
    413  1.48.10.2      yamt 		printf("\trump_unschedule();\n");
    414       1.44     pooka 	if (willmake != -1) {
    415       1.44     pooka 		printf("#ifdef DIAGNOSTIC\n");
    416       1.46        ad 		printf("\tif (error == 0)\n"				\
    417       1.44     pooka 		    "\t\tKASSERT((*%s)->v_size != VSIZENOTSET\n"	\
    418       1.44     pooka 		    "\t\t    && (*%s)->v_writesize != VSIZENOTSET);\n",
    419       1.44     pooka 		    argname[willmake], argname[willmake]);
    420       1.44     pooka 		printf("#endif /* DIAGNOSTIC */\n");
    421       1.44     pooka 	}
    422       1.46        ad 	printf("\treturn error;\n}\n");
    423       1.20   thorpej }
    424       1.20   thorpej BEGIN	{
    425        1.2       gwr 	printf("\n/* Special cases: */\n");
    426       1.28  jdolecek 	# start from 1 (vop_default is at 0)
    427        1.2       gwr 	argc=1;
    428       1.44     pooka 	willmake=-1;
    429        1.2       gwr 	argdir[0]="IN";
    430        1.2       gwr 	argtype[0]="struct buf *";
    431        1.2       gwr 	argname[0]="bp";
    432       1.35   thorpej 	lockstate[0] = -1;
    433       1.20   thorpej 	arg0special="->b_vp";
    434        1.2       gwr 	willrele[0]=0;
    435  1.48.10.1      yamt 	name=rump "vop_bwrite";
    436        1.2       gwr 	doit();
    437       1.28  jdolecek 	printf("\n/* End of special cases */\n");
    438       1.28  jdolecek 
    439       1.28  jdolecek 	arg0special="";
    440        1.1   mycroft }
    441        1.7       cgd '"$awk_parser" | sed -e "$anal_retentive"
    442        1.1   mycroft 
    443        1.2       gwr # End stuff
    444        1.2       gwr echo '
    445        1.2       gwr /* End of special cases. */'
    446        1.1   mycroft 
    447        1.2       gwr # Add the vfs_op_descs array to the C file.
    448        1.2       gwr # Begin stuff
    449  1.48.10.1      yamt echo "
    450  1.48.10.1      yamt const struct vnodeop_desc * const ${rump}vfs_op_descs[] = {
    451  1.48.10.1      yamt 	&${rump}vop_default_desc,	/* MUST BE FIRST */
    452  1.48.10.1      yamt 	&${rump}vop_bwrite_desc,	/* XXX: SPECIAL CASE */
    453  1.48.10.1      yamt "
    454        1.2       gwr 
    455        1.2       gwr # Body stuff
    456  1.48.10.1      yamt sed -e "$sed_prep" $src | $awk -v rump=${rump} '
    457        1.2       gwr function doit() {
    458        1.2       gwr 	printf("\t&%s_desc,\n", name);
    459        1.1   mycroft }
    460        1.2       gwr '"$awk_parser"
    461        1.1   mycroft 
    462        1.2       gwr # End stuff
    463        1.2       gwr echo '	NULL
    464        1.1   mycroft };
    465        1.2       gwr '
    466  1.48.10.1      yamt }
    467  1.48.10.1      yamt do_cfile $out_c ''
    468  1.48.10.1      yamt do_cfile $out_rumpc 'rump_'
    469        1.1   mycroft 
    470        1.2       gwr exit 0
    471        1.1   mycroft 
    472        1.2       gwr # Local Variables:
    473        1.2       gwr # tab-width: 4
    474        1.2       gwr # End:
    475