From 05b9cb2a46b4cd19b0e7335c469c484f6f83c3e6 Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 1 Dec 2004 12:24:41 +0000 Subject: Mechanically change prototypes for vnode operations to use the new typedefs. --- sys/fs/fdescfs/fdesc_vnops.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sys/fs/fdescfs') 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 -- cgit v1.1