diff options
author | 2011-07-06 00:11:57 +0000 | |
---|---|---|
committer | 2011-07-06 00:11:57 +0000 | |
commit | bda7aa5fbf04586d87e715668beaca145e36a7fe (patch) | |
tree | 8ce6c67476d163f1b32bd1938bba814debee6ef1 /sys | |
parent | Finalize work on the math library. It's time to do this monster (diff) | |
download | wireguard-openbsd-bda7aa5fbf04586d87e715668beaca145e36a7fe.tar.xz wireguard-openbsd-bda7aa5fbf04586d87e715668beaca145e36a7fe.zip |
add a couple of fields needed for buffer flipping, and change systat to
show useful info in systat io instead of goo
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mount.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index bd05ec88c72..aa0284fe4ef 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.103 2011/04/05 18:51:26 thib Exp $ */ +/* $OpenBSD: mount.h,v 1.104 2011/07/06 00:11:57 beck Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -494,6 +494,8 @@ struct bcachestats { int64_t numreads; /* total reads started */ int64_t cachehits; /* total reads found in cache */ int64_t busymapped; /* number of busy and mapped buffers */ + int64_t dmapages; /* dma reachable pages in buffer cache */ + int64_t highpages; /* pages above dma region */ }; #ifdef _KERNEL extern struct bcachestats bcstats; |