From df1dfef2bcba0fbb8b4d2f7ef7707c4e0630077b Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 3 Sep 2006 21:01:12 +0000 Subject: add missing initializers --- sys/miscfs/nullfs/null_vfsops.c | 6 ++++-- sys/miscfs/overlay/overlay_vfsops.c | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'sys') 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 -__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 #include @@ -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 -__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 #include @@ -297,5 +297,7 @@ struct vfsops overlay_vfsops = { layerfs_snapshot, vfs_stdextattrctl, ov_vnodeopv_descs, + 0, + { NULL, NULL }, }; VFS_ATTACH(overlay_vfsops); -- cgit