summaryrefslogtreecommitdiffstats
path: root/sys/fs/nullfs
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/nullfs
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/nullfs')
-rw-r--r--sys/fs/nullfs/null_vnops.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c
index 56406a1..bdb98b5 100644
--- a/sys/fs/nullfs/null_vnops.c
+++ b/sys/fs/nullfs/null_vnops.c
@@ -192,20 +192,20 @@ static int null_bug_bypass = 0; /* for debugging: enables bypass printf'ing */
SYSCTL_INT(_debug, OID_AUTO, nullfs_bug_bypass, CTLFLAG_RW,
&null_bug_bypass, 0, "");
-static int null_access(struct vop_access_args *ap);
-static int null_createvobject(struct vop_createvobject_args *ap);
-static int null_destroyvobject(struct vop_destroyvobject_args *ap);
-static int null_getattr(struct vop_getattr_args *ap);
-static int null_getvobject(struct vop_getvobject_args *ap);
-static int null_inactive(struct vop_inactive_args *ap);
-static int null_islocked(struct vop_islocked_args *ap);
-static int null_lock(struct vop_lock_args *ap);
-static int null_lookup(struct vop_lookup_args *ap);
-static int null_print(struct vop_print_args *ap);
-static int null_reclaim(struct vop_reclaim_args *ap);
-static int null_rename(struct vop_rename_args *ap);
-static int null_setattr(struct vop_setattr_args *ap);
-static int null_unlock(struct vop_unlock_args *ap);
+static vop_access_t null_access;
+static vop_createvobject_t null_createvobject;
+static vop_destroyvobject_t null_destroyvobject;
+static vop_getattr_t null_getattr;
+static vop_getvobject_t null_getvobject;
+static vop_inactive_t null_inactive;
+static vop_islocked_t null_islocked;
+static vop_lock_t null_lock;
+static vop_lookup_t null_lookup;
+static vop_print_t null_print;
+static vop_reclaim_t null_reclaim;
+static vop_rename_t null_rename;
+static vop_setattr_t null_setattr;
+static vop_unlock_t null_unlock;
/*
* This is the 10-Apr-92 bypass routine.
OpenPOWER on IntegriCloud