diff mbox

[RFC,8/8] xl: introduce topology options

Message ID 1456174934-22973-9-git-send-email-joao.m.martins@oracle.com (mailing list archive)
State New, archived
Headers show

Commit Message

Joao Martins Feb. 22, 2016, 9:02 p.m. UTC
Namely sockets, cores and threads to describe the topology as seen
by the guest. This as an alternative to the SMT option that is also
proposed.

Signed-off-by: Joao Martins <joao.m.martins@oracle.com>
---
CC: Ian Jackson <ian.jackson@eu.citrix.com>
CC: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
CC: Ian Campbell <ian.campbell@citrix.com>
CC: Wei Liu <wei.liu2@citrix.com>
---
 docs/man/xl.cfg.pod.5    | 18 ++++++++++++++++++
 tools/libxl/xl_cmdimpl.c |  7 +++++++
 2 files changed, 25 insertions(+)
diff mbox

Patch

diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5
index 5e614f7..cb7ebc2 100644
--- a/docs/man/xl.cfg.pod.5
+++ b/docs/man/xl.cfg.pod.5
@@ -110,6 +110,24 @@  Configures if guests should see SMT topology instead of normal flat topology.
 
 Default is C<0>
 
+=item B<sockets=N>
+
+Configures number of sockets as seen by the guest.
+
+Default is C<0>
+
+=item B<cores=N>
+
+Configures number of physical cores per package as seen by the guest.
+
+Default is C<0>
+
+=item B<threads=N>
+
+Configures number of SMT threads per core as seen by the guest.
+
+Default is C<0>
+
 =item B<maxvcpus=M>
 
 Allow the guest to bring up a maximum of M vcpus. At start of day if
diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index c09f628..965d60b 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -1367,6 +1367,13 @@  static void parse_config_data(const char *config_source,
 
     xlu_cfg_get_defbool(config, "smt", &b_info->smt, 0);
 
+    if (!xlu_cfg_get_long(config, "sockets", &l, 0))
+        b_info->topology.sockets = l;
+    if (!xlu_cfg_get_long(config, "cores",   &l, 0))
+        b_info->topology.cores = l;
+    if (!xlu_cfg_get_long(config, "threads", &l, 0))
+        b_info->topology.threads = l;
+
     if (!xlu_cfg_get_long (config, "maxvcpus", &l, 0))
         b_info->max_vcpus = l;