diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2019-09-01 22:22:43 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2019-09-01 22:22:43 +0000 |
| commit | 08cfa56ea35b32be96f439c74fe6677653401e6e (patch) | |
| tree | 75f59db43c15eed1be07f25f47e4f12b86a8d507 /lib | |
| parent | 63cdd18e406a630d44f084697581f658a17163e0 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libmemstat/memstat_uma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmemstat/memstat_uma.c b/lib/libmemstat/memstat_uma.c index 4aff9f7ae1fa..7c292e7ba460 100644 --- a/lib/libmemstat/memstat_uma.c +++ b/lib/libmemstat/memstat_uma.c @@ -474,9 +474,9 @@ skip_percpu: ret = kread(kvm, &uz.uz_domain[i], &uzd, sizeof(uzd), 0); for (ubp = - LIST_FIRST(&uzd.uzd_buckets); + TAILQ_FIRST(&uzd.uzd_buckets); ubp != NULL; - ubp = LIST_NEXT(&ub, ub_link)) { + ubp = TAILQ_NEXT(&ub, ub_link)) { ret = kread(kvm, ubp, &ub, sizeof(ub), 0); mtp->mt_zonefree += ub.ub_cnt; |
