Lines Matching refs:zone
30 #include "zone.h"
33 #include <sys/zone.h>
43 * Names corresponding to zone_status_t values in sys/zone.h
59 zid_lookup_cb(uintptr_t addr, const zone_t *zone, void *arg)
62 if (zone->zone_id == zid)
75 if (mdb_walk("zone", (mdb_walk_cb_t)zid_lookup_cb, &addr) == -1) {
76 mdb_warn("failed to walk zone");
97 if (mdb_walk_dcmd("zone", "zone", argc, argv) == -1) {
152 * Fetch the zone's path and print the results.
171 * Display the zone's reference counts.
172 * Display the zone's subsystem-specific reference counts if
286 wsp->walk_addr += offsetof(struct zone, zone_zsd);
353 zone_t zone;
366 if (mdb_walk_dcmd("zone", "zsd", argc, argv) == -1) {
367 mdb_warn("failed to walk zone\n");
376 if (mdb_vread(&zone, sizeof (zone), addr) == -1) {
410 * Prepare to output the specified zone's ZSD information.
415 len = mdb_readstr(name, ZONE_NAMELEN, (uintptr_t)zone.zone_name);