Lines Matching refs:realvp

1299 	struct vnode *realvp;  in spec_getattr()  local
1312 realvp = sp->s_realvp; in spec_getattr()
1314 if (realvp == NULL) { in spec_getattr()
1355 error = VOP_GETATTR(realvp, vap, flags, cr, ct); in spec_getattr()
1387 struct vnode *realvp; in spec_setattr() local
1403 if ((realvp = sp->s_realvp) == NULL) in spec_setattr()
1406 error = VOP_SETATTR(realvp, vap, flags, cr, ct); in spec_setattr()
1431 struct vnode *realvp; in spec_access() local
1438 if ((realvp = sp->s_realvp) != NULL) in spec_access()
1439 return (VOP_ACCESS(realvp, mode, flags, cr, ct)); in spec_access()
1492 struct vnode *realvp; in spec_fsync() local
1507 realvp = sp->s_realvp; in spec_fsync()
1540 if (realvp == NULL) in spec_fsync()
1544 if (VOP_GETATTR(realvp, &vatmp, 0, cr, ct) == 0) { in spec_fsync()
1562 (void) VOP_SETATTR(realvp, &va, 0, cr, ct); in spec_fsync()
1564 (void) VOP_FSYNC(realvp, syncflag, cr, ct); in spec_fsync()
1690 struct vnode *realvp; in spec_fid() local
1693 if ((realvp = sp->s_realvp) != NULL) in spec_fid()
1694 return (VOP_FID(realvp, fidp, ct)); in spec_fid()
2621 struct vnode *realvp; in spec_setsecattr() local
2636 if ((realvp = sp->s_realvp) != NULL) { in spec_setsecattr()
2637 (void) VOP_RWLOCK(realvp, V_WRITELOCK_TRUE, ct); in spec_setsecattr()
2638 error = VOP_SETSECATTR(realvp, vsap, flag, cr, ct); in spec_setsecattr()
2639 (void) VOP_RWUNLOCK(realvp, V_WRITELOCK_TRUE, ct); in spec_setsecattr()
2657 struct vnode *realvp; in spec_getsecattr() local
2664 if ((realvp = sp->s_realvp) != NULL) in spec_getsecattr()
2665 return (VOP_GETSECATTR(realvp, vsap, flag, cr, ct)); in spec_getsecattr()
2678 vnode_t *realvp; in spec_pathconf() local
2685 if ((realvp = sp->s_realvp) != NULL) in spec_pathconf()
2686 return (VOP_PATHCONF(realvp, cmd, valp, cr, ct)); in spec_pathconf()