Module Name: src Committed By: riastradh Date: Fri May 26 14:21:55 UTC 2017
Modified Files: src/sys/kern: vnode_if.c src/sys/rump/include/rump: rumpvnode_if.h src/sys/rump/librump/rumpvfs: rumpvnode_if.c src/sys/sys: vnode_if.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.103 -r1.104 src/sys/kern/vnode_if.c cvs rdiff -u -r1.27 -r1.28 src/sys/rump/include/rump/rumpvnode_if.h cvs rdiff -u -r1.27 -r1.28 src/sys/rump/librump/rumpvfs/rumpvnode_if.c cvs rdiff -u -r1.98 -r1.99 src/sys/sys/vnode_if.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/vnode_if.c diff -u src/sys/kern/vnode_if.c:1.103 src/sys/kern/vnode_if.c:1.104 --- src/sys/kern/vnode_if.c:1.103 Wed Apr 26 03:04:24 2017 +++ src/sys/kern/vnode_if.c Fri May 26 14:21:54 2017 @@ -1,11 +1,11 @@ -/* $NetBSD: vnode_if.c,v 1.103 2017/04/26 03:04:24 riastradh Exp $ */ +/* $NetBSD: vnode_if.c,v 1.104 2017/05/26 14:21:54 riastradh Exp $ */ /* * Warning: DO NOT EDIT! This file is automatically generated! * (Modifications made here may easily be lost!) * * Created from the file: - * NetBSD: vnode_if.src,v 1.74 2017/04/26 03:02:49 riastradh Exp + * NetBSD: vnode_if.src,v 1.75 2017/05/26 14:21:00 riastradh Exp * by the script: * NetBSD: vnode_if.sh,v 1.64 2017/04/16 17:18:28 riastradh Exp */ @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.103 2017/04/26 03:04:24 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.104 2017/05/26 14:21:54 riastradh Exp $"); #include <sys/param.h> #include <sys/mount.h> @@ -1133,7 +1133,7 @@ VOP_INACTIVE(struct vnode *vp, } const int vop_reclaim_vp_offsets[] = { - VOPARG_OFFSETOF(struct vop_reclaim_args,a_vp), + VOPARG_OFFSETOF(struct vop_reclaim_v2_args,a_vp), VDESC_NO_OFFSET }; const struct vnodeop_desc vop_reclaim_desc = { @@ -1150,7 +1150,7 @@ VOP_RECLAIM(struct vnode *vp) { int error; bool mpsafe; - struct vop_reclaim_args a; + struct vop_reclaim_v2_args a; a.a_desc = VDESC(vop_reclaim); a.a_vp = vp; mpsafe = (vp->v_vflag & VV_MPSAFE); Index: src/sys/rump/include/rump/rumpvnode_if.h diff -u src/sys/rump/include/rump/rumpvnode_if.h:1.27 src/sys/rump/include/rump/rumpvnode_if.h:1.28 --- src/sys/rump/include/rump/rumpvnode_if.h:1.27 Wed Apr 26 03:04:24 2017 +++ src/sys/rump/include/rump/rumpvnode_if.h Fri May 26 14:21:54 2017 @@ -1,11 +1,11 @@ -/* $NetBSD: rumpvnode_if.h,v 1.27 2017/04/26 03:04:24 riastradh Exp $ */ +/* $NetBSD: rumpvnode_if.h,v 1.28 2017/05/26 14:21:54 riastradh Exp $ */ /* * Warning: DO NOT EDIT! This file is automatically generated! * (Modifications made here may easily be lost!) * * Created from the file: - * NetBSD: vnode_if.src,v 1.74 2017/04/26 03:02:49 riastradh Exp + * NetBSD: vnode_if.src,v 1.75 2017/05/26 14:21:00 riastradh Exp * by the script: * NetBSD: vnode_if.sh,v 1.64 2017/04/16 17:18:28 riastradh Exp */ Index: src/sys/rump/librump/rumpvfs/rumpvnode_if.c diff -u src/sys/rump/librump/rumpvfs/rumpvnode_if.c:1.27 src/sys/rump/librump/rumpvfs/rumpvnode_if.c:1.28 --- src/sys/rump/librump/rumpvfs/rumpvnode_if.c:1.27 Wed Apr 26 03:04:24 2017 +++ src/sys/rump/librump/rumpvfs/rumpvnode_if.c Fri May 26 14:21:54 2017 @@ -1,11 +1,11 @@ -/* $NetBSD: rumpvnode_if.c,v 1.27 2017/04/26 03:04:24 riastradh Exp $ */ +/* $NetBSD: rumpvnode_if.c,v 1.28 2017/05/26 14:21:54 riastradh Exp $ */ /* * Warning: DO NOT EDIT! This file is automatically generated! * (Modifications made here may easily be lost!) * * Created from the file: - * NetBSD: vnode_if.src,v 1.74 2017/04/26 03:02:49 riastradh Exp + * NetBSD: vnode_if.src,v 1.75 2017/05/26 14:21:00 riastradh Exp * by the script: * NetBSD: vnode_if.sh,v 1.64 2017/04/16 17:18:28 riastradh Exp */ @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.27 2017/04/26 03:04:24 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.28 2017/05/26 14:21:54 riastradh Exp $"); #include <sys/param.h> #include <sys/mount.h> Index: src/sys/sys/vnode_if.h diff -u src/sys/sys/vnode_if.h:1.98 src/sys/sys/vnode_if.h:1.99 --- src/sys/sys/vnode_if.h:1.98 Wed Apr 26 03:04:24 2017 +++ src/sys/sys/vnode_if.h Fri May 26 14:21:55 2017 @@ -1,11 +1,11 @@ -/* $NetBSD: vnode_if.h,v 1.98 2017/04/26 03:04:24 riastradh Exp $ */ +/* $NetBSD: vnode_if.h,v 1.99 2017/05/26 14:21:55 riastradh Exp $ */ /* * Warning: DO NOT EDIT! This file is automatically generated! * (Modifications made here may easily be lost!) * * Created from the file: - * NetBSD: vnode_if.src,v 1.74 2017/04/26 03:02:49 riastradh Exp + * NetBSD: vnode_if.src,v 1.75 2017/05/26 14:21:00 riastradh Exp * by the script: * NetBSD: vnode_if.sh,v 1.64 2017/04/16 17:18:28 riastradh Exp */ @@ -381,7 +381,7 @@ extern const struct vnodeop_desc vop_ina int VOP_INACTIVE(struct vnode *, bool *); #define VOP_RECLAIM_DESCOFFSET 32 -struct vop_reclaim_args { +struct vop_reclaim_v2_args { const struct vnodeop_desc *a_desc; struct vnode *a_vp; };