Displaying 3 results from an estimated 3 matches for "avail_vcpus".
2012 Jul 04
53
[PATCH 00 of 10 v3] Automatic NUMA placement for xl
Hello,
Third version of the NUMA placement series Xen 4.2.
All the comments received during v2''s review have been addressed (more details
in single changelogs).
The most notable changes are the following:
- the libxl_cpumap --> libxl_bitmap renaming has been rebased on top of the
recent patches that allows us to allocate bitmaps of different sizes;
- the heuristics for deciding
2018 Sep 14
0
virsh doesn't support vtpm using XEN?
...t;name": "centos7.0",
"uuid": "feef6cac-8148-4040-a7cb-ad1f82d8d68a",
"run_hotplug_scripts": "True"
},
"b_info": {
"max_vcpus": 4,
"avail_vcpus": [
0,
1,
2,
3
],
"max_memkb": 4194304,
"target_memkb": 4194304,
"video_memkb": 8192,
"shadow_memkb...
2012 Nov 20
0
[PATCH 15 of 15] libxl: ocaml: add bindings for libxl_domain_create_new
...et ctx = Xenlight.ctx_alloc logger in
+ let c_info = {
+ Xenlight.Domain_create_info.hap = None;
+ Xenlight.Domain_create_info.oos = None;
+ Xenlight.Domain_create_info.name = "Test;
+ }
+ and b_info = {
+ Xenlight.Domain_build_info.max_vcpus = 1;
+ Xenlight.Domain_build_info.avail_vcpus = [| |];
+ Xenlight.Domain_build_info.cpumap = [| |];
+ Xenlight.Domain_build_info.numa_placement = None;
+ Xenlight.Domain_build_info.tsc_mode = Xenlight.TSC_MODE_DEFAULT;
+ Xenlight.Domain_build_info.max_memkb = 1024L;
+ Xenlight.Domain_build_info.target_memkb = 1024L;
+ Xenligh...