summaryrefslogtreecommitdiffstats
path: root/sys/fs/fdescfs
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/fdescfs
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/fdescfs')
-rw-r--r--sys/fs/fdescfs/fdesc_vnops.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/fs/fdescfs/fdesc_vnops.c b/sys/fs/fdescfs/fdesc_vnops.c
index b6d1eea..3f25cda 100644
--- a/sys/fs/fdescfs/fdesc_vnops.c
+++ b/sys/fs/fdescfs/fdesc_vnops.c
@@ -68,13 +68,13 @@ static vop_t **fdesc_vnodeop_p;
static LIST_HEAD(fdhashhead, fdescnode) *fdhashtbl;
static u_long fdhash;
-static int fdesc_getattr(struct vop_getattr_args *ap);
-static int fdesc_inactive(struct vop_inactive_args *ap);
-static int fdesc_lookup(struct vop_lookup_args *ap);
-static int fdesc_open(struct vop_open_args *ap);
-static int fdesc_readdir(struct vop_readdir_args *ap);
-static int fdesc_reclaim(struct vop_reclaim_args *ap);
-static int fdesc_setattr(struct vop_setattr_args *ap);
+static vop_getattr_t fdesc_getattr;
+static vop_inactive_t fdesc_inactive;
+static vop_lookup_t fdesc_lookup;
+static vop_open_t fdesc_open;
+static vop_readdir_t fdesc_readdir;
+static vop_reclaim_t fdesc_reclaim;
+static vop_setattr_t fdesc_setattr;
/*
* Initialise cache headers
OpenPOWER on IntegriCloud