diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-02-04 08:23:18 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-02-04 08:23:18 +0000 |
| commit | 886eaaacfad7eb8797f54457ae3779da9cb0e741 (patch) | |
| tree | f653729bd3535f316c6fd5a653d61c72be5c14ca /sys/vm | |
| parent | d0cfa43f14217d7be3dd5915a29a323e02c3d47b (diff) | |
Notes
Diffstat (limited to 'sys/vm')
| -rw-r--r-- | sys/vm/uma_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index ef43fc26bb3c..e7c3f68b986b 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -1133,8 +1133,8 @@ zone_dtor(void *arg, int size, void *udata) ZONE_LOCK(zone); if (zone->uz_free != 0) - printf("Zone %s was not empty. Lost %d pages of memory.\n", - zone->uz_name, zone->uz_pages); + printf("Zone %s was not empty (%d items). Lost %d pages of memory.\n", + zone->uz_name, zone->uz_free, zone->uz_pages); if ((zone->uz_flags & UMA_ZFLAG_INTERNAL) == 0) for (cpu = 0; cpu < maxcpu; cpu++) |
