[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] xl: introduce specific VCPU to PCPU mapping in config file
On Mon, 2012-05-14 at 09:19 +0100, Ian Campbell wrote: > So effectively we create the domain pinned to the right nodes and then > rebind all the CPUS later to be mapped to specific phys-processors? > Yep. Although that map might be considered a build info, it seems more a low toolstack level thing to me. Besides, we already have a cpumap. Besides, it's a fu*$ing array of ints as big as the number of vcpus... And fo all these reasons I wanted to avoid putting it in build_info as bad as hell! :-) > This > means that the memory which is allocated is from the correct nodes, even > though we appear to do the pinning later. Clever. > Thanks. All the above being true, I also didn't want to miss the memory/node affinity side effect having the correct info in b_info->cpumap brings. > > + /* If single vcpu to pcpu mapping was requested, honour it */ > > + if (vcpu_to_pcpu) { > > This is always allocated above, isn't it? I'm concerned that this might > break the non-1-1 case. > Not really, it's only allocated in case the correct `cpus=` specifier is found (that being `cpus=[2, 3]`). > > + libxl_cpumap vcpu_cpumap; > > + > > + libxl_cpumap_alloc(ctx, &vcpu_cpumap); > > + for (i = 0; i < d_config.b_info.max_vcpus; i++) { > > + > > + if (vcpu_to_pcpu[i] != -1) { > > + libxl_cpumap_set_none(&vcpu_cpumap); > > + libxl_cpumap_set(&vcpu_cpumap, vcpu_to_pcpu[i]); > > + } else { > > + libxl_cpumap_set_any(&vcpu_cpumap); > > + } > > + if (libxl_set_vcpuaffinity(ctx, domid, i, &vcpu_cpumap)) { > > + fprintf(stderr, "setting affinity failed on vcpu `%d'.\n", > > i); > > + libxl_cpumap_dispose(&vcpu_cpumap); > > + free(vcpu_to_pcpu); > > + ret = ERROR_FAIL; > > + goto error_out; > > + } > > + } > > + libxl_cpumap_dispose(&vcpu_cpumap); > > + free(vcpu_to_pcpu); > > vpuc_to_pcpu = NULL, in case you go back around again... > Yep. This is needed, thanks! > For that reason it might be preferable to put vcpu_to_pcpu struct > dom_info and pass that to parse_config -- I think Goncalo is doing > something similar for the vncviewer option. > Adding the proper =NULL above makes it work for all the cases, namely config-update, save/restore and migration. Nevertheless, I looked into moving the array in `struct domain_create', but it doesn't fit there, at least according to my personal taste. It requires adding a parameter to parse_config_data() that, in many cases, would need to be created on purpose with only that field as the meaningful one (or just be NULL), resulting in something really counter intuitive and hard to read and maintain (again, according to my personal taste :-)). Also, this is somehow different from "autoconnect" or "vncviewer", which fits perfectly there, as they're parameters to a specific create-ish command resulting in some actual action (i.e., popping the console or the VNC window up!). So, I'm resending with the array still as a global variable, but of course I'm open to rework the patch again if you and/or the other maintainers want it the other way around (within `struct domain_create'). Thanks a lot for looking into this. Dario -- <<This happens because I choose it to happen!>> (Raistlin Majere) ----------------------------------------------------------------- Dario Faggioli, Ph.D, http://retis.sssup.it/people/faggioli Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK) Attachment:
signature.asc _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |