search for: xenapi_cfg_types

Displaying 2 results from an estimated 2 matches for "xenapi_cfg_types".

2013 Feb 14
3
[PATCH] tools/xend: Only add cpuid and cpuid_check to sexpr once
...Signed-off-by: Olaf Hering <olaf@aepfle.de> diff -r cffb489a6df3 -r 0f9c7503650f tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -1124,6 +1124,10 @@ class XendConfig(dict): else: for name, typ in XENAPI_CFG_TYPES.items(): if name in self and self[name] not in (None, []): + # Skip cpuid and cpuid_check. Custom conversion + # methods for these are called below. + if name in ("cpuid", "cpuid_check"): +...
2008 Mar 14
1
[PATCH] Allow explicit NUMA placements of guests
Hi, this patch introduces a new config file option (numanodes=[x]) to specify a list of valid NUMA nodes for guests. This will extend (but not replace) the recently introduced automatic placement. If several nodes are given, the current algorithm will choose one of them. If none of the given nodes has enough memory, this will fall back to the automatic placement. Signed-off-by: Andre