Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Regen for:
details: https://anonhg.NetBSD.org/src/rev/fe8c61c1af10
branches: trunk
changeset: 368550:fe8c61c1af10
user: thorpej <thorpej%NetBSD.org@localhost>
date: Mon Jul 18 04:32:35 2022 +0000
description:
Regen for:
Make kqueue event status for vnodes shareable, and for stacked file systems
like nullfs, make the upper vnode share that status with the lower vnode.
And, lo, NetBSD 9.99.99.
Fixes PR kern/56713.
diffstat:
sys/kern/vnode_if.c | 10 +++++-----
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, 12 insertions(+), 12 deletions(-)
diffs (108 lines):
diff -r 1463355532b8 -r fe8c61c1af10 sys/kern/vnode_if.c
--- a/sys/kern/vnode_if.c Mon Jul 18 04:30:30 2022 +0000
+++ b/sys/kern/vnode_if.c Mon Jul 18 04:32:35 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode_if.c,v 1.117 2022/05/03 13:55:29 hannken Exp $ */
+/* $NetBSD: vnode_if.c,v 1.118 2022/07/18 04:32:35 thorpej 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.75 2022/05/03 13:54:18 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.76 2022/07/18 04:30:30 thorpej Exp
*/
/*
@@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.117 2022/05/03 13:55:29 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.118 2022/07/18 04:32:35 thorpej Exp $");
#ifdef _KERNEL_OPT
#include "opt_vnode_lockdebug.h"
@@ -137,7 +137,7 @@
*/ \
mutex_enter((thisvp)->v_interlock); \
if (__predict_true((e) == 0)) { \
- knote(&(thisvp)->v_klist, (n)); \
+ knote(&(thisvp)->v_klist->vk_klist, (n)); \
} \
holdrelel((thisvp)); \
mutex_exit((thisvp)->v_interlock); \
@@ -250,7 +250,7 @@
* meaningless from the watcher's perspective. \
*/ \
if (__predict_true(thisvp->v_op != dead_vnodeop_p)) { \
- knote(&thisvp->v_klist, \
+ knote(&thisvp->v_klist->vk_klist, \
((ap)->a_fflag & FWRITE) \
? NOTE_CLOSE_WRITE : NOTE_CLOSE); \
} \
diff -r 1463355532b8 -r fe8c61c1af10 sys/rump/include/rump/rumpvnode_if.h
--- a/sys/rump/include/rump/rumpvnode_if.h Mon Jul 18 04:30:30 2022 +0000
+++ b/sys/rump/include/rump/rumpvnode_if.h Mon Jul 18 04:32:35 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvnode_if.h,v 1.39 2022/05/03 13:55:29 hannken Exp $ */
+/* $NetBSD: rumpvnode_if.h,v 1.40 2022/07/18 04:32:35 thorpej 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.75 2022/05/03 13:54:18 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.76 2022/07/18 04:30:30 thorpej Exp
*/
/*
diff -r 1463355532b8 -r fe8c61c1af10 sys/rump/librump/rumpvfs/rumpvnode_if.c
--- a/sys/rump/librump/rumpvfs/rumpvnode_if.c Mon Jul 18 04:30:30 2022 +0000
+++ b/sys/rump/librump/rumpvfs/rumpvnode_if.c Mon Jul 18 04:32:35 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvnode_if.c,v 1.39 2022/05/03 13:55:29 hannken Exp $ */
+/* $NetBSD: rumpvnode_if.c,v 1.40 2022/07/18 04:32:35 thorpej 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.75 2022/05/03 13:54:18 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.76 2022/07/18 04:30:30 thorpej Exp
*/
/*
@@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.39 2022/05/03 13:55:29 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rumpvnode_if.c,v 1.40 2022/07/18 04:32:35 thorpej Exp $");
#include <sys/param.h>
#include <sys/mount.h>
diff -r 1463355532b8 -r fe8c61c1af10 sys/sys/vnode_if.h
--- a/sys/sys/vnode_if.h Mon Jul 18 04:30:30 2022 +0000
+++ b/sys/sys/vnode_if.h Mon Jul 18 04:32:35 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode_if.h,v 1.110 2022/05/03 13:55:29 hannken Exp $ */
+/* $NetBSD: vnode_if.h,v 1.111 2022/07/18 04:32:35 thorpej 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.75 2022/05/03 13:54:18 hannken Exp
+ * NetBSD: vnode_if.sh,v 1.76 2022/07/18 04:30:30 thorpej Exp
*/
/*
Home |
Main Index |
Thread Index |
Old Index