All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v10 00/11] Series short description
@ 2014-06-20 16:18 Dario Faggioli
  2014-06-20 16:18 ` [PATCH v10 01/11] libxc/libxl: bump library SONAMEs Dario Faggioli
                   ` (11 more replies)
  0 siblings, 12 replies; 28+ messages in thread
From: Dario Faggioli @ 2014-06-20 16:18 UTC (permalink / raw)
  To: xen-devel; +Cc: Andrew.Cooper3, Wei Liu, Ian.Campbell, Ian.Jackson

Hello,

v10 of the soft affinity (toolstack side) series.

I restructured the series as Ian suggested: patch "libxl/xl: deprecate the
build_info->cpumap field" was created to only host the deprecation of cpumap.
The xl changes that this requires (and the improvement that it allows) live in
their own patch ("xl: move away from the (deprecated) use of cpumap for hard
affinity").

I also added "Change the libxl default for b_info->{cpu,node}map to "not
allocated"". It is the right thing to do, and it affects some of the patches in
this series, and that's why I'm including it here, instead than submitting it
as a separate patch.

So, the patches that need attention (and Ack-s! :-P) are:

 10/11 libxl: libxl/xl: make it possible to specify soft-affinity in domain config file
 09/11 xl: move the vcpu affinity parsing in a function
 08/11 xl: move away from the (deprecated) use of cpumap for hard affinity
 07/11 libxl/xl: deprecate the build_info->cpumap field
 06/11 libxl/xl: push VCPU affinity pinning down to libxl
 05/11 libxl: Change default for b_info->{cpu,node}map to "not allocated"

while the other ones have all they need to go in.

Regards,
Dario
---
Dario Faggioli (10):
      libxc/libxl: bump library SONAMEs
      libxc: get and set soft and hard affinity
      libxl: get and set soft affinity
      xl: enable getting and setting soft affinity
      libxl: Change default for b_info->{cpu,node}map to "not allocated"
      libxl/xl: deprecate the build_info->cpumap field
      xl: move away from the (deprecated) use of cpumap for hard affinity
      xl: move the vcpu affinity parsing in a function
      libxl/xl: make it possible to specify soft-affinity in domain config file
      libxl: automatic NUMA placement affects soft affinity

Wei Liu (1):
      libxl/xl: push VCPU affinity pinning down to libxl


 docs/man/xl.cfg.pod.5                |   50 ++++---
 docs/man/xl.pod.1                    |   32 +++-
 docs/misc/xl-numa-placement.markdown |   14 ++
 tools/libxc/Makefile                 |    2 
 tools/libxc/xc_domain.c              |   68 ++++++---
 tools/libxc/xenctrl.h                |   55 +++++++
 tools/libxl/Makefile                 |    2 
 tools/libxl/libxl.c                  |   97 +++++++++++--
 tools/libxl/libxl.h                  |   48 ++++++
 tools/libxl/libxl_create.c           |   12 --
 tools/libxl/libxl_dom.c              |  105 ++++++++++++--
 tools/libxl/libxl_types.idl          |   13 +-
 tools/libxl/libxl_utils.h            |   25 +++
 tools/libxl/xl_cmdimpl.c             |  259 ++++++++++++++++++----------------
 tools/libxl/xl_cmdtable.c            |    2 
 tools/ocaml/libs/xc/xenctrl_stubs.c  |    8 +
 tools/python/xen/lowlevel/xc/xc.c    |    6 +
 17 files changed, 582 insertions(+), 216 deletions(-)

--
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK)

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2014-06-27 16:41 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20 16:18 [PATCH v10 00/11] Series short description Dario Faggioli
2014-06-20 16:18 ` [PATCH v10 01/11] libxc/libxl: bump library SONAMEs Dario Faggioli
2014-06-20 16:19 ` [PATCH v10 02/11] libxc: get and set soft and hard affinity Dario Faggioli
2014-06-20 16:19 ` [PATCH v10 03/11] libxl: get and set soft affinity Dario Faggioli
2014-06-20 16:19 ` [PATCH v10 04/11] xl: enable getting and setting " Dario Faggioli
2014-06-27 12:33   ` Ian Campbell
2014-06-27 13:18     ` Dario Faggioli
2014-06-27 13:22       ` Ian Campbell
2014-06-27 13:45         ` Dario Faggioli
2014-06-20 16:19 ` [PATCH v10 05/11] libxl: Change default for b_info->{cpu, node}map to "not allocated" Dario Faggioli
2014-06-27 10:44   ` Ian Campbell
2014-06-27 12:07     ` Dario Faggioli
2014-06-27 12:44       ` Ian Campbell
2014-06-20 16:19 ` [PATCH v10 06/11] libxl/xl: push VCPU affinity pinning down to libxl Dario Faggioli
2014-06-27 10:55   ` Ian Campbell
2014-06-20 16:19 ` [PATCH v10 07/11] libxl/xl: deprecate the build_info->cpumap field Dario Faggioli
2014-06-27 10:57   ` Ian Campbell
2014-06-27 12:08     ` Dario Faggioli
2014-06-20 16:19 ` [PATCH v10 08/11] xl: move away from the (deprecated) use of cpumap for hard affinity Dario Faggioli
2014-06-27 11:00   ` Ian Campbell
2014-06-27 12:24     ` Dario Faggioli
2014-06-20 16:20 ` [PATCH v10 09/11] xl: move the vcpu affinity parsing in a function Dario Faggioli
2014-06-20 16:20 ` [PATCH v10 10/11] libxl/xl: make it possible to specify soft-affinity in domain config file Dario Faggioli
2014-06-27 12:47   ` Ian Campbell
2014-06-27 13:07     ` Dario Faggioli
2014-06-27 16:41     ` Dario Faggioli
2014-06-20 16:20 ` [PATCH v10 11/11] libxl: automatic NUMA placement affects soft affinity Dario Faggioli
2014-06-27 13:32 ` [PATCH v10 00/11] Series short description Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.