summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-09-03 21:01:12 +0000
committerchristos <christos@NetBSD.org>2006-09-03 21:01:12 +0000
commitdf1dfef2bcba0fbb8b4d2f7ef7707c4e0630077b (patch)
tree1c3635055ece423145d057414c16d5f9d828c170 /sys
parentc35f9741bc3400a900f9677f0124675050ce7f8a (diff)
add missing initializers
Diffstat (limited to 'sys')
-rw-r--r--sys/miscfs/nullfs/null_vfsops.c6
-rw-r--r--sys/miscfs/overlay/overlay_vfsops.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c
index 5e1340bd641..a5af5a85968 100644
--- a/sys/miscfs/nullfs/null_vfsops.c
+++ b/sys/miscfs/nullfs/null_vfsops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: null_vfsops.c,v 1.58 2005/12/11 12:24:51 christos Exp $ */
+/* $NetBSD: null_vfsops.c,v 1.59 2006/09/03 21:01:12 christos Exp $ */
/*
* Copyright (c) 1999 National Aeronautics & Space Administration
@@ -74,7 +74,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.58 2005/12/11 12:24:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.59 2006/09/03 21:01:12 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -314,5 +314,7 @@ struct vfsops nullfs_vfsops = {
layerfs_snapshot,
vfs_stdextattrctl,
nullfs_vnodeopv_descs,
+ 0,
+ { NULL, NULL },
};
VFS_ATTACH(nullfs_vfsops);
diff --git a/sys/miscfs/overlay/overlay_vfsops.c b/sys/miscfs/overlay/overlay_vfsops.c
index b1b6256fe42..7fbdfd2f792 100644
--- a/sys/miscfs/overlay/overlay_vfsops.c
+++ b/sys/miscfs/overlay/overlay_vfsops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: overlay_vfsops.c,v 1.33 2005/12/11 12:24:51 christos Exp $ */
+/* $NetBSD: overlay_vfsops.c,v 1.34 2006/09/03 21:01:12 christos Exp $ */
/*
* Copyright (c) 1999, 2000 National Aeronautics & Space Administration
@@ -74,7 +74,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.33 2005/12/11 12:24:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.34 2006/09/03 21:01:12 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -297,5 +297,7 @@ struct vfsops overlay_vfsops = {
layerfs_snapshot,
vfs_stdextattrctl,
ov_vnodeopv_descs,
+ 0,
+ { NULL, NULL },
};
VFS_ATTACH(overlay_vfsops);