Lines Matching refs:zone_bootargs
1923 zone0.zone_bootargs = initargs; in zone_zsd_init()
2213 if (zone->zone_bootargs != NULL) in zone_free()
2214 strfree(zone->zone_bootargs); in zone_free()
2278 zone_set_bootargs(zone_t *zone, const char *zone_bootargs) in zone_set_bootargs() argument
2284 if ((err = copyinstr(zone_bootargs, buf, BOOTARGS_MAX, NULL)) != 0) in zone_set_bootargs()
2287 if (zone->zone_bootargs != NULL) in zone_set_bootargs()
2288 strfree(zone->zone_bootargs); in zone_set_bootargs()
2290 zone->zone_bootargs = strdup(buf); in zone_set_bootargs()
4162 zone->zone_bootargs = NULL; in zone_create()
5212 if (zone->zone_bootargs == NULL) in zone_getattr()
5215 outstr = zone->zone_bootargs; in zone_getattr()