Module Name: src
Committed By: riastradh
Date: Fri Nov 18 00:10:03 UTC 2022
Modified Files:
src/sys/kern: vfs_init.c
Log Message:
kern/vfs_init.c: extern vfs_op_descs got rehomed in sys/vnode.h.
To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/sys/kern/vfs_init.c
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/vfs_init.c
diff -u src/sys/kern/vfs_init.c:1.58 src/sys/kern/vfs_init.c:1.59
--- src/sys/kern/vfs_init.c:1.58 Wed Oct 26 23:40:20 2022
+++ src/sys/kern/vfs_init.c Fri Nov 18 00:10:03 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_init.c,v 1.58 2022/10/26 23:40:20 riastradh Exp $ */
+/* $NetBSD: vfs_init.c,v 1.59 2022/11/18 00:10:03 riastradh Exp $ */
/*-
* Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v 1.58 2022/10/26 23:40:20 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v 1.59 2022/11/18 00:10:03 riastradh Exp $");
#include <sys/param.h>
#include <sys/mount.h>
@@ -101,11 +101,6 @@ __KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v
pool_cache_t pnbuf_cache;
/*
- * The global list of vnode operations.
- */
-extern const struct vnodeop_desc * const vfs_op_descs[];
-
-/*
* These vnodeopv_descs are listed here because they are not
* associated with any particular file system, and thus cannot
* be initialized by vfs_attach().