summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-06-12 20:48:38 +0000
committerphk <phk@FreeBSD.org>2003-06-12 20:48:38 +0000
commitfd139fd7d009dbf6f6353b2011b0ff0bf4b32d44 (patch)
tree18550103bc5d68f2255cbfa41b2ed5008e5dd743 /sys/fs/cd9660
parentc4e22440ca79ff6a8d00e3d6d31f6029efa1cb8e (diff)
downloadFreeBSD-src-fd139fd7d009dbf6f6353b2011b0ff0bf4b32d44.zip
FreeBSD-src-fd139fd7d009dbf6f6353b2011b0ff0bf4b32d44.tar.gz
Initialize struct vfsops C99-sparsely.
Submitted by: hmp Reviewed by: phk
Diffstat (limited to 'sys/fs/cd9660')
-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