flags = info->hvm ? XEN_DOMCTL_CDF_hvm_guest : 0;
flags |= info->hap ? XEN_DOMCTL_CDF_hap : 0;
+ flags |= info->oos ? 0 : XEN_DOMCTL_CDF_oos_off;
*domid = -1;
/* Ultimately, handle is an array of 16 uint8_t, same as uuid */
c_info->xsdata = NULL;
c_info->platformdata = NULL;
c_info->hvm = 1;
+ c_info->oos = 1;
c_info->ssidref = 0;
}
printf("*** domain_create_info ***\n");
printf("hvm: %d\n", c_info->hvm);
printf("hap: %d\n", c_info->hap);
+ printf("oos: %d\n", c_info->oos);
printf("ssidref: %d\n", c_info->ssidref);
printf("name: %s\n", c_info->name);
printf("uuid: " UUID_FMT "\n",
c_info->uuid[i] = rand();
}
+ if (!xlu_cfg_get_long(config, "oos", &l))
+ c_info->oos = l;
+
init_build_info(b_info, c_info);
/* the following is the actual config parsing with overriding values in the structures */