diff options
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/mount.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/sys/mount.h b/sys/include/sys/mount.h index a9478e7..b208bf7 100644 --- a/sys/include/sys/mount.h +++ b/sys/include/sys/mount.h @@ -39,9 +39,10 @@ struct fs_info; struct mount; +struct vnode; struct vfsops { - int(*init)(struct fs_info *info); + int(*init)(struct fs_info *info, struct vnode *source); }; struct mount { |