summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-12-01 12:24:41 +0000
committerphk <phk@FreeBSD.org>2004-12-01 12:24:41 +0000
commit05b9cb2a46b4cd19b0e7335c469c484f6f83c3e6 (patch)
treeca2d1e5c33e28faaf6dbefb02adaebcec5f3ef3f /sys/fs/smbfs
parenta138ae34c46784871361a1c27053bdfa38f8c9f1 (diff)
downloadFreeBSD-src-05b9cb2a46b4cd19b0e7335c469c484f6f83c3e6.zip
FreeBSD-src-05b9cb2a46b4cd19b0e7335c469c484f6f83c3e6.tar.gz
Mechanically change prototypes for vnode operations to use the new typedefs.
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r--sys/fs/smbfs/smbfs_vnops.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/sys/fs/smbfs/smbfs_vnops.c b/sys/fs/smbfs/smbfs_vnops.c
index e899aab..7874830 100644
--- a/sys/fs/smbfs/smbfs_vnops.c
+++ b/sys/fs/smbfs/smbfs_vnops.c
@@ -60,29 +60,29 @@
/*
* Prototypes for SMBFS vnode operations
*/
-static int smbfs_create(struct vop_create_args *);
-static int smbfs_mknod(struct vop_mknod_args *);
-static int smbfs_open(struct vop_open_args *);
-static int smbfs_close(struct vop_close_args *);
-static int smbfs_access(struct vop_access_args *);
-static int smbfs_getattr(struct vop_getattr_args *);
-static int smbfs_setattr(struct vop_setattr_args *);
-static int smbfs_read(struct vop_read_args *);
-static int smbfs_write(struct vop_write_args *);
-static int smbfs_fsync(struct vop_fsync_args *);
-static int smbfs_remove(struct vop_remove_args *);
-static int smbfs_link(struct vop_link_args *);
-static int smbfs_lookup(struct vop_lookup_args *);
-static int smbfs_rename(struct vop_rename_args *);
-static int smbfs_mkdir(struct vop_mkdir_args *);
-static int smbfs_rmdir(struct vop_rmdir_args *);
-static int smbfs_symlink(struct vop_symlink_args *);
-static int smbfs_readdir(struct vop_readdir_args *);
-static int smbfs_strategy(struct vop_strategy_args *);
-static int smbfs_print(struct vop_print_args *);
-static int smbfs_pathconf(struct vop_pathconf_args *ap);
-static int smbfs_advlock(struct vop_advlock_args *);
-static int smbfs_getextattr(struct vop_getextattr_args *ap);
+static vop_create_t smbfs_create;
+static vop_mknod_t smbfs_mknod;
+static vop_open_t smbfs_open;
+static vop_close_t smbfs_close;
+static vop_access_t smbfs_access;
+static vop_getattr_t smbfs_getattr;
+static vop_setattr_t smbfs_setattr;
+static vop_read_t smbfs_read;
+static vop_write_t smbfs_write;
+static vop_fsync_t smbfs_fsync;
+static vop_remove_t smbfs_remove;
+static vop_link_t smbfs_link;
+static vop_lookup_t smbfs_lookup;
+static vop_rename_t smbfs_rename;
+static vop_mkdir_t smbfs_mkdir;
+static vop_rmdir_t smbfs_rmdir;
+static vop_symlink_t smbfs_symlink;
+static vop_readdir_t smbfs_readdir;
+static vop_strategy_t smbfs_strategy;
+static vop_print_t smbfs_print;
+static vop_pathconf_t smbfs_pathconf;
+static vop_advlock_t smbfs_advlock;
+static vop_getextattr_t smbfs_getextattr;
vop_t **smbfs_vnodeop_p;
static struct vnodeopv_entry_desc smbfs_vnodeop_entries[] = {
OpenPOWER on IntegriCloud