Lines Matching defs:zoneroot
376 * zoneroot dataset in order to prevent the GZ from sharing
982 * zoneroot dataset in order to prevent the GZ from sharing
1511 char zoneroot[MAXPATHLEN];
1528 if (snprintf(zoneroot, sizeof (zoneroot), "%s/root", zonepath) >=
1529 sizeof (zoneroot)) {
1549 zoneroot) != 0) {
1557 zoneroot, libzfs_error_description(g_zfs));
1578 if (mount(mtab->mnt_special, zoneroot, flags, mtab->mnt_fstype, NULL, 0,
1581 zerror(gettext("unable to mount zone root %s: %s"), zoneroot,
1602 char zoneroot[MAXPATHLEN];
1619 if (snprintf(zoneroot, sizeof (zoneroot), "%s/root", zonepath) >=
1620 sizeof (zoneroot)) {
1638 if (zfs_unmount(zhp, zoneroot, 0) != 0) {
1639 if (force && zfs_unmount(zhp, zoneroot, MS_FORCE) ==
1645 zoneroot, libzfs_error_description(g_zfs));
1657 if (umount(zoneroot) != 0) {
1658 if (force && umount2(zoneroot, MS_FORCE) == 0)
1661 zerror(gettext("unable to unmount zone root %s: %s"), zoneroot,