diff options
author | 2006-12-28 20:33:24 +0000 | |
---|---|---|
committer | 2006-12-28 20:33:24 +0000 | |
commit | f5f09cad95bc1dabb62c036e54072e204285fe39 (patch) | |
tree | f31771171427eeac202391f31f03ce6cee374663 | |
parent | check if ifqueue has anything queued before doing the dance of (diff) | |
download | wireguard-openbsd-f5f09cad95bc1dabb62c036e54072e204285fe39.tar.xz wireguard-openbsd-f5f09cad95bc1dabb62c036e54072e204285fe39.zip |
Zap nextgennumber, unused since LFS went up into the attic.
ok pedro@
-rw-r--r-- | sys/ufs/ffs/ffs_alloc.c | 4 | ||||
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 3 | ||||
-rw-r--r-- | sys/ufs/ufs/ufs_inode.c | 4 |
3 files changed, 3 insertions, 8 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 54ec18381d6..9f73216abe7 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_alloc.c,v 1.66 2006/04/02 22:16:29 pedro Exp $ */ +/* $OpenBSD: ffs_alloc.c,v 1.67 2006/12/28 20:33:24 thib Exp $ */ /* $NetBSD: ffs_alloc.c,v 1.11 1996/05/11 18:27:09 mycroft Exp $ */ /* @@ -68,8 +68,6 @@ (fs)->fs_fsmnt, (cp)); \ } while (0) -extern u_long nextgennumber; - static daddr_t ffs_alloccg(struct inode *, int, daddr_t, int); static daddr_t ffs_alloccgblk(struct inode *, struct buf *, daddr_t); static daddr_t ffs_clusteralloc(struct inode *, int, daddr_t, int); diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 50e0f26fdde..3e881ee9453 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.97 2006/10/20 13:01:10 pedro Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.98 2006/12/28 20:33:24 thib Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -94,7 +94,6 @@ struct inode_vtbl ffs_vtbl = { ffs_bufatoff }; -extern u_long nextgennumber; /* * Called by main() when ufs is going to be mounted as root. diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index 5860865e5d9..2a9063404cd 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ufs_inode.c,v 1.34 2006/01/09 12:43:17 pedro Exp $ */ +/* $OpenBSD: ufs_inode.c,v 1.35 2006/12/28 20:33:24 thib Exp $ */ /* $NetBSD: ufs_inode.c,v 1.7 1996/05/11 18:27:52 mycroft Exp $ */ /* @@ -55,8 +55,6 @@ #include <ufs/ufs/dirhash.h> #endif -u_long nextgennumber; /* Next generation number to assign. */ - /* * Last reference to an inode. If necessary, write or delete it. */ |