diff options
author | 1998-01-18 14:41:32 +0000 | |
---|---|---|
committer | 1998-01-18 14:41:32 +0000 | |
commit | 4b641429bb0a1e2f3cfc6a1f8675ecfda0b788ff (patch) | |
tree | 7dd3df832e33b510c35c7d08767d3119a6be800e | |
parent | ppp-2.3.3 + some -Wall (diff) | |
download | wireguard-openbsd-4b641429bb0a1e2f3cfc6a1f8675ecfda0b788ff.tar.xz wireguard-openbsd-4b641429bb0a1e2f3cfc6a1f8675ecfda0b788ff.zip |
Get rid of old dirty buffer list
-rw-r--r-- | sys/sys/buf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/sys/buf.h b/sys/sys/buf.h index 31c282b5e68..92c1095faa9 100644 --- a/sys/sys/buf.h +++ b/sys/sys/buf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.h,v 1.11 1997/11/22 20:06:27 mickey Exp $ */ +/* $OpenBSD: buf.h,v 1.12 1998/01/18 14:41:32 csapuntz Exp $ */ /* $NetBSD: buf.h,v 1.25 1997/04/09 21:12:17 mycroft Exp $ */ /* @@ -184,7 +184,6 @@ int bufpages; /* Number of memory pages in the buffer pool. */ struct buf *swbuf; /* Swap I/O buffer headers. */ int nswbuf; /* Number of swap I/O buffer headers. */ struct buf bswlist; /* Head of swap I/O buffer headers free list. */ -TAILQ_HEAD(, buf) bdirties; /* Dirty buffer list for update daemon */ __BEGIN_DECLS void allocbuf __P((struct buf *, int)); |