summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs
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/smbfs
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/smbfs')
-rw-r--r--sys/fs/smbfs/smbfs_vfsops.c41
1 files changed, 17 insertions, 24 deletions
diff --git a/sys/fs/smbfs/smbfs_vfsops.c b/sys/fs/smbfs/smbfs_vfsops.c
index 753efe8..2d8b3ac 100644
--- a/sys/fs/smbfs/smbfs_vfsops.c
+++ b/sys/fs/smbfs/smbfs_vfsops.c
@@ -76,32 +76,25 @@ SYSCTL_INT(_vfs_smbfs, OID_AUTO, debuglevel, CTLFLAG_RW, &smbfs_debuglevel, 0, "
static MALLOC_DEFINE(M_SMBFSHASH, "SMBFS hash", "SMBFS hash table");
-
-static int smbfs_mount(struct mount *, char *, caddr_t,
- struct nameidata *, struct thread *);
-static int smbfs_quotactl(struct mount *, int, uid_t, caddr_t, struct thread *);
-static int smbfs_root(struct mount *, struct vnode **);
-static int smbfs_start(struct mount *, int, struct thread *);
-static int smbfs_statfs(struct mount *, struct statfs *, struct thread *);
-static int smbfs_unmount(struct mount *, int, struct thread *);
-static int smbfs_init(struct vfsconf *vfsp);
-static int smbfs_uninit(struct vfsconf *vfsp);
+static vfs_init_t smbfs_init;
+static vfs_uninit_t smbfs_uninit;
+static vfs_mount_t smbfs_mount;
+static vfs_start_t smbfs_start;
+static vfs_root_t smbfs_root;
+static vfs_quotactl_t smbfs_quotactl;
+static vfs_statfs_t smbfs_statfs;
+static vfs_unmount_t smbfs_unmount;
static struct vfsops smbfs_vfsops = {
- smbfs_mount,
- smbfs_start,
- smbfs_unmount,
- smbfs_root,
- smbfs_quotactl,
- smbfs_statfs,
- vfs_stdsync,
- vfs_stdvget,
- vfs_stdfhtovp, /* shouldn't happen */
- vfs_stdcheckexp,
- vfs_stdvptofh, /* shouldn't happen */
- smbfs_init,
- smbfs_uninit,
- vfs_stdextattrctl
+ .vfs_init = smbfs_init,
+ .vfs_mount = smbfs_mount,
+ .vfs_quotactl = smbfs_quotactl,
+ .vfs_root = smbfs_root,
+ .vfs_start = smbfs_start,
+ .vfs_statfs = smbfs_statfs,
+ .vfs_sync = vfs_stdsync,
+ .vfs_uninit = smbfs_uninit,
+ .vfs_unmount = smbfs_unmount,
};
OpenPOWER on IntegriCloud