diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/ufs/lfs/lfs_segment.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/ufs/lfs/lfs_segment.c')
-rw-r--r-- | sys/ufs/lfs/lfs_segment.c | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/sys/ufs/lfs/lfs_segment.c b/sys/ufs/lfs/lfs_segment.c index 5ac2a62cd81..3b53e35c5f9 100644 --- a/sys/ufs/lfs/lfs_segment.c +++ b/sys/ufs/lfs/lfs_segment.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lfs_segment.c,v 1.9 2001/02/23 14:52:52 csapuntz Exp $ */ +/* $OpenBSD: lfs_segment.c,v 1.10 2002/03/14 01:27:15 millert Exp $ */ /* $NetBSD: lfs_segment.c,v 1.4 1996/02/09 22:28:54 christos Exp $ */ /* @@ -62,7 +62,7 @@ #include <ufs/lfs/lfs.h> #include <ufs/lfs/lfs_extern.h> -extern int count_lock_queue __P((void)); +extern int count_lock_queue(void); #define MAX_ACTIVE 10 /* @@ -73,27 +73,27 @@ extern int count_lock_queue __P((void)); ((fs)->lfs_dbpseg - ((fs)->lfs_offset - (fs)->lfs_curseg) > \ 1 << (fs)->lfs_fsbtodb) -void lfs_callback __P((struct buf *)); +void lfs_callback(struct buf *); void lfs_gather __P((struct lfs *, struct segment *, - struct vnode *, int (*) __P((struct lfs *, struct buf *)))); -int lfs_gatherblock __P((struct segment *, struct buf *, int *)); -void lfs_iset __P((struct inode *, ufs_daddr_t, time_t)); -int lfs_match_data __P((struct lfs *, struct buf *)); -int lfs_match_dindir __P((struct lfs *, struct buf *)); -int lfs_match_indir __P((struct lfs *, struct buf *)); -int lfs_match_tindir __P((struct lfs *, struct buf *)); -void lfs_newseg __P((struct lfs *)); -void lfs_shellsort __P((struct buf **, ufs_daddr_t *, register int)); -void lfs_supercallback __P((struct buf *)); -void lfs_updatemeta __P((struct segment *)); -int lfs_vref __P((struct vnode *)); -void lfs_vunref __P((struct vnode *)); -void lfs_writefile __P((struct lfs *, struct segment *, struct vnode *)); -int lfs_writeinode __P((struct lfs *, struct segment *, struct inode *)); -int lfs_writeseg __P((struct lfs *, struct segment *)); -void lfs_writesuper __P((struct lfs *)); -void lfs_writevnodes __P((struct lfs *fs, struct mount *mp, - struct segment *sp, int dirops)); + struct vnode *, int (*)(struct lfs *, struct buf *))); +int lfs_gatherblock(struct segment *, struct buf *, int *); +void lfs_iset(struct inode *, ufs_daddr_t, time_t); +int lfs_match_data(struct lfs *, struct buf *); +int lfs_match_dindir(struct lfs *, struct buf *); +int lfs_match_indir(struct lfs *, struct buf *); +int lfs_match_tindir(struct lfs *, struct buf *); +void lfs_newseg(struct lfs *); +void lfs_shellsort(struct buf **, ufs_daddr_t *, register int); +void lfs_supercallback(struct buf *); +void lfs_updatemeta(struct segment *); +int lfs_vref(struct vnode *); +void lfs_vunref(struct vnode *); +void lfs_writefile(struct lfs *, struct segment *, struct vnode *); +int lfs_writeinode(struct lfs *, struct segment *, struct inode *); +int lfs_writeseg(struct lfs *, struct segment *); +void lfs_writesuper(struct lfs *); +void lfs_writevnodes(struct lfs *fs, struct mount *mp, + struct segment *sp, int dirops); int lfs_allclean_wakeup; /* Cleaner wakeup address. */ @@ -535,7 +535,7 @@ lfs_gather(fs, sp, vp, match) struct lfs *fs; struct segment *sp; struct vnode *vp; - int (*match) __P((struct lfs *, struct buf *)); + int (*match)(struct lfs *, struct buf *); { struct buf *bp; int s; @@ -800,7 +800,7 @@ lfs_writeseg(fs, sp) dev_t i_dev; u_long *datap, *dp; int do_again, i, nblocks, s; - int (*strategy)__P((void *)); + int (*strategy)(void *); struct vop_strategy_args vop_strategy_a; u_short ninos; char *p; @@ -966,7 +966,7 @@ lfs_writesuper(fs) { struct buf *bp; dev_t i_dev; - int (*strategy) __P((void *)); + int (*strategy)(void *); int s; struct vop_strategy_args vop_strategy_a; |