summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_extern.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-11-13 00:10:57 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-11-13 00:10:57 +0000
commit30783811e022a9235a839fbe208d799cf9299cd2 (patch)
tree6d7833e8a7051f1a0dfacb74af08c55074198934 /sys/ufs/ffs/ffs_extern.h
parent4ec594334e5c968ad0fec157a2bb0f22becf57d8 (diff)
Allow the bpp arguemnt on ffs_realloccg to be NULL, don't return the
buffer in that case. Also add a new argument - blknop, which can be used to return the allocated blkno.
Diffstat (limited to 'sys/ufs/ffs/ffs_extern.h')
-rw-r--r--sys/ufs/ffs/ffs_extern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_extern.h b/sys/ufs/ffs/ffs_extern.h
index 40f61d068b4..eeeba209c69 100644
--- a/sys/ufs/ffs/ffs_extern.h
+++ b/sys/ufs/ffs/ffs_extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs_extern.h,v 1.13 2001/06/23 02:07:53 csapuntz Exp $ */
+/* $OpenBSD: ffs_extern.h,v 1.14 2001/11/13 00:10:56 art Exp $ */
/* $NetBSD: ffs_extern.h,v 1.4 1996/02/09 22:22:22 christos Exp $ */
/*-
@@ -75,7 +75,7 @@ __BEGIN_DECLS
int ffs_alloc __P((struct inode *, daddr_t, daddr_t , int, struct ucred *,
daddr_t *));
int ffs_realloccg __P((struct inode *, daddr_t, daddr_t, int, int ,
- struct ucred *, struct buf **));
+ struct ucred *, struct buf **, daddr_t *));
int ffs_reallocblks __P((void *));
int ffs_inode_alloc(struct inode *, int, struct ucred *, struct vnode **);
int ffs_inode_free(struct inode *, ino_t, int);