summaryrefslogtreecommitdiffstats
path: root/sys/fs/deadfs
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/deadfs
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/deadfs')
-rw-r--r--sys/fs/deadfs/dead_vnops.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c
index ee57feb..0f2094b 100644
--- a/sys/fs/deadfs/dead_vnops.c
+++ b/sys/fs/deadfs/dead_vnops.c
@@ -42,14 +42,14 @@ static int chkvnlock(struct vnode *);
/*
* Prototypes for dead operations on vnodes.
*/
-static int dead_bmap(struct vop_bmap_args *);
-static int dead_ioctl(struct vop_ioctl_args *);
-static int dead_lock(struct vop_lock_args *);
-static int dead_lookup(struct vop_lookup_args *);
-static int dead_open(struct vop_open_args *);
-static int dead_poll(struct vop_poll_args *);
-static int dead_read(struct vop_read_args *);
-static int dead_write(struct vop_write_args *);
+static vop_bmap_t dead_bmap;
+static vop_ioctl_t dead_ioctl;
+static vop_lock_t dead_lock;
+static vop_lookup_t dead_lookup;
+static vop_open_t dead_open;
+static vop_poll_t dead_poll;
+static vop_read_t dead_read;
+static vop_write_t dead_write;
vop_t **dead_vnodeop_p;
static struct vnodeopv_entry_desc dead_vnodeop_entries[] = {
OpenPOWER on IntegriCloud