Module Name: src
Committed By: riastradh
Date: Wed Oct 26 23:40:31 UTC 2022
Modified Files:
src/sys/sys: vnode.h
Log Message:
sys/vnode.h: New home for extern vfs_op_descs.
(Maybe this should be in a more kern-private header file -- it's used
only by vnode_if.c and vfs_init.c -- but this'll do for now.)
To generate a diff of this commit:
cvs rdiff -u -r1.303 -r1.304 src/sys/sys/vnode.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/sys/vnode.h
diff -u src/sys/sys/vnode.h:1.303 src/sys/sys/vnode.h:1.304
--- src/sys/sys/vnode.h:1.303 Fri Aug 5 05:20:39 2022
+++ src/sys/sys/vnode.h Wed Oct 26 23:40:30 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode.h,v 1.303 2022/08/05 05:20:39 thorpej Exp $ */
+/* $NetBSD: vnode.h,v 1.304 2022/10/26 23:40:30 riastradh Exp $ */
/*-
* Copyright (c) 2008, 2020 The NetBSD Foundation, Inc.
@@ -508,6 +508,8 @@ struct vnodeop_desc {
#ifdef _KERNEL
+extern const struct vnodeop_desc * const vfs_op_descs[];
+
/*
* Union filesystem hook for vn_readdir().
*/