summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2001-09-18 01:46:40 +0000
committerart <art@openbsd.org>2001-09-18 01:46:40 +0000
commitba94ff706fe57f461e96eb32a54ddcea168a269f (patch)
tree6c5dd3f183776128e4ce63762654b48b690d72ae
parentvarious cleanups from NetBSD (diff)
downloadwireguard-openbsd-ba94ff706fe57f461e96eb32a54ddcea168a269f.tar.xz
wireguard-openbsd-ba94ff706fe57f461e96eb32a54ddcea168a269f.zip
move ext2fs_init to where it belongs.
-rw-r--r--sys/ufs/ext2fs/ext2fs_inode.c9
-rw-r--r--sys/ufs/ext2fs/ext2fs_vfsops.c9
2 files changed, 9 insertions, 9 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_inode.c b/sys/ufs/ext2fs/ext2fs_inode.c
index ecf258ef1f2..5ab85490daf 100644
--- a/sys/ufs/ext2fs/ext2fs_inode.c
+++ b/sys/ufs/ext2fs/ext2fs_inode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_inode.c,v 1.15 2001/09/18 01:21:55 art Exp $ */
+/* $OpenBSD: ext2fs_inode.c,v 1.16 2001/09/18 01:46:40 art Exp $ */
/* $NetBSD: ext2fs_inode.c,v 1.24 2001/06/19 12:59:18 wiz Exp $ */
/*
@@ -62,13 +62,6 @@
static int ext2fs_indirtrunc __P((struct inode *, ufs_daddr_t, ufs_daddr_t,
ufs_daddr_t, int, long *));
-int
-ext2fs_init(vfsp)
- struct vfsconf *vfsp;
-{
- return (ufs_init(vfsp));
-}
-
/*
* Last reference to an inode. If necessary, write or delete it.
*/
diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c
index 28ad9d100f8..9d877d8add4 100644
--- a/sys/ufs/ext2fs/ext2fs_vfsops.c
+++ b/sys/ufs/ext2fs/ext2fs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_vfsops.c,v 1.14 2001/03/04 06:32:41 csapuntz Exp $ */
+/* $OpenBSD: ext2fs_vfsops.c,v 1.15 2001/09/18 01:46:40 art Exp $ */
/* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */
/*
@@ -104,6 +104,13 @@ struct pool ext2fs_inode_pool;
extern u_long ext2gennumber;
+int
+ext2fs_init(vfsp)
+ struct vfsconf *vfsp;
+{
+ return (ufs_init(vfsp));
+}
+
/*
* Called by main() when ext2fs is going to be mounted as root.
*