summaryrefslogtreecommitdiffstats
path: root/sys/fs/umapfs
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/umapfs
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/umapfs')
-rw-r--r--sys/fs/umapfs/umap_vnops.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/fs/umapfs/umap_vnops.c b/sys/fs/umapfs/umap_vnops.c
index 077411f..1b56007 100644
--- a/sys/fs/umapfs/umap_vnops.c
+++ b/sys/fs/umapfs/umap_vnops.c
@@ -54,14 +54,14 @@ static int umap_bug_bypass = 0; /* for debugging: enables bypass printf'ing */
SYSCTL_INT(_debug, OID_AUTO, umapfs_bug_bypass, CTLFLAG_RW,
&umap_bug_bypass, 0, "");
-static int umap_bypass(struct vop_generic_args *ap);
-static int umap_getattr(struct vop_getattr_args *ap);
-static int umap_inactive(struct vop_inactive_args *ap);
-static int umap_lock(struct vop_lock_args *ap);
-static int umap_print(struct vop_print_args *ap);
-static int umap_reclaim(struct vop_reclaim_args *ap);
-static int umap_rename(struct vop_rename_args *ap);
-static int umap_unlock(struct vop_unlock_args *ap);
+static vop_generic_t umap_bypass;
+static vop_getattr_t umap_getattr;
+static vop_inactive_t umap_inactive;
+static vop_lock_t umap_lock;
+static vop_print_t umap_print;
+static vop_reclaim_t umap_reclaim;
+static vop_rename_t umap_rename;
+static vop_unlock_t umap_unlock;
/*
* This is the 10-Apr-92 bypass routine.
OpenPOWER on IntegriCloud