diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2006-02-11 16:54:00 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2006-02-11 16:54:00 +0000 |
commit | ee4be9485c427c5356b2361b8cc62883b201555b (patch) | |
tree | 498c52866156046a21eae235e9abedc7af48434b | |
parent | cda869c9dbf7f902b23486f324616bb53a922021 (diff) |
Notes
-rw-r--r-- | lib/libmemstat/memstat_uma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libmemstat/memstat_uma.c b/lib/libmemstat/memstat_uma.c index ce47c34258a5..911c0996f3d3 100644 --- a/lib/libmemstat/memstat_uma.c +++ b/lib/libmemstat/memstat_uma.c @@ -409,7 +409,7 @@ skip_percpu: mtp->mt_size = kz.uk_size; mtp->mt_memalloced = mtp->mt_numallocs * mtp->mt_size; mtp->mt_memfreed = mtp->mt_numfrees * mtp->mt_size; - mtp->mt_bytes = mtp->mt_memalloced = mtp->mt_memfreed; + mtp->mt_bytes = mtp->mt_memalloced - mtp->mt_memfreed; if (kz.uk_ppera > 1) mtp->mt_countlimit = kz.uk_maxpages / kz.uk_ipers; |