diff options
author | Mark Johnston <markj@FreeBSD.org> | 2020-02-11 20:15:49 +0000 |
---|---|---|
committer | Mark Johnston <markj@FreeBSD.org> | 2020-02-11 20:15:49 +0000 |
commit | 25aa4a3c078bea25d748a491b3ff3317a36d8004 (patch) | |
tree | 542b60f644840f69dea7498e4b6fc43642f026fb /lib/libmemstat | |
parent | 4ab3aee8fbcea0d0407d78619f319cc6d5d64fab (diff) |
libmemstat: Catch up with r357776.
Reported by: O. Hartmann <ohartmann@walstatt.org>
Notes
Notes:
svn path=/head/; revision=357777
Diffstat (limited to 'lib/libmemstat')
-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 c063a33604de..f9d13dbc04a0 100644 --- a/lib/libmemstat/memstat_uma.c +++ b/lib/libmemstat/memstat_uma.c @@ -476,7 +476,7 @@ skip_percpu: ret = kread(kvm, &kzp->uk_domain[i], &ukd, sizeof(ukd), 0); if (ret != 0) - kegfree += ukd.ud_free; + kegfree += ukd.ud_free_items; } mtp->mt_kegfree = kegfree; mtp->mt_free += mtp->mt_kegfree; |