summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660/cd9660_vfsops.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/cd9660/cd9660_vfsops.c')
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c23
1 files changed, 9 insertions, 14 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index f62298e..c076d08 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -75,20 +75,15 @@ static vfs_fhtovp_t cd9660_fhtovp;
static vfs_vptofh_t cd9660_vptofh;
static struct vfsops cd9660_vfsops = {
- cd9660_mount,
- vfs_stdstart,
- cd9660_unmount,
- cd9660_root,
- vfs_stdquotactl,
- cd9660_statfs,
- vfs_stdnosync,
- cd9660_vget,
- cd9660_fhtovp,
- vfs_stdcheckexp,
- cd9660_vptofh,
- cd9660_init,
- cd9660_uninit,
- vfs_stdextattrctl,
+ .vfs_fhtovp = cd9660_fhtovp,
+ .vfs_init = cd9660_init,
+ .vfs_mount = cd9660_mount,
+ .vfs_root = cd9660_root,
+ .vfs_statfs = cd9660_statfs,
+ .vfs_uninit = cd9660_uninit,
+ .vfs_unmount = cd9660_unmount,
+ .vfs_vget = cd9660_vget,
+ .vfs_vptofh = cd9660_vptofh,
};
VFS_SET(cd9660_vfsops, cd9660, VFCF_READONLY);
MODULE_VERSION(cd9660, 1);
OpenPOWER on IntegriCloud