Searched defs:zone_bootargs (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dzone.h506 char *zone_bootargs; /* arguments passed via zone_boot() */ member in struct:zone
/illumos-gate/usr/src/uts/common/os/
H A Dzone.c2115 zone0.zone_bootargs = initargs;
2405 if (zone->zone_bootargs != NULL)
2406 strfree(zone->zone_bootargs);
2470 zone_set_bootargs(zone_t *zone, const char *zone_bootargs) argument
2476 if ((err = copyinstr(zone_bootargs, buf, BOOTARGS_MAX, NULL)) != 0)
2479 if (zone->zone_bootargs != NULL)
2480 strfree(zone->zone_bootargs);
2482 zone->zone_bootargs = strdup(buf);
4520 zone->zone_bootargs = NULL;
5585 if (zone->zone_bootargs
[all...]

Completed in 77 milliseconds