diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-12-06 07:03:05 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-12-06 07:03:05 +0000 |
commit | 07fd058044fbd8138e453c2dd542b4a80aafc864 (patch) | |
tree | 7c05decccd341664ac0c423d7c4681de53f417c7 /sys/ufs/ffs/ffs_vfsops.c | |
parent | f468f5c6819deb2013c93b927f0df7191209d84c (diff) |
ffs_init is a vfsop. Move it to ffs_vfsops.
Diffstat (limited to 'sys/ufs/ffs/ffs_vfsops.c')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 37b3183887c..860b7f54bb6 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.25 1999/12/06 06:59:36 art Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.26 1999/12/06 07:03:04 art Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -1192,6 +1192,14 @@ ffs_sbupdate(mp, waitfor) return (allerror); } +int +ffs_init(vfsp) + struct vfsconf *vfsp; +{ + softdep_initialize(); + return (ufs_init(vfsp)); +} + /* * fast filesystem related variables. */ |