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.)
This commit is contained in:
riastradh 2022-10-26 23:40:30 +00:00
parent f29311a918
commit 4b24b7c7e7
1 changed files with 3 additions and 1 deletions

View File

@ -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().
*/