Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Regen.
details: https://anonhg.NetBSD.org/src/rev/7e7b1375c905
branches: trunk
changeset: 365923:7e7b1375c905
user: hannken <hannken%NetBSD.org@localhost>
date: Tue May 03 13:55:29 2022 +0000
description:
Regen.
diffstat:
sys/kern/vnode_if.c | 12 +++++++++---
sys/rump/include/rump/rumpvnode_if.h | 4 ++--
sys/rump/librump/rumpvfs/rumpvnode_if.c | 6 +++---
sys/sys/vnode_if.h | 4 ++--
4 files changed, 16 insertions(+), 10 deletions(-)
diffs (125 lines):
diff -r 66c381598caa -r 7e7b1375c905 sys/kern/vnode_if.c
--- a/sys/kern/vnode_if.c Tue May 03 13:54:18 2022 +0000
+++ b/sys/kern/vnode_if.c Tue May 03 13:55:29 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode_if.c,v 1.116 2022/05/03 08:35:11 hannken Exp $ */
+/* $NetBSD: vnode_if.c,v 1.117 2022/05/03 13:55:29 hannken Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@@ -7,7 +7,7 @@
* Created from the file:
* NetBSD: vnode_if.src,v 1.84 2022/05/03 08:33:59 hannken Exp
* by the script:
- * NetBSD: vnode_if.sh,v 1.74 2022/05/03 08:33:59 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.75 2022/05/03 13:54:18 hannken Exp
*/
/*
@@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.116 2022/05/03 08:35:11 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.117 2022/05/03 13:55:29 hannken Exp $");
#ifdef _KERNEL_OPT
#include "opt_vnode_lockdebug.h"
@@ -303,28 +303,34 @@
static inline void
assert_vop_unlocked(vnode_t *vp, const char *str)
{
+#if defined(VNODE_LOCKDEBUG)
if (VOP_ISLOCKED(vp) == LK_EXCLUSIVE)
panic("%s: %p %d/%d is locked but should not be",
str, vp, vp->v_tag, vp->v_type);
+#endif
}
static inline void
assert_vop_locked(vnode_t *vp, const char *str)
{
+#if defined(VNODE_LOCKDEBUG)
if (VOP_ISLOCKED(vp) == LK_NONE)
panic("%s: %p %d/%d is not locked but should be",
str, vp, vp->v_tag, vp->v_type);
+#endif
}
static inline void
assert_vop_elocked(vnode_t *vp, const char *str)
{
+#if defined(VNODE_LOCKDEBUG)
if (VOP_ISLOCKED(vp) != LK_EXCLUSIVE)
panic("%s: %p %d/%d is not exclusive locked but should be",
str, vp, vp->v_tag, vp->v_type);
+#endif
}
const struct vnodeop_desc vop_default_desc = {
diff -r 66c381598caa -r 7e7b1375c905 sys/rump/include/rump/rumpvnode_if.h
--- a/sys/rump/include/rump/rumpvnode_if.h Tue May 03 13:54:18 2022 +0000
+++ b/sys/rump/include/rump/rumpvnode_if.h Tue May 03 13:55:29 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvnode_if.h,v 1.38 2022/05/03 08:35:11 hannken Exp $ */
+/* $NetBSD: rumpvnode_if.h,v 1.39 2022/05/03 13:55:29 hannken Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@@ -7,7 +7,7 @@
* Created from the file:
* NetBSD: vnode_if.src,v 1.84 2022/05/03 08:33:59 hannken Exp
* by the script:
- * NetBSD: vnode_if.sh,v 1.74 2022/05/03 08:33:59 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.75 2022/05/03 13:54:18 hannken Exp
*/
/*
diff -r 66c381598caa -r 7e7b1375c905 sys/rump/librump/rumpvfs/rumpvnode_if.c
--- a/sys/rump/librump/rumpvfs/rumpvnode_if.c Tue May 03 13:54:18 2022 +0000
+++ b/sys/rump/librump/rumpvfs/rumpvnode_if.c Tue May 03 13:55:29 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvnode_if.c,v 1.38 2022/05/03 08:35:11 hannken Exp $ */
+/* $NetBSD: rumpvnode_if.c,v 1.39 2022/05/03 13:55:29 hannken Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@@ -7,7 +7,7 @@
* Created from the file:
* NetBSD: vnode_if.src,v 1.84 2022/05/03 08:33:59 hannken Exp
* by the script:
- * NetBSD: vnode_if.sh,v 1.74 2022/05/03 08:33:59 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.75 2022/05/03 13:54:18 hannken Exp
*/
/*
@@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.38 2022/05/03 08:35:11 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.39 2022/05/03 13:55:29 hannken Exp $");
#include <sys/param.h>
#include <sys/mount.h>
diff -r 66c381598caa -r 7e7b1375c905 sys/sys/vnode_if.h
--- a/sys/sys/vnode_if.h Tue May 03 13:54:18 2022 +0000
+++ b/sys/sys/vnode_if.h Tue May 03 13:55:29 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode_if.h,v 1.109 2022/05/03 08:35:11 hannken Exp $ */
+/* $NetBSD: vnode_if.h,v 1.110 2022/05/03 13:55:29 hannken Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@@ -7,7 +7,7 @@
* Created from the file:
* NetBSD: vnode_if.src,v 1.84 2022/05/03 08:33:59 hannken Exp
* by the script:
- * NetBSD: vnode_if.sh,v 1.74 2022/05/03 08:33:59 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.75 2022/05/03 13:54:18 hannken Exp
*/
/*
Home |
Main Index |
Thread Index |
Old Index