Home | History | Annotate | Line # | Download | only in kern
vnode_if.c revision 1.88.16.1
      1       1.88   hannken /*	$NetBSD: vnode_if.c,v 1.88.16.1 2013/08/28 23:59:35 rmind Exp $	*/
      2        1.9   thorpej 
      3        1.1       cgd /*
      4       1.52     perry  * Warning: DO NOT EDIT! This file is automatically generated!
      5        1.1       cgd  * (Modifications made here may easily be lost!)
      6        1.1       cgd  *
      7        1.1       cgd  * Created from the file:
      8  1.88.16.1     rmind  *	NetBSD: vnode_if.src,v 1.63 2011/10/14 09:23:31 hannken Exp
      9        1.1       cgd  * by the script:
     10  1.88.16.1     rmind  *	NetBSD: vnode_if.sh,v 1.59 2013/07/17 21:20:53 pooka Exp
     11        1.1       cgd  */
     12        1.1       cgd 
     13        1.1       cgd /*
     14       1.10      fvdl  * Copyright (c) 1992, 1993, 1994, 1995
     15        1.1       cgd  *	The Regents of the University of California.  All rights reserved.
     16        1.1       cgd  *
     17        1.1       cgd  * Redistribution and use in source and binary forms, with or without
     18        1.1       cgd  * modification, are permitted provided that the following conditions
     19        1.1       cgd  * are met:
     20        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     21        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     22        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     23        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     24        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     25       1.45       agc  * 3. Neither the name of the University nor the names of its contributors
     26        1.1       cgd  *    may be used to endorse or promote products derived from this software
     27        1.1       cgd  *    without specific prior written permission.
     28        1.1       cgd  *
     29       1.14  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32        1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39        1.1       cgd  * SUCH DAMAGE.
     40        1.1       cgd  */
     41       1.39     lukem 
     42       1.39     lukem #include <sys/cdefs.h>
     43       1.88   hannken __KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.88.16.1 2013/08/28 23:59:35 rmind Exp $");
     44       1.39     lukem 
     45        1.1       cgd #include <sys/param.h>
     46        1.1       cgd #include <sys/mount.h>
     47       1.23   thorpej #include <sys/buf.h>
     48        1.1       cgd #include <sys/vnode.h>
     49       1.72        ad #include <sys/lock.h>
     50        1.1       cgd 
     51       1.34     lukem const struct vnodeop_desc vop_default_desc = {
     52        1.1       cgd 	0,
     53        1.1       cgd 	"default",
     54        1.1       cgd 	0,
     55        1.1       cgd 	NULL,
     56        1.1       cgd 	VDESC_NO_OFFSET,
     57        1.1       cgd 	VDESC_NO_OFFSET,
     58        1.1       cgd 	VDESC_NO_OFFSET,
     59        1.1       cgd };
     60        1.1       cgd 
     61        1.1       cgd 
     62       1.33  jdolecek const int vop_bwrite_vp_offsets[] = {
     63       1.88   hannken 	VOPARG_OFFSETOF(struct vop_bwrite_args,a_vp),
     64       1.33  jdolecek 	VDESC_NO_OFFSET
     65       1.33  jdolecek };
     66       1.33  jdolecek const struct vnodeop_desc vop_bwrite_desc = {
     67       1.67     pooka 	VOP_BWRITE_DESCOFFSET,
     68       1.33  jdolecek 	"vop_bwrite",
     69       1.33  jdolecek 	0,
     70       1.33  jdolecek 	vop_bwrite_vp_offsets,
     71       1.33  jdolecek 	VDESC_NO_OFFSET,
     72       1.33  jdolecek 	VDESC_NO_OFFSET,
     73       1.33  jdolecek 	VDESC_NO_OFFSET,
     74       1.33  jdolecek };
     75       1.33  jdolecek int
     76       1.88   hannken VOP_BWRITE(struct vnode *vp,
     77       1.88   hannken     struct buf *bp)
     78       1.33  jdolecek {
     79       1.72        ad 	int error;
     80       1.72        ad 	bool mpsafe;
     81       1.33  jdolecek 	struct vop_bwrite_args a;
     82       1.33  jdolecek 	a.a_desc = VDESC(vop_bwrite);
     83       1.88   hannken 	a.a_vp = vp;
     84       1.33  jdolecek 	a.a_bp = bp;
     85       1.88   hannken 	mpsafe = (vp->v_vflag & VV_MPSAFE);
     86       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
     87       1.88   hannken 	error = (VCALL(vp, VOFFSET(vop_bwrite), &a));
     88       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
     89       1.72        ad 	return error;
     90       1.33  jdolecek }
     91       1.33  jdolecek 
     92       1.31  jdolecek const int vop_lookup_vp_offsets[] = {
     93        1.1       cgd 	VOPARG_OFFSETOF(struct vop_lookup_args,a_dvp),
     94        1.1       cgd 	VDESC_NO_OFFSET
     95        1.1       cgd };
     96       1.33  jdolecek const struct vnodeop_desc vop_lookup_desc = {
     97       1.67     pooka 	VOP_LOOKUP_DESCOFFSET,
     98        1.1       cgd 	"vop_lookup",
     99        1.1       cgd 	0,
    100        1.1       cgd 	vop_lookup_vp_offsets,
    101        1.1       cgd 	VOPARG_OFFSETOF(struct vop_lookup_args, a_vpp),
    102        1.1       cgd 	VDESC_NO_OFFSET,
    103        1.1       cgd 	VOPARG_OFFSETOF(struct vop_lookup_args, a_cnp),
    104        1.1       cgd };
    105       1.23   thorpej int
    106       1.60   thorpej VOP_LOOKUP(struct vnode *dvp,
    107       1.60   thorpej     struct vnode **vpp,
    108       1.60   thorpej     struct componentname *cnp)
    109       1.23   thorpej {
    110       1.72        ad 	int error;
    111       1.72        ad 	bool mpsafe;
    112       1.23   thorpej 	struct vop_lookup_args a;
    113       1.23   thorpej 	a.a_desc = VDESC(vop_lookup);
    114       1.23   thorpej 	a.a_dvp = dvp;
    115       1.23   thorpej 	a.a_vpp = vpp;
    116       1.23   thorpej 	a.a_cnp = cnp;
    117       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    118       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    119       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_lookup), &a));
    120       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    121       1.69     pooka #ifdef DIAGNOSTIC
    122       1.72        ad 	if (error == 0)
    123       1.69     pooka 		KASSERT((*vpp)->v_size != VSIZENOTSET
    124       1.69     pooka 		    && (*vpp)->v_writesize != VSIZENOTSET);
    125       1.69     pooka #endif /* DIAGNOSTIC */
    126       1.72        ad 	return error;
    127       1.23   thorpej }
    128        1.1       cgd 
    129       1.31  jdolecek const int vop_create_vp_offsets[] = {
    130        1.1       cgd 	VOPARG_OFFSETOF(struct vop_create_args,a_dvp),
    131        1.1       cgd 	VDESC_NO_OFFSET
    132        1.1       cgd };
    133       1.33  jdolecek const struct vnodeop_desc vop_create_desc = {
    134       1.67     pooka 	VOP_CREATE_DESCOFFSET,
    135        1.1       cgd 	"vop_create",
    136       1.17  wrstuden 	0 | VDESC_VP0_WILLPUT,
    137        1.1       cgd 	vop_create_vp_offsets,
    138        1.1       cgd 	VOPARG_OFFSETOF(struct vop_create_args, a_vpp),
    139        1.1       cgd 	VDESC_NO_OFFSET,
    140        1.1       cgd 	VOPARG_OFFSETOF(struct vop_create_args, a_cnp),
    141        1.1       cgd };
    142       1.23   thorpej int
    143       1.60   thorpej VOP_CREATE(struct vnode *dvp,
    144       1.60   thorpej     struct vnode **vpp,
    145       1.60   thorpej     struct componentname *cnp,
    146       1.60   thorpej     struct vattr *vap)
    147       1.23   thorpej {
    148       1.72        ad 	int error;
    149       1.72        ad 	bool mpsafe;
    150       1.23   thorpej 	struct vop_create_args a;
    151       1.23   thorpej 	a.a_desc = VDESC(vop_create);
    152       1.23   thorpej 	a.a_dvp = dvp;
    153       1.23   thorpej 	a.a_vpp = vpp;
    154       1.23   thorpej 	a.a_cnp = cnp;
    155       1.23   thorpej 	a.a_vap = vap;
    156       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    157       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    158       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_create), &a));
    159       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    160       1.69     pooka #ifdef DIAGNOSTIC
    161       1.72        ad 	if (error == 0)
    162       1.69     pooka 		KASSERT((*vpp)->v_size != VSIZENOTSET
    163       1.69     pooka 		    && (*vpp)->v_writesize != VSIZENOTSET);
    164       1.69     pooka #endif /* DIAGNOSTIC */
    165       1.72        ad 	return error;
    166       1.23   thorpej }
    167        1.1       cgd 
    168       1.31  jdolecek const int vop_mknod_vp_offsets[] = {
    169        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mknod_args,a_dvp),
    170        1.1       cgd 	VDESC_NO_OFFSET
    171        1.1       cgd };
    172       1.33  jdolecek const struct vnodeop_desc vop_mknod_desc = {
    173       1.67     pooka 	VOP_MKNOD_DESCOFFSET,
    174        1.1       cgd 	"vop_mknod",
    175       1.37     assar 	0 | VDESC_VP0_WILLPUT,
    176        1.1       cgd 	vop_mknod_vp_offsets,
    177        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mknod_args, a_vpp),
    178        1.1       cgd 	VDESC_NO_OFFSET,
    179        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mknod_args, a_cnp),
    180        1.1       cgd };
    181       1.23   thorpej int
    182       1.60   thorpej VOP_MKNOD(struct vnode *dvp,
    183       1.60   thorpej     struct vnode **vpp,
    184       1.60   thorpej     struct componentname *cnp,
    185       1.60   thorpej     struct vattr *vap)
    186       1.23   thorpej {
    187       1.72        ad 	int error;
    188       1.72        ad 	bool mpsafe;
    189       1.23   thorpej 	struct vop_mknod_args a;
    190       1.23   thorpej 	a.a_desc = VDESC(vop_mknod);
    191       1.23   thorpej 	a.a_dvp = dvp;
    192       1.23   thorpej 	a.a_vpp = vpp;
    193       1.23   thorpej 	a.a_cnp = cnp;
    194       1.23   thorpej 	a.a_vap = vap;
    195       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    196       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    197       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_mknod), &a));
    198       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    199       1.69     pooka #ifdef DIAGNOSTIC
    200       1.72        ad 	if (error == 0)
    201       1.69     pooka 		KASSERT((*vpp)->v_size != VSIZENOTSET
    202       1.69     pooka 		    && (*vpp)->v_writesize != VSIZENOTSET);
    203       1.69     pooka #endif /* DIAGNOSTIC */
    204       1.72        ad 	return error;
    205       1.23   thorpej }
    206        1.1       cgd 
    207       1.31  jdolecek const int vop_open_vp_offsets[] = {
    208        1.1       cgd 	VOPARG_OFFSETOF(struct vop_open_args,a_vp),
    209        1.1       cgd 	VDESC_NO_OFFSET
    210        1.1       cgd };
    211       1.33  jdolecek const struct vnodeop_desc vop_open_desc = {
    212       1.67     pooka 	VOP_OPEN_DESCOFFSET,
    213        1.1       cgd 	"vop_open",
    214        1.1       cgd 	0,
    215        1.1       cgd 	vop_open_vp_offsets,
    216        1.1       cgd 	VDESC_NO_OFFSET,
    217        1.1       cgd 	VOPARG_OFFSETOF(struct vop_open_args, a_cred),
    218        1.1       cgd 	VDESC_NO_OFFSET,
    219        1.1       cgd };
    220       1.23   thorpej int
    221       1.60   thorpej VOP_OPEN(struct vnode *vp,
    222       1.60   thorpej     int mode,
    223       1.73     pooka     kauth_cred_t cred)
    224       1.23   thorpej {
    225       1.72        ad 	int error;
    226       1.72        ad 	bool mpsafe;
    227       1.23   thorpej 	struct vop_open_args a;
    228       1.23   thorpej 	a.a_desc = VDESC(vop_open);
    229       1.23   thorpej 	a.a_vp = vp;
    230       1.23   thorpej 	a.a_mode = mode;
    231       1.23   thorpej 	a.a_cred = cred;
    232       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    233       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    234       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_open), &a));
    235       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    236       1.72        ad 	return error;
    237       1.23   thorpej }
    238        1.1       cgd 
    239       1.31  jdolecek const int vop_close_vp_offsets[] = {
    240        1.1       cgd 	VOPARG_OFFSETOF(struct vop_close_args,a_vp),
    241        1.1       cgd 	VDESC_NO_OFFSET
    242        1.1       cgd };
    243       1.33  jdolecek const struct vnodeop_desc vop_close_desc = {
    244       1.67     pooka 	VOP_CLOSE_DESCOFFSET,
    245        1.1       cgd 	"vop_close",
    246        1.1       cgd 	0,
    247        1.1       cgd 	vop_close_vp_offsets,
    248        1.1       cgd 	VDESC_NO_OFFSET,
    249        1.1       cgd 	VOPARG_OFFSETOF(struct vop_close_args, a_cred),
    250        1.1       cgd 	VDESC_NO_OFFSET,
    251        1.1       cgd };
    252       1.23   thorpej int
    253       1.60   thorpej VOP_CLOSE(struct vnode *vp,
    254       1.60   thorpej     int fflag,
    255       1.73     pooka     kauth_cred_t cred)
    256       1.23   thorpej {
    257       1.72        ad 	int error;
    258       1.72        ad 	bool mpsafe;
    259       1.23   thorpej 	struct vop_close_args a;
    260       1.23   thorpej 	a.a_desc = VDESC(vop_close);
    261       1.23   thorpej 	a.a_vp = vp;
    262       1.23   thorpej 	a.a_fflag = fflag;
    263       1.23   thorpej 	a.a_cred = cred;
    264       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    265       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    266       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_close), &a));
    267       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    268       1.72        ad 	return error;
    269       1.23   thorpej }
    270        1.1       cgd 
    271       1.31  jdolecek const int vop_access_vp_offsets[] = {
    272        1.1       cgd 	VOPARG_OFFSETOF(struct vop_access_args,a_vp),
    273        1.1       cgd 	VDESC_NO_OFFSET
    274        1.1       cgd };
    275       1.33  jdolecek const struct vnodeop_desc vop_access_desc = {
    276       1.67     pooka 	VOP_ACCESS_DESCOFFSET,
    277        1.1       cgd 	"vop_access",
    278        1.1       cgd 	0,
    279        1.1       cgd 	vop_access_vp_offsets,
    280        1.1       cgd 	VDESC_NO_OFFSET,
    281        1.1       cgd 	VOPARG_OFFSETOF(struct vop_access_args, a_cred),
    282        1.1       cgd 	VDESC_NO_OFFSET,
    283        1.1       cgd };
    284       1.23   thorpej int
    285       1.60   thorpej VOP_ACCESS(struct vnode *vp,
    286       1.60   thorpej     int mode,
    287       1.73     pooka     kauth_cred_t cred)
    288       1.23   thorpej {
    289       1.72        ad 	int error;
    290       1.72        ad 	bool mpsafe;
    291       1.23   thorpej 	struct vop_access_args a;
    292       1.23   thorpej 	a.a_desc = VDESC(vop_access);
    293       1.23   thorpej 	a.a_vp = vp;
    294       1.23   thorpej 	a.a_mode = mode;
    295       1.23   thorpej 	a.a_cred = cred;
    296       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    297       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    298       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_access), &a));
    299       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    300       1.72        ad 	return error;
    301       1.23   thorpej }
    302        1.1       cgd 
    303       1.31  jdolecek const int vop_getattr_vp_offsets[] = {
    304        1.1       cgd 	VOPARG_OFFSETOF(struct vop_getattr_args,a_vp),
    305        1.1       cgd 	VDESC_NO_OFFSET
    306        1.1       cgd };
    307       1.33  jdolecek const struct vnodeop_desc vop_getattr_desc = {
    308       1.67     pooka 	VOP_GETATTR_DESCOFFSET,
    309        1.1       cgd 	"vop_getattr",
    310        1.1       cgd 	0,
    311        1.1       cgd 	vop_getattr_vp_offsets,
    312        1.1       cgd 	VDESC_NO_OFFSET,
    313        1.1       cgd 	VOPARG_OFFSETOF(struct vop_getattr_args, a_cred),
    314        1.1       cgd 	VDESC_NO_OFFSET,
    315        1.1       cgd };
    316       1.23   thorpej int
    317       1.60   thorpej VOP_GETATTR(struct vnode *vp,
    318       1.60   thorpej     struct vattr *vap,
    319       1.73     pooka     kauth_cred_t cred)
    320       1.23   thorpej {
    321       1.72        ad 	int error;
    322       1.72        ad 	bool mpsafe;
    323       1.23   thorpej 	struct vop_getattr_args a;
    324       1.23   thorpej 	a.a_desc = VDESC(vop_getattr);
    325       1.23   thorpej 	a.a_vp = vp;
    326       1.23   thorpej 	a.a_vap = vap;
    327       1.23   thorpej 	a.a_cred = cred;
    328       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    329       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    330       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_getattr), &a));
    331       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    332       1.72        ad 	return error;
    333       1.23   thorpej }
    334        1.1       cgd 
    335       1.31  jdolecek const int vop_setattr_vp_offsets[] = {
    336        1.1       cgd 	VOPARG_OFFSETOF(struct vop_setattr_args,a_vp),
    337        1.1       cgd 	VDESC_NO_OFFSET
    338        1.1       cgd };
    339       1.33  jdolecek const struct vnodeop_desc vop_setattr_desc = {
    340       1.67     pooka 	VOP_SETATTR_DESCOFFSET,
    341        1.1       cgd 	"vop_setattr",
    342        1.1       cgd 	0,
    343        1.1       cgd 	vop_setattr_vp_offsets,
    344        1.1       cgd 	VDESC_NO_OFFSET,
    345        1.1       cgd 	VOPARG_OFFSETOF(struct vop_setattr_args, a_cred),
    346        1.1       cgd 	VDESC_NO_OFFSET,
    347        1.1       cgd };
    348       1.23   thorpej int
    349       1.60   thorpej VOP_SETATTR(struct vnode *vp,
    350       1.60   thorpej     struct vattr *vap,
    351       1.73     pooka     kauth_cred_t cred)
    352       1.23   thorpej {
    353       1.72        ad 	int error;
    354       1.72        ad 	bool mpsafe;
    355       1.23   thorpej 	struct vop_setattr_args a;
    356       1.23   thorpej 	a.a_desc = VDESC(vop_setattr);
    357       1.23   thorpej 	a.a_vp = vp;
    358       1.23   thorpej 	a.a_vap = vap;
    359       1.23   thorpej 	a.a_cred = cred;
    360       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    361       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    362       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_setattr), &a));
    363       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    364       1.72        ad 	return error;
    365       1.23   thorpej }
    366        1.1       cgd 
    367       1.31  jdolecek const int vop_read_vp_offsets[] = {
    368        1.1       cgd 	VOPARG_OFFSETOF(struct vop_read_args,a_vp),
    369        1.1       cgd 	VDESC_NO_OFFSET
    370        1.1       cgd };
    371       1.33  jdolecek const struct vnodeop_desc vop_read_desc = {
    372       1.67     pooka 	VOP_READ_DESCOFFSET,
    373        1.1       cgd 	"vop_read",
    374        1.1       cgd 	0,
    375        1.1       cgd 	vop_read_vp_offsets,
    376        1.1       cgd 	VDESC_NO_OFFSET,
    377        1.1       cgd 	VOPARG_OFFSETOF(struct vop_read_args, a_cred),
    378        1.1       cgd 	VDESC_NO_OFFSET,
    379        1.1       cgd };
    380       1.23   thorpej int
    381       1.60   thorpej VOP_READ(struct vnode *vp,
    382       1.60   thorpej     struct uio *uio,
    383       1.60   thorpej     int ioflag,
    384       1.65      elad     kauth_cred_t cred)
    385       1.23   thorpej {
    386       1.72        ad 	int error;
    387       1.72        ad 	bool mpsafe;
    388       1.23   thorpej 	struct vop_read_args a;
    389       1.23   thorpej 	a.a_desc = VDESC(vop_read);
    390       1.23   thorpej 	a.a_vp = vp;
    391       1.23   thorpej 	a.a_uio = uio;
    392       1.23   thorpej 	a.a_ioflag = ioflag;
    393       1.23   thorpej 	a.a_cred = cred;
    394       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    395       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    396       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_read), &a));
    397       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    398       1.72        ad 	return error;
    399       1.23   thorpej }
    400        1.1       cgd 
    401       1.31  jdolecek const int vop_write_vp_offsets[] = {
    402        1.1       cgd 	VOPARG_OFFSETOF(struct vop_write_args,a_vp),
    403        1.1       cgd 	VDESC_NO_OFFSET
    404        1.1       cgd };
    405       1.33  jdolecek const struct vnodeop_desc vop_write_desc = {
    406       1.67     pooka 	VOP_WRITE_DESCOFFSET,
    407        1.1       cgd 	"vop_write",
    408        1.1       cgd 	0,
    409        1.1       cgd 	vop_write_vp_offsets,
    410        1.1       cgd 	VDESC_NO_OFFSET,
    411        1.1       cgd 	VOPARG_OFFSETOF(struct vop_write_args, a_cred),
    412        1.1       cgd 	VDESC_NO_OFFSET,
    413        1.1       cgd };
    414       1.23   thorpej int
    415       1.60   thorpej VOP_WRITE(struct vnode *vp,
    416       1.60   thorpej     struct uio *uio,
    417       1.60   thorpej     int ioflag,
    418       1.65      elad     kauth_cred_t cred)
    419       1.23   thorpej {
    420       1.72        ad 	int error;
    421       1.72        ad 	bool mpsafe;
    422       1.23   thorpej 	struct vop_write_args a;
    423       1.23   thorpej 	a.a_desc = VDESC(vop_write);
    424       1.23   thorpej 	a.a_vp = vp;
    425       1.23   thorpej 	a.a_uio = uio;
    426       1.23   thorpej 	a.a_ioflag = ioflag;
    427       1.23   thorpej 	a.a_cred = cred;
    428       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    429       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    430       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_write), &a));
    431       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    432       1.72        ad 	return error;
    433       1.23   thorpej }
    434        1.1       cgd 
    435       1.31  jdolecek const int vop_ioctl_vp_offsets[] = {
    436        1.1       cgd 	VOPARG_OFFSETOF(struct vop_ioctl_args,a_vp),
    437        1.1       cgd 	VDESC_NO_OFFSET
    438        1.1       cgd };
    439       1.33  jdolecek const struct vnodeop_desc vop_ioctl_desc = {
    440       1.67     pooka 	VOP_IOCTL_DESCOFFSET,
    441        1.1       cgd 	"vop_ioctl",
    442        1.1       cgd 	0,
    443        1.1       cgd 	vop_ioctl_vp_offsets,
    444        1.1       cgd 	VDESC_NO_OFFSET,
    445        1.1       cgd 	VOPARG_OFFSETOF(struct vop_ioctl_args, a_cred),
    446        1.1       cgd 	VDESC_NO_OFFSET,
    447        1.1       cgd };
    448       1.23   thorpej int
    449       1.60   thorpej VOP_IOCTL(struct vnode *vp,
    450       1.60   thorpej     u_long command,
    451       1.60   thorpej     void *data,
    452       1.60   thorpej     int fflag,
    453       1.73     pooka     kauth_cred_t cred)
    454       1.23   thorpej {
    455       1.72        ad 	int error;
    456       1.72        ad 	bool mpsafe;
    457       1.23   thorpej 	struct vop_ioctl_args a;
    458       1.23   thorpej 	a.a_desc = VDESC(vop_ioctl);
    459       1.23   thorpej 	a.a_vp = vp;
    460       1.23   thorpej 	a.a_command = command;
    461       1.23   thorpej 	a.a_data = data;
    462       1.23   thorpej 	a.a_fflag = fflag;
    463       1.23   thorpej 	a.a_cred = cred;
    464       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    465       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    466       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_ioctl), &a));
    467       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    468       1.72        ad 	return error;
    469       1.23   thorpej }
    470        1.1       cgd 
    471       1.31  jdolecek const int vop_fcntl_vp_offsets[] = {
    472       1.18  wrstuden 	VOPARG_OFFSETOF(struct vop_fcntl_args,a_vp),
    473       1.18  wrstuden 	VDESC_NO_OFFSET
    474       1.18  wrstuden };
    475       1.33  jdolecek const struct vnodeop_desc vop_fcntl_desc = {
    476       1.67     pooka 	VOP_FCNTL_DESCOFFSET,
    477       1.18  wrstuden 	"vop_fcntl",
    478       1.18  wrstuden 	0,
    479       1.18  wrstuden 	vop_fcntl_vp_offsets,
    480       1.18  wrstuden 	VDESC_NO_OFFSET,
    481       1.18  wrstuden 	VOPARG_OFFSETOF(struct vop_fcntl_args, a_cred),
    482       1.18  wrstuden 	VDESC_NO_OFFSET,
    483       1.18  wrstuden };
    484       1.23   thorpej int
    485       1.60   thorpej VOP_FCNTL(struct vnode *vp,
    486       1.60   thorpej     u_int command,
    487       1.60   thorpej     void *data,
    488       1.60   thorpej     int fflag,
    489       1.73     pooka     kauth_cred_t cred)
    490       1.23   thorpej {
    491       1.72        ad 	int error;
    492       1.72        ad 	bool mpsafe;
    493       1.23   thorpej 	struct vop_fcntl_args a;
    494       1.23   thorpej 	a.a_desc = VDESC(vop_fcntl);
    495       1.23   thorpej 	a.a_vp = vp;
    496       1.23   thorpej 	a.a_command = command;
    497       1.23   thorpej 	a.a_data = data;
    498       1.23   thorpej 	a.a_fflag = fflag;
    499       1.23   thorpej 	a.a_cred = cred;
    500       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    501       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    502       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_fcntl), &a));
    503       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    504       1.72        ad 	return error;
    505       1.23   thorpej }
    506       1.18  wrstuden 
    507       1.31  jdolecek const int vop_poll_vp_offsets[] = {
    508        1.3   mycroft 	VOPARG_OFFSETOF(struct vop_poll_args,a_vp),
    509        1.1       cgd 	VDESC_NO_OFFSET
    510        1.1       cgd };
    511       1.33  jdolecek const struct vnodeop_desc vop_poll_desc = {
    512       1.67     pooka 	VOP_POLL_DESCOFFSET,
    513        1.3   mycroft 	"vop_poll",
    514        1.1       cgd 	0,
    515        1.3   mycroft 	vop_poll_vp_offsets,
    516        1.1       cgd 	VDESC_NO_OFFSET,
    517        1.3   mycroft 	VDESC_NO_OFFSET,
    518        1.1       cgd 	VDESC_NO_OFFSET,
    519        1.1       cgd };
    520       1.23   thorpej int
    521       1.60   thorpej VOP_POLL(struct vnode *vp,
    522       1.73     pooka     int events)
    523       1.23   thorpej {
    524       1.72        ad 	int error;
    525       1.72        ad 	bool mpsafe;
    526       1.23   thorpej 	struct vop_poll_args a;
    527       1.23   thorpej 	a.a_desc = VDESC(vop_poll);
    528       1.23   thorpej 	a.a_vp = vp;
    529       1.23   thorpej 	a.a_events = events;
    530       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    531       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    532       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_poll), &a));
    533       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    534       1.72        ad 	return error;
    535       1.23   thorpej }
    536        1.1       cgd 
    537       1.40  jdolecek const int vop_kqfilter_vp_offsets[] = {
    538       1.40  jdolecek 	VOPARG_OFFSETOF(struct vop_kqfilter_args,a_vp),
    539       1.40  jdolecek 	VDESC_NO_OFFSET
    540       1.40  jdolecek };
    541       1.40  jdolecek const struct vnodeop_desc vop_kqfilter_desc = {
    542       1.67     pooka 	VOP_KQFILTER_DESCOFFSET,
    543       1.40  jdolecek 	"vop_kqfilter",
    544       1.40  jdolecek 	0,
    545       1.40  jdolecek 	vop_kqfilter_vp_offsets,
    546       1.40  jdolecek 	VDESC_NO_OFFSET,
    547       1.40  jdolecek 	VDESC_NO_OFFSET,
    548       1.40  jdolecek 	VDESC_NO_OFFSET,
    549       1.40  jdolecek };
    550       1.40  jdolecek int
    551       1.60   thorpej VOP_KQFILTER(struct vnode *vp,
    552       1.60   thorpej     struct knote *kn)
    553       1.40  jdolecek {
    554       1.72        ad 	int error;
    555       1.72        ad 	bool mpsafe;
    556       1.40  jdolecek 	struct vop_kqfilter_args a;
    557       1.40  jdolecek 	a.a_desc = VDESC(vop_kqfilter);
    558       1.40  jdolecek 	a.a_vp = vp;
    559       1.40  jdolecek 	a.a_kn = kn;
    560       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    561       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    562       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_kqfilter), &a));
    563       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    564       1.72        ad 	return error;
    565       1.40  jdolecek }
    566       1.40  jdolecek 
    567       1.31  jdolecek const int vop_revoke_vp_offsets[] = {
    568       1.10      fvdl 	VOPARG_OFFSETOF(struct vop_revoke_args,a_vp),
    569       1.10      fvdl 	VDESC_NO_OFFSET
    570       1.10      fvdl };
    571       1.33  jdolecek const struct vnodeop_desc vop_revoke_desc = {
    572       1.67     pooka 	VOP_REVOKE_DESCOFFSET,
    573       1.10      fvdl 	"vop_revoke",
    574       1.10      fvdl 	0,
    575       1.10      fvdl 	vop_revoke_vp_offsets,
    576       1.10      fvdl 	VDESC_NO_OFFSET,
    577       1.10      fvdl 	VDESC_NO_OFFSET,
    578       1.10      fvdl 	VDESC_NO_OFFSET,
    579       1.10      fvdl };
    580       1.23   thorpej int
    581       1.60   thorpej VOP_REVOKE(struct vnode *vp,
    582       1.60   thorpej     int flags)
    583       1.23   thorpej {
    584       1.72        ad 	int error;
    585       1.72        ad 	bool mpsafe;
    586       1.23   thorpej 	struct vop_revoke_args a;
    587       1.23   thorpej 	a.a_desc = VDESC(vop_revoke);
    588       1.23   thorpej 	a.a_vp = vp;
    589       1.23   thorpej 	a.a_flags = flags;
    590       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    591       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    592       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_revoke), &a));
    593       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    594       1.72        ad 	return error;
    595       1.23   thorpej }
    596       1.10      fvdl 
    597       1.31  jdolecek const int vop_mmap_vp_offsets[] = {
    598        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mmap_args,a_vp),
    599        1.1       cgd 	VDESC_NO_OFFSET
    600        1.1       cgd };
    601       1.33  jdolecek const struct vnodeop_desc vop_mmap_desc = {
    602       1.67     pooka 	VOP_MMAP_DESCOFFSET,
    603        1.1       cgd 	"vop_mmap",
    604        1.1       cgd 	0,
    605        1.1       cgd 	vop_mmap_vp_offsets,
    606        1.1       cgd 	VDESC_NO_OFFSET,
    607        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mmap_args, a_cred),
    608        1.1       cgd 	VDESC_NO_OFFSET,
    609        1.1       cgd };
    610       1.23   thorpej int
    611       1.60   thorpej VOP_MMAP(struct vnode *vp,
    612       1.70     pooka     vm_prot_t prot,
    613       1.73     pooka     kauth_cred_t cred)
    614       1.23   thorpej {
    615       1.72        ad 	int error;
    616       1.72        ad 	bool mpsafe;
    617       1.23   thorpej 	struct vop_mmap_args a;
    618       1.23   thorpej 	a.a_desc = VDESC(vop_mmap);
    619       1.23   thorpej 	a.a_vp = vp;
    620       1.70     pooka 	a.a_prot = prot;
    621       1.23   thorpej 	a.a_cred = cred;
    622       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    623       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    624       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_mmap), &a));
    625       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    626       1.72        ad 	return error;
    627       1.23   thorpej }
    628        1.1       cgd 
    629       1.31  jdolecek const int vop_fsync_vp_offsets[] = {
    630        1.1       cgd 	VOPARG_OFFSETOF(struct vop_fsync_args,a_vp),
    631        1.1       cgd 	VDESC_NO_OFFSET
    632        1.1       cgd };
    633       1.33  jdolecek const struct vnodeop_desc vop_fsync_desc = {
    634       1.67     pooka 	VOP_FSYNC_DESCOFFSET,
    635        1.1       cgd 	"vop_fsync",
    636        1.1       cgd 	0,
    637        1.1       cgd 	vop_fsync_vp_offsets,
    638        1.1       cgd 	VDESC_NO_OFFSET,
    639        1.1       cgd 	VOPARG_OFFSETOF(struct vop_fsync_args, a_cred),
    640        1.1       cgd 	VDESC_NO_OFFSET,
    641        1.1       cgd };
    642       1.23   thorpej int
    643       1.60   thorpej VOP_FSYNC(struct vnode *vp,
    644       1.65      elad     kauth_cred_t cred,
    645       1.60   thorpej     int flags,
    646       1.60   thorpej     off_t offlo,
    647       1.73     pooka     off_t offhi)
    648       1.23   thorpej {
    649       1.72        ad 	int error;
    650       1.72        ad 	bool mpsafe;
    651       1.23   thorpej 	struct vop_fsync_args a;
    652       1.23   thorpej 	a.a_desc = VDESC(vop_fsync);
    653       1.23   thorpej 	a.a_vp = vp;
    654       1.23   thorpej 	a.a_cred = cred;
    655       1.23   thorpej 	a.a_flags = flags;
    656       1.25      fvdl 	a.a_offlo = offlo;
    657       1.25      fvdl 	a.a_offhi = offhi;
    658       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    659       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    660       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_fsync), &a));
    661       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    662       1.72        ad 	return error;
    663       1.23   thorpej }
    664        1.1       cgd 
    665       1.31  jdolecek const int vop_seek_vp_offsets[] = {
    666        1.1       cgd 	VOPARG_OFFSETOF(struct vop_seek_args,a_vp),
    667        1.1       cgd 	VDESC_NO_OFFSET
    668        1.1       cgd };
    669       1.33  jdolecek const struct vnodeop_desc vop_seek_desc = {
    670       1.67     pooka 	VOP_SEEK_DESCOFFSET,
    671        1.1       cgd 	"vop_seek",
    672        1.1       cgd 	0,
    673        1.1       cgd 	vop_seek_vp_offsets,
    674        1.1       cgd 	VDESC_NO_OFFSET,
    675        1.1       cgd 	VOPARG_OFFSETOF(struct vop_seek_args, a_cred),
    676        1.1       cgd 	VDESC_NO_OFFSET,
    677        1.1       cgd };
    678       1.23   thorpej int
    679       1.60   thorpej VOP_SEEK(struct vnode *vp,
    680       1.60   thorpej     off_t oldoff,
    681       1.60   thorpej     off_t newoff,
    682       1.65      elad     kauth_cred_t cred)
    683       1.23   thorpej {
    684       1.72        ad 	int error;
    685       1.72        ad 	bool mpsafe;
    686       1.23   thorpej 	struct vop_seek_args a;
    687       1.23   thorpej 	a.a_desc = VDESC(vop_seek);
    688       1.23   thorpej 	a.a_vp = vp;
    689       1.23   thorpej 	a.a_oldoff = oldoff;
    690       1.23   thorpej 	a.a_newoff = newoff;
    691       1.23   thorpej 	a.a_cred = cred;
    692       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    693       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    694       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_seek), &a));
    695       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    696       1.72        ad 	return error;
    697       1.23   thorpej }
    698        1.1       cgd 
    699       1.31  jdolecek const int vop_remove_vp_offsets[] = {
    700        1.1       cgd 	VOPARG_OFFSETOF(struct vop_remove_args,a_dvp),
    701        1.1       cgd 	VOPARG_OFFSETOF(struct vop_remove_args,a_vp),
    702        1.1       cgd 	VDESC_NO_OFFSET
    703        1.1       cgd };
    704       1.33  jdolecek const struct vnodeop_desc vop_remove_desc = {
    705       1.67     pooka 	VOP_REMOVE_DESCOFFSET,
    706        1.1       cgd 	"vop_remove",
    707       1.17  wrstuden 	0 | VDESC_VP0_WILLPUT | VDESC_VP1_WILLPUT,
    708        1.1       cgd 	vop_remove_vp_offsets,
    709        1.1       cgd 	VDESC_NO_OFFSET,
    710        1.1       cgd 	VDESC_NO_OFFSET,
    711        1.1       cgd 	VOPARG_OFFSETOF(struct vop_remove_args, a_cnp),
    712        1.1       cgd };
    713       1.23   thorpej int
    714       1.60   thorpej VOP_REMOVE(struct vnode *dvp,
    715       1.60   thorpej     struct vnode *vp,
    716       1.60   thorpej     struct componentname *cnp)
    717       1.23   thorpej {
    718       1.72        ad 	int error;
    719       1.72        ad 	bool mpsafe;
    720       1.23   thorpej 	struct vop_remove_args a;
    721       1.23   thorpej 	a.a_desc = VDESC(vop_remove);
    722       1.23   thorpej 	a.a_dvp = dvp;
    723       1.81     pooka 	a.a_vp = vp;
    724       1.23   thorpej 	a.a_cnp = cnp;
    725       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    726       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    727       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_remove), &a));
    728       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    729       1.72        ad 	return error;
    730       1.23   thorpej }
    731        1.1       cgd 
    732       1.31  jdolecek const int vop_link_vp_offsets[] = {
    733        1.1       cgd 	VOPARG_OFFSETOF(struct vop_link_args,a_dvp),
    734        1.1       cgd 	VOPARG_OFFSETOF(struct vop_link_args,a_vp),
    735        1.1       cgd 	VDESC_NO_OFFSET
    736        1.1       cgd };
    737       1.33  jdolecek const struct vnodeop_desc vop_link_desc = {
    738       1.67     pooka 	VOP_LINK_DESCOFFSET,
    739        1.1       cgd 	"vop_link",
    740       1.17  wrstuden 	0 | VDESC_VP0_WILLPUT,
    741        1.1       cgd 	vop_link_vp_offsets,
    742        1.1       cgd 	VDESC_NO_OFFSET,
    743        1.1       cgd 	VDESC_NO_OFFSET,
    744        1.1       cgd 	VOPARG_OFFSETOF(struct vop_link_args, a_cnp),
    745        1.1       cgd };
    746       1.23   thorpej int
    747       1.60   thorpej VOP_LINK(struct vnode *dvp,
    748       1.60   thorpej     struct vnode *vp,
    749       1.60   thorpej     struct componentname *cnp)
    750       1.23   thorpej {
    751       1.72        ad 	int error;
    752       1.72        ad 	bool mpsafe;
    753       1.23   thorpej 	struct vop_link_args a;
    754       1.23   thorpej 	a.a_desc = VDESC(vop_link);
    755       1.23   thorpej 	a.a_dvp = dvp;
    756       1.81     pooka 	a.a_vp = vp;
    757       1.23   thorpej 	a.a_cnp = cnp;
    758       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    759       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    760       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_link), &a));
    761       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    762       1.72        ad 	return error;
    763       1.23   thorpej }
    764        1.1       cgd 
    765       1.31  jdolecek const int vop_rename_vp_offsets[] = {
    766        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rename_args,a_fdvp),
    767        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rename_args,a_fvp),
    768        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rename_args,a_tdvp),
    769        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rename_args,a_tvp),
    770        1.1       cgd 	VDESC_NO_OFFSET
    771        1.1       cgd };
    772       1.33  jdolecek const struct vnodeop_desc vop_rename_desc = {
    773       1.67     pooka 	VOP_RENAME_DESCOFFSET,
    774        1.1       cgd 	"vop_rename",
    775       1.42  jdolecek 	0 | VDESC_VP0_WILLRELE | VDESC_VP1_WILLRELE | VDESC_VP2_WILLPUT | VDESC_VP3_WILLPUT,
    776        1.1       cgd 	vop_rename_vp_offsets,
    777        1.1       cgd 	VDESC_NO_OFFSET,
    778        1.1       cgd 	VDESC_NO_OFFSET,
    779        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rename_args, a_fcnp),
    780        1.1       cgd };
    781       1.23   thorpej int
    782       1.60   thorpej VOP_RENAME(struct vnode *fdvp,
    783       1.60   thorpej     struct vnode *fvp,
    784       1.60   thorpej     struct componentname *fcnp,
    785       1.60   thorpej     struct vnode *tdvp,
    786       1.60   thorpej     struct vnode *tvp,
    787       1.60   thorpej     struct componentname *tcnp)
    788       1.23   thorpej {
    789       1.72        ad 	int error;
    790       1.72        ad 	bool mpsafe;
    791       1.23   thorpej 	struct vop_rename_args a;
    792       1.23   thorpej 	a.a_desc = VDESC(vop_rename);
    793       1.23   thorpej 	a.a_fdvp = fdvp;
    794       1.23   thorpej 	a.a_fvp = fvp;
    795       1.23   thorpej 	a.a_fcnp = fcnp;
    796       1.23   thorpej 	a.a_tdvp = tdvp;
    797       1.23   thorpej 	a.a_tvp = tvp;
    798       1.23   thorpej 	a.a_tcnp = tcnp;
    799       1.72        ad 	mpsafe = (fdvp->v_vflag & VV_MPSAFE);
    800       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    801       1.72        ad 	error = (VCALL(fdvp, VOFFSET(vop_rename), &a));
    802       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    803       1.72        ad 	return error;
    804       1.23   thorpej }
    805        1.1       cgd 
    806       1.31  jdolecek const int vop_mkdir_vp_offsets[] = {
    807        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mkdir_args,a_dvp),
    808        1.1       cgd 	VDESC_NO_OFFSET
    809        1.1       cgd };
    810       1.33  jdolecek const struct vnodeop_desc vop_mkdir_desc = {
    811       1.67     pooka 	VOP_MKDIR_DESCOFFSET,
    812        1.1       cgd 	"vop_mkdir",
    813       1.17  wrstuden 	0 | VDESC_VP0_WILLPUT,
    814        1.1       cgd 	vop_mkdir_vp_offsets,
    815        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mkdir_args, a_vpp),
    816        1.1       cgd 	VDESC_NO_OFFSET,
    817        1.1       cgd 	VOPARG_OFFSETOF(struct vop_mkdir_args, a_cnp),
    818        1.1       cgd };
    819       1.23   thorpej int
    820       1.60   thorpej VOP_MKDIR(struct vnode *dvp,
    821       1.60   thorpej     struct vnode **vpp,
    822       1.60   thorpej     struct componentname *cnp,
    823       1.60   thorpej     struct vattr *vap)
    824       1.23   thorpej {
    825       1.72        ad 	int error;
    826       1.72        ad 	bool mpsafe;
    827       1.23   thorpej 	struct vop_mkdir_args a;
    828       1.23   thorpej 	a.a_desc = VDESC(vop_mkdir);
    829       1.23   thorpej 	a.a_dvp = dvp;
    830       1.23   thorpej 	a.a_vpp = vpp;
    831       1.23   thorpej 	a.a_cnp = cnp;
    832       1.23   thorpej 	a.a_vap = vap;
    833       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    834       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    835       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_mkdir), &a));
    836       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    837       1.69     pooka #ifdef DIAGNOSTIC
    838       1.72        ad 	if (error == 0)
    839       1.69     pooka 		KASSERT((*vpp)->v_size != VSIZENOTSET
    840       1.69     pooka 		    && (*vpp)->v_writesize != VSIZENOTSET);
    841       1.69     pooka #endif /* DIAGNOSTIC */
    842       1.72        ad 	return error;
    843       1.23   thorpej }
    844        1.1       cgd 
    845       1.31  jdolecek const int vop_rmdir_vp_offsets[] = {
    846        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rmdir_args,a_dvp),
    847        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rmdir_args,a_vp),
    848        1.1       cgd 	VDESC_NO_OFFSET
    849        1.1       cgd };
    850       1.33  jdolecek const struct vnodeop_desc vop_rmdir_desc = {
    851       1.67     pooka 	VOP_RMDIR_DESCOFFSET,
    852        1.1       cgd 	"vop_rmdir",
    853       1.17  wrstuden 	0 | VDESC_VP0_WILLPUT | VDESC_VP1_WILLPUT,
    854        1.1       cgd 	vop_rmdir_vp_offsets,
    855        1.1       cgd 	VDESC_NO_OFFSET,
    856        1.1       cgd 	VDESC_NO_OFFSET,
    857        1.1       cgd 	VOPARG_OFFSETOF(struct vop_rmdir_args, a_cnp),
    858        1.1       cgd };
    859       1.23   thorpej int
    860       1.60   thorpej VOP_RMDIR(struct vnode *dvp,
    861       1.60   thorpej     struct vnode *vp,
    862       1.60   thorpej     struct componentname *cnp)
    863       1.23   thorpej {
    864       1.72        ad 	int error;
    865       1.72        ad 	bool mpsafe;
    866       1.23   thorpej 	struct vop_rmdir_args a;
    867       1.23   thorpej 	a.a_desc = VDESC(vop_rmdir);
    868       1.23   thorpej 	a.a_dvp = dvp;
    869       1.81     pooka 	a.a_vp = vp;
    870       1.23   thorpej 	a.a_cnp = cnp;
    871       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    872       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    873       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_rmdir), &a));
    874       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    875       1.72        ad 	return error;
    876       1.23   thorpej }
    877        1.1       cgd 
    878       1.31  jdolecek const int vop_symlink_vp_offsets[] = {
    879        1.1       cgd 	VOPARG_OFFSETOF(struct vop_symlink_args,a_dvp),
    880        1.1       cgd 	VDESC_NO_OFFSET
    881        1.1       cgd };
    882       1.33  jdolecek const struct vnodeop_desc vop_symlink_desc = {
    883       1.67     pooka 	VOP_SYMLINK_DESCOFFSET,
    884        1.1       cgd 	"vop_symlink",
    885       1.37     assar 	0 | VDESC_VP0_WILLPUT,
    886        1.1       cgd 	vop_symlink_vp_offsets,
    887        1.1       cgd 	VOPARG_OFFSETOF(struct vop_symlink_args, a_vpp),
    888        1.1       cgd 	VDESC_NO_OFFSET,
    889        1.1       cgd 	VOPARG_OFFSETOF(struct vop_symlink_args, a_cnp),
    890        1.1       cgd };
    891       1.23   thorpej int
    892       1.60   thorpej VOP_SYMLINK(struct vnode *dvp,
    893       1.60   thorpej     struct vnode **vpp,
    894       1.60   thorpej     struct componentname *cnp,
    895       1.60   thorpej     struct vattr *vap,
    896       1.60   thorpej     char *target)
    897       1.23   thorpej {
    898       1.72        ad 	int error;
    899       1.72        ad 	bool mpsafe;
    900       1.23   thorpej 	struct vop_symlink_args a;
    901       1.23   thorpej 	a.a_desc = VDESC(vop_symlink);
    902       1.23   thorpej 	a.a_dvp = dvp;
    903       1.23   thorpej 	a.a_vpp = vpp;
    904       1.23   thorpej 	a.a_cnp = cnp;
    905       1.23   thorpej 	a.a_vap = vap;
    906       1.23   thorpej 	a.a_target = target;
    907       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
    908       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    909       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_symlink), &a));
    910       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    911       1.69     pooka #ifdef DIAGNOSTIC
    912       1.72        ad 	if (error == 0)
    913       1.69     pooka 		KASSERT((*vpp)->v_size != VSIZENOTSET
    914       1.69     pooka 		    && (*vpp)->v_writesize != VSIZENOTSET);
    915       1.69     pooka #endif /* DIAGNOSTIC */
    916       1.72        ad 	return error;
    917       1.23   thorpej }
    918        1.1       cgd 
    919       1.31  jdolecek const int vop_readdir_vp_offsets[] = {
    920        1.1       cgd 	VOPARG_OFFSETOF(struct vop_readdir_args,a_vp),
    921        1.1       cgd 	VDESC_NO_OFFSET
    922        1.1       cgd };
    923       1.33  jdolecek const struct vnodeop_desc vop_readdir_desc = {
    924       1.67     pooka 	VOP_READDIR_DESCOFFSET,
    925        1.1       cgd 	"vop_readdir",
    926        1.1       cgd 	0,
    927        1.1       cgd 	vop_readdir_vp_offsets,
    928        1.1       cgd 	VDESC_NO_OFFSET,
    929        1.1       cgd 	VOPARG_OFFSETOF(struct vop_readdir_args, a_cred),
    930        1.1       cgd 	VDESC_NO_OFFSET,
    931        1.1       cgd };
    932       1.23   thorpej int
    933       1.60   thorpej VOP_READDIR(struct vnode *vp,
    934       1.60   thorpej     struct uio *uio,
    935       1.65      elad     kauth_cred_t cred,
    936       1.60   thorpej     int *eofflag,
    937       1.60   thorpej     off_t **cookies,
    938       1.60   thorpej     int *ncookies)
    939       1.23   thorpej {
    940       1.72        ad 	int error;
    941       1.72        ad 	bool mpsafe;
    942       1.23   thorpej 	struct vop_readdir_args a;
    943       1.23   thorpej 	a.a_desc = VDESC(vop_readdir);
    944       1.23   thorpej 	a.a_vp = vp;
    945       1.23   thorpej 	a.a_uio = uio;
    946       1.23   thorpej 	a.a_cred = cred;
    947       1.23   thorpej 	a.a_eofflag = eofflag;
    948       1.23   thorpej 	a.a_cookies = cookies;
    949       1.23   thorpej 	a.a_ncookies = ncookies;
    950       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    951       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    952       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_readdir), &a));
    953       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    954       1.72        ad 	return error;
    955       1.23   thorpej }
    956        1.1       cgd 
    957       1.31  jdolecek const int vop_readlink_vp_offsets[] = {
    958        1.1       cgd 	VOPARG_OFFSETOF(struct vop_readlink_args,a_vp),
    959        1.1       cgd 	VDESC_NO_OFFSET
    960        1.1       cgd };
    961       1.33  jdolecek const struct vnodeop_desc vop_readlink_desc = {
    962       1.67     pooka 	VOP_READLINK_DESCOFFSET,
    963        1.1       cgd 	"vop_readlink",
    964        1.1       cgd 	0,
    965        1.1       cgd 	vop_readlink_vp_offsets,
    966        1.1       cgd 	VDESC_NO_OFFSET,
    967        1.1       cgd 	VOPARG_OFFSETOF(struct vop_readlink_args, a_cred),
    968        1.1       cgd 	VDESC_NO_OFFSET,
    969        1.1       cgd };
    970       1.23   thorpej int
    971       1.60   thorpej VOP_READLINK(struct vnode *vp,
    972       1.60   thorpej     struct uio *uio,
    973       1.65      elad     kauth_cred_t cred)
    974       1.23   thorpej {
    975       1.72        ad 	int error;
    976       1.72        ad 	bool mpsafe;
    977       1.23   thorpej 	struct vop_readlink_args a;
    978       1.23   thorpej 	a.a_desc = VDESC(vop_readlink);
    979       1.23   thorpej 	a.a_vp = vp;
    980       1.23   thorpej 	a.a_uio = uio;
    981       1.23   thorpej 	a.a_cred = cred;
    982       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
    983       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
    984       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_readlink), &a));
    985       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
    986       1.72        ad 	return error;
    987       1.23   thorpej }
    988        1.1       cgd 
    989       1.31  jdolecek const int vop_abortop_vp_offsets[] = {
    990        1.1       cgd 	VOPARG_OFFSETOF(struct vop_abortop_args,a_dvp),
    991        1.1       cgd 	VDESC_NO_OFFSET
    992        1.1       cgd };
    993       1.33  jdolecek const struct vnodeop_desc vop_abortop_desc = {
    994       1.67     pooka 	VOP_ABORTOP_DESCOFFSET,
    995        1.1       cgd 	"vop_abortop",
    996        1.1       cgd 	0,
    997        1.1       cgd 	vop_abortop_vp_offsets,
    998        1.1       cgd 	VDESC_NO_OFFSET,
    999        1.1       cgd 	VDESC_NO_OFFSET,
   1000        1.1       cgd 	VOPARG_OFFSETOF(struct vop_abortop_args, a_cnp),
   1001        1.1       cgd };
   1002       1.23   thorpej int
   1003       1.60   thorpej VOP_ABORTOP(struct vnode *dvp,
   1004       1.60   thorpej     struct componentname *cnp)
   1005       1.23   thorpej {
   1006       1.72        ad 	int error;
   1007       1.72        ad 	bool mpsafe;
   1008       1.23   thorpej 	struct vop_abortop_args a;
   1009       1.23   thorpej 	a.a_desc = VDESC(vop_abortop);
   1010       1.23   thorpej 	a.a_dvp = dvp;
   1011       1.23   thorpej 	a.a_cnp = cnp;
   1012       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
   1013       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1014       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_abortop), &a));
   1015       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1016       1.72        ad 	return error;
   1017       1.23   thorpej }
   1018        1.1       cgd 
   1019       1.31  jdolecek const int vop_inactive_vp_offsets[] = {
   1020        1.1       cgd 	VOPARG_OFFSETOF(struct vop_inactive_args,a_vp),
   1021        1.1       cgd 	VDESC_NO_OFFSET
   1022        1.1       cgd };
   1023       1.33  jdolecek const struct vnodeop_desc vop_inactive_desc = {
   1024       1.67     pooka 	VOP_INACTIVE_DESCOFFSET,
   1025        1.1       cgd 	"vop_inactive",
   1026       1.17  wrstuden 	0 | VDESC_VP0_WILLUNLOCK,
   1027        1.1       cgd 	vop_inactive_vp_offsets,
   1028        1.1       cgd 	VDESC_NO_OFFSET,
   1029        1.1       cgd 	VDESC_NO_OFFSET,
   1030        1.1       cgd 	VDESC_NO_OFFSET,
   1031        1.1       cgd };
   1032       1.23   thorpej int
   1033       1.75        ad VOP_INACTIVE(struct vnode *vp,
   1034       1.75        ad     bool *recycle)
   1035       1.23   thorpej {
   1036       1.72        ad 	int error;
   1037       1.72        ad 	bool mpsafe;
   1038       1.23   thorpej 	struct vop_inactive_args a;
   1039       1.23   thorpej 	a.a_desc = VDESC(vop_inactive);
   1040       1.23   thorpej 	a.a_vp = vp;
   1041       1.75        ad 	a.a_recycle = recycle;
   1042       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1043       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1044       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_inactive), &a));
   1045       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1046       1.72        ad 	return error;
   1047       1.23   thorpej }
   1048        1.1       cgd 
   1049       1.31  jdolecek const int vop_reclaim_vp_offsets[] = {
   1050        1.1       cgd 	VOPARG_OFFSETOF(struct vop_reclaim_args,a_vp),
   1051        1.1       cgd 	VDESC_NO_OFFSET
   1052        1.1       cgd };
   1053       1.33  jdolecek const struct vnodeop_desc vop_reclaim_desc = {
   1054       1.67     pooka 	VOP_RECLAIM_DESCOFFSET,
   1055        1.1       cgd 	"vop_reclaim",
   1056        1.1       cgd 	0,
   1057        1.1       cgd 	vop_reclaim_vp_offsets,
   1058        1.1       cgd 	VDESC_NO_OFFSET,
   1059        1.1       cgd 	VDESC_NO_OFFSET,
   1060        1.1       cgd 	VDESC_NO_OFFSET,
   1061        1.1       cgd };
   1062       1.23   thorpej int
   1063       1.73     pooka VOP_RECLAIM(struct vnode *vp)
   1064       1.23   thorpej {
   1065       1.72        ad 	int error;
   1066       1.72        ad 	bool mpsafe;
   1067       1.23   thorpej 	struct vop_reclaim_args a;
   1068       1.23   thorpej 	a.a_desc = VDESC(vop_reclaim);
   1069       1.23   thorpej 	a.a_vp = vp;
   1070       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1071       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1072       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_reclaim), &a));
   1073       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1074       1.72        ad 	return error;
   1075       1.23   thorpej }
   1076        1.1       cgd 
   1077       1.31  jdolecek const int vop_lock_vp_offsets[] = {
   1078        1.1       cgd 	VOPARG_OFFSETOF(struct vop_lock_args,a_vp),
   1079        1.1       cgd 	VDESC_NO_OFFSET
   1080        1.1       cgd };
   1081       1.33  jdolecek const struct vnodeop_desc vop_lock_desc = {
   1082       1.67     pooka 	VOP_LOCK_DESCOFFSET,
   1083        1.1       cgd 	"vop_lock",
   1084        1.1       cgd 	0,
   1085        1.1       cgd 	vop_lock_vp_offsets,
   1086        1.1       cgd 	VDESC_NO_OFFSET,
   1087        1.1       cgd 	VDESC_NO_OFFSET,
   1088        1.1       cgd 	VDESC_NO_OFFSET,
   1089        1.1       cgd };
   1090       1.23   thorpej int
   1091       1.60   thorpej VOP_LOCK(struct vnode *vp,
   1092       1.60   thorpej     int flags)
   1093       1.23   thorpej {
   1094       1.72        ad 	int error;
   1095       1.72        ad 	bool mpsafe;
   1096       1.23   thorpej 	struct vop_lock_args a;
   1097       1.23   thorpej 	a.a_desc = VDESC(vop_lock);
   1098       1.23   thorpej 	a.a_vp = vp;
   1099       1.23   thorpej 	a.a_flags = flags;
   1100       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1101       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1102       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_lock), &a));
   1103       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1104       1.72        ad 	return error;
   1105       1.23   thorpej }
   1106        1.1       cgd 
   1107       1.31  jdolecek const int vop_unlock_vp_offsets[] = {
   1108        1.1       cgd 	VOPARG_OFFSETOF(struct vop_unlock_args,a_vp),
   1109        1.1       cgd 	VDESC_NO_OFFSET
   1110        1.1       cgd };
   1111       1.33  jdolecek const struct vnodeop_desc vop_unlock_desc = {
   1112       1.67     pooka 	VOP_UNLOCK_DESCOFFSET,
   1113        1.1       cgd 	"vop_unlock",
   1114        1.1       cgd 	0,
   1115        1.1       cgd 	vop_unlock_vp_offsets,
   1116        1.1       cgd 	VDESC_NO_OFFSET,
   1117        1.1       cgd 	VDESC_NO_OFFSET,
   1118        1.1       cgd 	VDESC_NO_OFFSET,
   1119        1.1       cgd };
   1120       1.23   thorpej int
   1121       1.85   hannken VOP_UNLOCK(struct vnode *vp)
   1122       1.23   thorpej {
   1123       1.72        ad 	int error;
   1124       1.72        ad 	bool mpsafe;
   1125       1.23   thorpej 	struct vop_unlock_args a;
   1126       1.23   thorpej 	a.a_desc = VDESC(vop_unlock);
   1127       1.23   thorpej 	a.a_vp = vp;
   1128       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1129       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1130       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_unlock), &a));
   1131       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1132       1.72        ad 	return error;
   1133       1.23   thorpej }
   1134        1.1       cgd 
   1135       1.31  jdolecek const int vop_bmap_vp_offsets[] = {
   1136        1.1       cgd 	VOPARG_OFFSETOF(struct vop_bmap_args,a_vp),
   1137        1.1       cgd 	VDESC_NO_OFFSET
   1138        1.1       cgd };
   1139       1.33  jdolecek const struct vnodeop_desc vop_bmap_desc = {
   1140       1.67     pooka 	VOP_BMAP_DESCOFFSET,
   1141        1.1       cgd 	"vop_bmap",
   1142        1.1       cgd 	0,
   1143        1.1       cgd 	vop_bmap_vp_offsets,
   1144        1.1       cgd 	VOPARG_OFFSETOF(struct vop_bmap_args, a_vpp),
   1145        1.1       cgd 	VDESC_NO_OFFSET,
   1146        1.1       cgd 	VDESC_NO_OFFSET,
   1147        1.1       cgd };
   1148       1.23   thorpej int
   1149       1.60   thorpej VOP_BMAP(struct vnode *vp,
   1150       1.60   thorpej     daddr_t bn,
   1151       1.60   thorpej     struct vnode **vpp,
   1152       1.60   thorpej     daddr_t *bnp,
   1153       1.60   thorpej     int *runp)
   1154       1.23   thorpej {
   1155       1.72        ad 	int error;
   1156       1.72        ad 	bool mpsafe;
   1157       1.23   thorpej 	struct vop_bmap_args a;
   1158       1.23   thorpej 	a.a_desc = VDESC(vop_bmap);
   1159       1.23   thorpej 	a.a_vp = vp;
   1160       1.23   thorpej 	a.a_bn = bn;
   1161       1.23   thorpej 	a.a_vpp = vpp;
   1162       1.23   thorpej 	a.a_bnp = bnp;
   1163       1.23   thorpej 	a.a_runp = runp;
   1164       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1165       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1166       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_bmap), &a));
   1167       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1168       1.72        ad 	return error;
   1169       1.23   thorpej }
   1170        1.1       cgd 
   1171       1.46   hannken const int vop_strategy_vp_offsets[] = {
   1172       1.46   hannken 	VOPARG_OFFSETOF(struct vop_strategy_args,a_vp),
   1173       1.46   hannken 	VDESC_NO_OFFSET
   1174       1.46   hannken };
   1175       1.46   hannken const struct vnodeop_desc vop_strategy_desc = {
   1176       1.67     pooka 	VOP_STRATEGY_DESCOFFSET,
   1177       1.46   hannken 	"vop_strategy",
   1178       1.46   hannken 	0,
   1179       1.46   hannken 	vop_strategy_vp_offsets,
   1180       1.46   hannken 	VDESC_NO_OFFSET,
   1181       1.46   hannken 	VDESC_NO_OFFSET,
   1182       1.46   hannken 	VDESC_NO_OFFSET,
   1183       1.46   hannken };
   1184       1.46   hannken int
   1185       1.60   thorpej VOP_STRATEGY(struct vnode *vp,
   1186       1.60   thorpej     struct buf *bp)
   1187       1.46   hannken {
   1188       1.72        ad 	int error;
   1189       1.72        ad 	bool mpsafe;
   1190       1.46   hannken 	struct vop_strategy_args a;
   1191       1.46   hannken 	a.a_desc = VDESC(vop_strategy);
   1192       1.46   hannken 	a.a_vp = vp;
   1193       1.46   hannken 	a.a_bp = bp;
   1194       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1195       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1196       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_strategy), &a));
   1197       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1198       1.72        ad 	return error;
   1199       1.46   hannken }
   1200       1.46   hannken 
   1201       1.31  jdolecek const int vop_print_vp_offsets[] = {
   1202        1.1       cgd 	VOPARG_OFFSETOF(struct vop_print_args,a_vp),
   1203        1.1       cgd 	VDESC_NO_OFFSET
   1204        1.1       cgd };
   1205       1.33  jdolecek const struct vnodeop_desc vop_print_desc = {
   1206       1.67     pooka 	VOP_PRINT_DESCOFFSET,
   1207        1.1       cgd 	"vop_print",
   1208        1.1       cgd 	0,
   1209        1.1       cgd 	vop_print_vp_offsets,
   1210        1.1       cgd 	VDESC_NO_OFFSET,
   1211        1.1       cgd 	VDESC_NO_OFFSET,
   1212        1.1       cgd 	VDESC_NO_OFFSET,
   1213        1.1       cgd };
   1214       1.23   thorpej int
   1215       1.60   thorpej VOP_PRINT(struct vnode *vp)
   1216       1.23   thorpej {
   1217       1.72        ad 	int error;
   1218       1.72        ad 	bool mpsafe;
   1219       1.23   thorpej 	struct vop_print_args a;
   1220       1.23   thorpej 	a.a_desc = VDESC(vop_print);
   1221       1.23   thorpej 	a.a_vp = vp;
   1222       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1223       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1224       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_print), &a));
   1225       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1226       1.72        ad 	return error;
   1227       1.23   thorpej }
   1228        1.1       cgd 
   1229       1.31  jdolecek const int vop_islocked_vp_offsets[] = {
   1230        1.1       cgd 	VOPARG_OFFSETOF(struct vop_islocked_args,a_vp),
   1231        1.1       cgd 	VDESC_NO_OFFSET
   1232        1.1       cgd };
   1233       1.33  jdolecek const struct vnodeop_desc vop_islocked_desc = {
   1234       1.67     pooka 	VOP_ISLOCKED_DESCOFFSET,
   1235        1.1       cgd 	"vop_islocked",
   1236        1.1       cgd 	0,
   1237        1.1       cgd 	vop_islocked_vp_offsets,
   1238        1.1       cgd 	VDESC_NO_OFFSET,
   1239        1.1       cgd 	VDESC_NO_OFFSET,
   1240        1.1       cgd 	VDESC_NO_OFFSET,
   1241        1.1       cgd };
   1242       1.23   thorpej int
   1243       1.60   thorpej VOP_ISLOCKED(struct vnode *vp)
   1244       1.23   thorpej {
   1245       1.72        ad 	int error;
   1246       1.72        ad 	bool mpsafe;
   1247       1.23   thorpej 	struct vop_islocked_args a;
   1248       1.23   thorpej 	a.a_desc = VDESC(vop_islocked);
   1249       1.23   thorpej 	a.a_vp = vp;
   1250       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1251       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1252       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_islocked), &a));
   1253       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1254       1.72        ad 	return error;
   1255       1.23   thorpej }
   1256        1.1       cgd 
   1257       1.31  jdolecek const int vop_pathconf_vp_offsets[] = {
   1258        1.1       cgd 	VOPARG_OFFSETOF(struct vop_pathconf_args,a_vp),
   1259        1.1       cgd 	VDESC_NO_OFFSET
   1260        1.1       cgd };
   1261       1.33  jdolecek const struct vnodeop_desc vop_pathconf_desc = {
   1262       1.67     pooka 	VOP_PATHCONF_DESCOFFSET,
   1263        1.1       cgd 	"vop_pathconf",
   1264        1.1       cgd 	0,
   1265        1.1       cgd 	vop_pathconf_vp_offsets,
   1266        1.1       cgd 	VDESC_NO_OFFSET,
   1267        1.1       cgd 	VDESC_NO_OFFSET,
   1268        1.1       cgd 	VDESC_NO_OFFSET,
   1269        1.1       cgd };
   1270       1.23   thorpej int
   1271       1.60   thorpej VOP_PATHCONF(struct vnode *vp,
   1272       1.60   thorpej     int name,
   1273       1.60   thorpej     register_t *retval)
   1274       1.23   thorpej {
   1275       1.72        ad 	int error;
   1276       1.72        ad 	bool mpsafe;
   1277       1.23   thorpej 	struct vop_pathconf_args a;
   1278       1.23   thorpej 	a.a_desc = VDESC(vop_pathconf);
   1279       1.23   thorpej 	a.a_vp = vp;
   1280       1.23   thorpej 	a.a_name = name;
   1281       1.23   thorpej 	a.a_retval = retval;
   1282       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1283       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1284       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_pathconf), &a));
   1285       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1286       1.72        ad 	return error;
   1287       1.23   thorpej }
   1288        1.1       cgd 
   1289       1.31  jdolecek const int vop_advlock_vp_offsets[] = {
   1290        1.1       cgd 	VOPARG_OFFSETOF(struct vop_advlock_args,a_vp),
   1291        1.1       cgd 	VDESC_NO_OFFSET
   1292        1.1       cgd };
   1293       1.33  jdolecek const struct vnodeop_desc vop_advlock_desc = {
   1294       1.67     pooka 	VOP_ADVLOCK_DESCOFFSET,
   1295        1.1       cgd 	"vop_advlock",
   1296        1.1       cgd 	0,
   1297        1.1       cgd 	vop_advlock_vp_offsets,
   1298        1.1       cgd 	VDESC_NO_OFFSET,
   1299        1.1       cgd 	VDESC_NO_OFFSET,
   1300        1.1       cgd 	VDESC_NO_OFFSET,
   1301        1.1       cgd };
   1302       1.23   thorpej int
   1303       1.60   thorpej VOP_ADVLOCK(struct vnode *vp,
   1304       1.60   thorpej     void *id,
   1305       1.60   thorpej     int op,
   1306       1.60   thorpej     struct flock *fl,
   1307       1.60   thorpej     int flags)
   1308       1.23   thorpej {
   1309       1.72        ad 	int error;
   1310       1.72        ad 	bool mpsafe;
   1311       1.23   thorpej 	struct vop_advlock_args a;
   1312       1.23   thorpej 	a.a_desc = VDESC(vop_advlock);
   1313       1.23   thorpej 	a.a_vp = vp;
   1314       1.23   thorpej 	a.a_id = id;
   1315       1.23   thorpej 	a.a_op = op;
   1316       1.23   thorpej 	a.a_fl = fl;
   1317       1.23   thorpej 	a.a_flags = flags;
   1318       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1319       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1320       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_advlock), &a));
   1321       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1322       1.72        ad 	return error;
   1323       1.23   thorpej }
   1324        1.1       cgd 
   1325       1.31  jdolecek const int vop_whiteout_vp_offsets[] = {
   1326        1.1       cgd 	VOPARG_OFFSETOF(struct vop_whiteout_args,a_dvp),
   1327        1.1       cgd 	VDESC_NO_OFFSET
   1328        1.1       cgd };
   1329       1.33  jdolecek const struct vnodeop_desc vop_whiteout_desc = {
   1330       1.67     pooka 	VOP_WHITEOUT_DESCOFFSET,
   1331        1.1       cgd 	"vop_whiteout",
   1332        1.1       cgd 	0,
   1333        1.1       cgd 	vop_whiteout_vp_offsets,
   1334        1.1       cgd 	VDESC_NO_OFFSET,
   1335        1.1       cgd 	VDESC_NO_OFFSET,
   1336        1.1       cgd 	VOPARG_OFFSETOF(struct vop_whiteout_args, a_cnp),
   1337        1.1       cgd };
   1338       1.23   thorpej int
   1339       1.60   thorpej VOP_WHITEOUT(struct vnode *dvp,
   1340       1.60   thorpej     struct componentname *cnp,
   1341       1.60   thorpej     int flags)
   1342       1.23   thorpej {
   1343       1.72        ad 	int error;
   1344       1.72        ad 	bool mpsafe;
   1345       1.23   thorpej 	struct vop_whiteout_args a;
   1346       1.23   thorpej 	a.a_desc = VDESC(vop_whiteout);
   1347       1.23   thorpej 	a.a_dvp = dvp;
   1348       1.23   thorpej 	a.a_cnp = cnp;
   1349       1.23   thorpej 	a.a_flags = flags;
   1350       1.72        ad 	mpsafe = (dvp->v_vflag & VV_MPSAFE);
   1351       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1352       1.72        ad 	error = (VCALL(dvp, VOFFSET(vop_whiteout), &a));
   1353       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1354       1.72        ad 	return error;
   1355       1.23   thorpej }
   1356        1.1       cgd 
   1357       1.31  jdolecek const int vop_getpages_vp_offsets[] = {
   1358       1.26       chs 	VOPARG_OFFSETOF(struct vop_getpages_args,a_vp),
   1359       1.26       chs 	VDESC_NO_OFFSET
   1360       1.26       chs };
   1361       1.33  jdolecek const struct vnodeop_desc vop_getpages_desc = {
   1362       1.67     pooka 	VOP_GETPAGES_DESCOFFSET,
   1363       1.26       chs 	"vop_getpages",
   1364       1.26       chs 	0,
   1365       1.26       chs 	vop_getpages_vp_offsets,
   1366       1.26       chs 	VDESC_NO_OFFSET,
   1367       1.26       chs 	VDESC_NO_OFFSET,
   1368       1.26       chs 	VDESC_NO_OFFSET,
   1369       1.26       chs };
   1370       1.26       chs int
   1371       1.60   thorpej VOP_GETPAGES(struct vnode *vp,
   1372       1.60   thorpej     voff_t offset,
   1373       1.60   thorpej     struct vm_page **m,
   1374       1.60   thorpej     int *count,
   1375       1.60   thorpej     int centeridx,
   1376       1.60   thorpej     vm_prot_t access_type,
   1377       1.60   thorpej     int advice,
   1378       1.60   thorpej     int flags)
   1379       1.26       chs {
   1380       1.72        ad 	int error;
   1381       1.72        ad 	bool mpsafe;
   1382       1.26       chs 	struct vop_getpages_args a;
   1383       1.26       chs 	a.a_desc = VDESC(vop_getpages);
   1384       1.26       chs 	a.a_vp = vp;
   1385       1.26       chs 	a.a_offset = offset;
   1386       1.26       chs 	a.a_m = m;
   1387       1.26       chs 	a.a_count = count;
   1388       1.26       chs 	a.a_centeridx = centeridx;
   1389       1.26       chs 	a.a_access_type = access_type;
   1390       1.26       chs 	a.a_advice = advice;
   1391       1.26       chs 	a.a_flags = flags;
   1392       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1393       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1394       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_getpages), &a));
   1395       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1396       1.72        ad 	return error;
   1397       1.26       chs }
   1398       1.26       chs 
   1399       1.31  jdolecek const int vop_putpages_vp_offsets[] = {
   1400       1.26       chs 	VOPARG_OFFSETOF(struct vop_putpages_args,a_vp),
   1401       1.26       chs 	VDESC_NO_OFFSET
   1402       1.26       chs };
   1403       1.33  jdolecek const struct vnodeop_desc vop_putpages_desc = {
   1404       1.67     pooka 	VOP_PUTPAGES_DESCOFFSET,
   1405       1.26       chs 	"vop_putpages",
   1406       1.26       chs 	0,
   1407       1.26       chs 	vop_putpages_vp_offsets,
   1408       1.26       chs 	VDESC_NO_OFFSET,
   1409       1.26       chs 	VDESC_NO_OFFSET,
   1410       1.26       chs 	VDESC_NO_OFFSET,
   1411       1.26       chs };
   1412       1.26       chs int
   1413       1.60   thorpej VOP_PUTPAGES(struct vnode *vp,
   1414       1.60   thorpej     voff_t offlo,
   1415       1.60   thorpej     voff_t offhi,
   1416       1.60   thorpej     int flags)
   1417       1.26       chs {
   1418       1.72        ad 	int error;
   1419       1.72        ad 	bool mpsafe;
   1420       1.26       chs 	struct vop_putpages_args a;
   1421       1.26       chs 	a.a_desc = VDESC(vop_putpages);
   1422       1.26       chs 	a.a_vp = vp;
   1423       1.38       chs 	a.a_offlo = offlo;
   1424       1.38       chs 	a.a_offhi = offhi;
   1425       1.26       chs 	a.a_flags = flags;
   1426       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1427       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1428       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_putpages), &a));
   1429       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1430       1.72        ad 	return error;
   1431       1.26       chs }
   1432       1.26       chs 
   1433       1.51   thorpej const int vop_closeextattr_vp_offsets[] = {
   1434       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_closeextattr_args,a_vp),
   1435       1.51   thorpej 	VDESC_NO_OFFSET
   1436       1.51   thorpej };
   1437       1.51   thorpej const struct vnodeop_desc vop_closeextattr_desc = {
   1438       1.67     pooka 	VOP_CLOSEEXTATTR_DESCOFFSET,
   1439       1.51   thorpej 	"vop_closeextattr",
   1440       1.51   thorpej 	0,
   1441       1.51   thorpej 	vop_closeextattr_vp_offsets,
   1442       1.51   thorpej 	VDESC_NO_OFFSET,
   1443       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_closeextattr_args, a_cred),
   1444       1.51   thorpej 	VDESC_NO_OFFSET,
   1445       1.51   thorpej };
   1446       1.51   thorpej int
   1447       1.60   thorpej VOP_CLOSEEXTATTR(struct vnode *vp,
   1448       1.60   thorpej     int commit,
   1449       1.73     pooka     kauth_cred_t cred)
   1450       1.51   thorpej {
   1451       1.72        ad 	int error;
   1452       1.72        ad 	bool mpsafe;
   1453       1.51   thorpej 	struct vop_closeextattr_args a;
   1454       1.51   thorpej 	a.a_desc = VDESC(vop_closeextattr);
   1455       1.51   thorpej 	a.a_vp = vp;
   1456       1.51   thorpej 	a.a_commit = commit;
   1457       1.51   thorpej 	a.a_cred = cred;
   1458       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1459       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1460       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_closeextattr), &a));
   1461       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1462       1.72        ad 	return error;
   1463       1.51   thorpej }
   1464       1.51   thorpej 
   1465       1.51   thorpej const int vop_getextattr_vp_offsets[] = {
   1466       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_getextattr_args,a_vp),
   1467       1.51   thorpej 	VDESC_NO_OFFSET
   1468       1.51   thorpej };
   1469       1.51   thorpej const struct vnodeop_desc vop_getextattr_desc = {
   1470       1.67     pooka 	VOP_GETEXTATTR_DESCOFFSET,
   1471       1.51   thorpej 	"vop_getextattr",
   1472       1.51   thorpej 	0,
   1473       1.51   thorpej 	vop_getextattr_vp_offsets,
   1474       1.51   thorpej 	VDESC_NO_OFFSET,
   1475       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_getextattr_args, a_cred),
   1476       1.51   thorpej 	VDESC_NO_OFFSET,
   1477       1.51   thorpej };
   1478       1.51   thorpej int
   1479       1.60   thorpej VOP_GETEXTATTR(struct vnode *vp,
   1480       1.60   thorpej     int attrnamespace,
   1481       1.60   thorpej     const char *name,
   1482       1.60   thorpej     struct uio *uio,
   1483       1.60   thorpej     size_t *size,
   1484       1.73     pooka     kauth_cred_t cred)
   1485       1.51   thorpej {
   1486       1.72        ad 	int error;
   1487       1.72        ad 	bool mpsafe;
   1488       1.51   thorpej 	struct vop_getextattr_args a;
   1489       1.51   thorpej 	a.a_desc = VDESC(vop_getextattr);
   1490       1.51   thorpej 	a.a_vp = vp;
   1491       1.51   thorpej 	a.a_attrnamespace = attrnamespace;
   1492       1.51   thorpej 	a.a_name = name;
   1493       1.51   thorpej 	a.a_uio = uio;
   1494       1.51   thorpej 	a.a_size = size;
   1495       1.51   thorpej 	a.a_cred = cred;
   1496       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1497       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1498       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_getextattr), &a));
   1499       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1500       1.72        ad 	return error;
   1501       1.51   thorpej }
   1502       1.51   thorpej 
   1503       1.51   thorpej const int vop_listextattr_vp_offsets[] = {
   1504       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_listextattr_args,a_vp),
   1505       1.51   thorpej 	VDESC_NO_OFFSET
   1506       1.51   thorpej };
   1507       1.51   thorpej const struct vnodeop_desc vop_listextattr_desc = {
   1508       1.67     pooka 	VOP_LISTEXTATTR_DESCOFFSET,
   1509       1.51   thorpej 	"vop_listextattr",
   1510       1.51   thorpej 	0,
   1511       1.51   thorpej 	vop_listextattr_vp_offsets,
   1512       1.51   thorpej 	VDESC_NO_OFFSET,
   1513       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_listextattr_args, a_cred),
   1514       1.51   thorpej 	VDESC_NO_OFFSET,
   1515       1.51   thorpej };
   1516       1.51   thorpej int
   1517       1.60   thorpej VOP_LISTEXTATTR(struct vnode *vp,
   1518       1.60   thorpej     int attrnamespace,
   1519       1.60   thorpej     struct uio *uio,
   1520       1.60   thorpej     size_t *size,
   1521       1.87      manu     int flag,
   1522       1.73     pooka     kauth_cred_t cred)
   1523       1.51   thorpej {
   1524       1.72        ad 	int error;
   1525       1.72        ad 	bool mpsafe;
   1526       1.51   thorpej 	struct vop_listextattr_args a;
   1527       1.51   thorpej 	a.a_desc = VDESC(vop_listextattr);
   1528       1.51   thorpej 	a.a_vp = vp;
   1529       1.51   thorpej 	a.a_attrnamespace = attrnamespace;
   1530       1.51   thorpej 	a.a_uio = uio;
   1531       1.51   thorpej 	a.a_size = size;
   1532       1.87      manu 	a.a_flag = flag;
   1533       1.51   thorpej 	a.a_cred = cred;
   1534       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1535       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1536       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_listextattr), &a));
   1537       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1538       1.72        ad 	return error;
   1539       1.51   thorpej }
   1540       1.51   thorpej 
   1541       1.51   thorpej const int vop_openextattr_vp_offsets[] = {
   1542       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_openextattr_args,a_vp),
   1543       1.51   thorpej 	VDESC_NO_OFFSET
   1544       1.51   thorpej };
   1545       1.51   thorpej const struct vnodeop_desc vop_openextattr_desc = {
   1546       1.67     pooka 	VOP_OPENEXTATTR_DESCOFFSET,
   1547       1.51   thorpej 	"vop_openextattr",
   1548       1.51   thorpej 	0,
   1549       1.51   thorpej 	vop_openextattr_vp_offsets,
   1550       1.51   thorpej 	VDESC_NO_OFFSET,
   1551       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_openextattr_args, a_cred),
   1552       1.51   thorpej 	VDESC_NO_OFFSET,
   1553       1.51   thorpej };
   1554       1.51   thorpej int
   1555       1.60   thorpej VOP_OPENEXTATTR(struct vnode *vp,
   1556       1.73     pooka     kauth_cred_t cred)
   1557       1.51   thorpej {
   1558       1.72        ad 	int error;
   1559       1.72        ad 	bool mpsafe;
   1560       1.51   thorpej 	struct vop_openextattr_args a;
   1561       1.51   thorpej 	a.a_desc = VDESC(vop_openextattr);
   1562       1.51   thorpej 	a.a_vp = vp;
   1563       1.51   thorpej 	a.a_cred = cred;
   1564       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1565       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1566       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_openextattr), &a));
   1567       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1568       1.72        ad 	return error;
   1569       1.51   thorpej }
   1570       1.51   thorpej 
   1571       1.51   thorpej const int vop_deleteextattr_vp_offsets[] = {
   1572       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_deleteextattr_args,a_vp),
   1573       1.51   thorpej 	VDESC_NO_OFFSET
   1574       1.51   thorpej };
   1575       1.51   thorpej const struct vnodeop_desc vop_deleteextattr_desc = {
   1576       1.67     pooka 	VOP_DELETEEXTATTR_DESCOFFSET,
   1577       1.51   thorpej 	"vop_deleteextattr",
   1578       1.51   thorpej 	0,
   1579       1.51   thorpej 	vop_deleteextattr_vp_offsets,
   1580       1.51   thorpej 	VDESC_NO_OFFSET,
   1581       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_deleteextattr_args, a_cred),
   1582       1.51   thorpej 	VDESC_NO_OFFSET,
   1583       1.51   thorpej };
   1584       1.51   thorpej int
   1585       1.60   thorpej VOP_DELETEEXTATTR(struct vnode *vp,
   1586       1.60   thorpej     int attrnamespace,
   1587       1.60   thorpej     const char *name,
   1588       1.73     pooka     kauth_cred_t cred)
   1589       1.51   thorpej {
   1590       1.72        ad 	int error;
   1591       1.72        ad 	bool mpsafe;
   1592       1.51   thorpej 	struct vop_deleteextattr_args a;
   1593       1.51   thorpej 	a.a_desc = VDESC(vop_deleteextattr);
   1594       1.51   thorpej 	a.a_vp = vp;
   1595       1.51   thorpej 	a.a_attrnamespace = attrnamespace;
   1596       1.51   thorpej 	a.a_name = name;
   1597       1.51   thorpej 	a.a_cred = cred;
   1598       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1599       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1600       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_deleteextattr), &a));
   1601       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1602       1.72        ad 	return error;
   1603       1.51   thorpej }
   1604       1.51   thorpej 
   1605       1.51   thorpej const int vop_setextattr_vp_offsets[] = {
   1606       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_setextattr_args,a_vp),
   1607       1.51   thorpej 	VDESC_NO_OFFSET
   1608       1.51   thorpej };
   1609       1.51   thorpej const struct vnodeop_desc vop_setextattr_desc = {
   1610       1.67     pooka 	VOP_SETEXTATTR_DESCOFFSET,
   1611       1.51   thorpej 	"vop_setextattr",
   1612       1.51   thorpej 	0,
   1613       1.51   thorpej 	vop_setextattr_vp_offsets,
   1614       1.51   thorpej 	VDESC_NO_OFFSET,
   1615       1.51   thorpej 	VOPARG_OFFSETOF(struct vop_setextattr_args, a_cred),
   1616       1.51   thorpej 	VDESC_NO_OFFSET,
   1617       1.51   thorpej };
   1618       1.51   thorpej int
   1619       1.60   thorpej VOP_SETEXTATTR(struct vnode *vp,
   1620       1.60   thorpej     int attrnamespace,
   1621       1.60   thorpej     const char *name,
   1622       1.60   thorpej     struct uio *uio,
   1623       1.73     pooka     kauth_cred_t cred)
   1624       1.51   thorpej {
   1625       1.72        ad 	int error;
   1626       1.72        ad 	bool mpsafe;
   1627       1.51   thorpej 	struct vop_setextattr_args a;
   1628       1.51   thorpej 	a.a_desc = VDESC(vop_setextattr);
   1629       1.51   thorpej 	a.a_vp = vp;
   1630       1.51   thorpej 	a.a_attrnamespace = attrnamespace;
   1631       1.51   thorpej 	a.a_name = name;
   1632       1.51   thorpej 	a.a_uio = uio;
   1633       1.51   thorpej 	a.a_cred = cred;
   1634       1.72        ad 	mpsafe = (vp->v_vflag & VV_MPSAFE);
   1635       1.72        ad 	if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
   1636       1.72        ad 	error = (VCALL(vp, VOFFSET(vop_setextattr), &a));
   1637       1.72        ad 	if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
   1638       1.72        ad 	return error;
   1639       1.51   thorpej }
   1640       1.51   thorpej 
   1641       1.33  jdolecek const struct vnodeop_desc * const vfs_op_descs[] = {
   1642        1.1       cgd 	&vop_default_desc,	/* MUST BE FIRST */
   1643        1.1       cgd 
   1644       1.88   hannken 	&vop_bwrite_desc,
   1645        1.1       cgd 	&vop_lookup_desc,
   1646        1.1       cgd 	&vop_create_desc,
   1647        1.1       cgd 	&vop_mknod_desc,
   1648        1.1       cgd 	&vop_open_desc,
   1649        1.1       cgd 	&vop_close_desc,
   1650        1.1       cgd 	&vop_access_desc,
   1651        1.1       cgd 	&vop_getattr_desc,
   1652        1.1       cgd 	&vop_setattr_desc,
   1653        1.1       cgd 	&vop_read_desc,
   1654        1.1       cgd 	&vop_write_desc,
   1655        1.1       cgd 	&vop_ioctl_desc,
   1656       1.18  wrstuden 	&vop_fcntl_desc,
   1657        1.3   mycroft 	&vop_poll_desc,
   1658       1.40  jdolecek 	&vop_kqfilter_desc,
   1659       1.10      fvdl 	&vop_revoke_desc,
   1660        1.1       cgd 	&vop_mmap_desc,
   1661        1.1       cgd 	&vop_fsync_desc,
   1662        1.1       cgd 	&vop_seek_desc,
   1663        1.1       cgd 	&vop_remove_desc,
   1664        1.1       cgd 	&vop_link_desc,
   1665        1.1       cgd 	&vop_rename_desc,
   1666        1.1       cgd 	&vop_mkdir_desc,
   1667        1.1       cgd 	&vop_rmdir_desc,
   1668        1.1       cgd 	&vop_symlink_desc,
   1669        1.1       cgd 	&vop_readdir_desc,
   1670        1.1       cgd 	&vop_readlink_desc,
   1671        1.1       cgd 	&vop_abortop_desc,
   1672        1.1       cgd 	&vop_inactive_desc,
   1673        1.1       cgd 	&vop_reclaim_desc,
   1674        1.1       cgd 	&vop_lock_desc,
   1675        1.1       cgd 	&vop_unlock_desc,
   1676        1.1       cgd 	&vop_bmap_desc,
   1677       1.46   hannken 	&vop_strategy_desc,
   1678        1.1       cgd 	&vop_print_desc,
   1679        1.1       cgd 	&vop_islocked_desc,
   1680        1.1       cgd 	&vop_pathconf_desc,
   1681        1.1       cgd 	&vop_advlock_desc,
   1682        1.1       cgd 	&vop_whiteout_desc,
   1683       1.26       chs 	&vop_getpages_desc,
   1684       1.26       chs 	&vop_putpages_desc,
   1685       1.51   thorpej 	&vop_closeextattr_desc,
   1686       1.51   thorpej 	&vop_getextattr_desc,
   1687       1.51   thorpej 	&vop_listextattr_desc,
   1688       1.51   thorpej 	&vop_openextattr_desc,
   1689       1.51   thorpej 	&vop_deleteextattr_desc,
   1690       1.51   thorpej 	&vop_setextattr_desc,
   1691        1.1       cgd 	NULL
   1692        1.1       cgd };
   1693