Displaying 1 result from an estimated 1 matches for "target_ram".
Did you mean:
target_arm
2011 Jan 11
0
[PATCH, v2]: xl: move domain struct init functions to libxl
...e_info *c_info, libxl_domain_build_info *b_info)
+{
+ memset(dm_info, ''\0'', sizeof(*dm_info));
+
+ libxl_uuid_generate(&dm_info->uuid);
+
+ dm_info->dom_name = strdup(c_info->name);
+ dm_info->device_model = strdup("qemu-dm");
+ dm_info->target_ram = libxl__sizekb_to_mb(b_info->target_memkb);
+ dm_info->videoram = libxl__sizekb_to_mb(b_info->video_memkb);
+ dm_info->apic = b_info->u.hvm.apic;
+ dm_info->vcpus = b_info->max_vcpus;
+ dm_info->vcpu_avail = b_info->cur_vcpus;
+
+ dm_info->stdvga = 0;
+...