diff options
author | 2016-03-10 06:52:37 +0000 | |
---|---|---|
committer | 2016-03-10 06:52:37 +0000 | |
commit | dd0d3cedc40c3a563cef39b402e619074ee799de (patch) | |
tree | 9c6fa7feaa39479bf4c6688564acf1965c77e973 | |
parent | more pieces of vax (diff) | |
download | wireguard-openbsd-dd0d3cedc40c3a563cef39b402e619074ee799de.tar.xz wireguard-openbsd-dd0d3cedc40c3a563cef39b402e619074ee799de.zip |
beck@ forgot to commit this with sys/kern/vfs_bio.c r1.100.
> Start some refactoring in here. this gets bufadjust out
> of the hibernate path and starts preparing for some other work in here
-rw-r--r-- | sys/sys/buf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/buf.h b/sys/sys/buf.h index f5aed755d18..4ae8b2ec59c 100644 --- a/sys/sys/buf.h +++ b/sys/sys/buf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.h,v 1.101 2015/12/06 23:42:30 guenther Exp $ */ +/* $OpenBSD: buf.h,v 1.102 2016/03/10 06:52:37 dlg Exp $ */ /* $NetBSD: buf.h,v 1.25 1997/04/09 21:12:17 mycroft Exp $ */ /* @@ -306,7 +306,7 @@ void bufcache_release(struct buf *); void buf_flip_high(struct buf *); void buf_flip_dma(struct buf *); -struct buf *bufcache_getcleanbuf(int); +struct buf *bufcache_getcleanbuf(int, int); struct buf *bufcache_getanycleanbuf(void); struct buf *bufcache_getdirtybuf(void); |