]> xenbits.xensource.com Git - libvirt.git/commit
numad: Set memory policy from numad advisory nodeset
authorOsier Yang <jyang@redhat.com>
Tue, 8 May 2012 16:04:34 +0000 (00:04 +0800)
committerEric Blake <eblake@redhat.com>
Tue, 8 May 2012 22:57:32 +0000 (16:57 -0600)
commit97010eb1f14dfe705d58bf94ad4eec2cb293f560
treed1cbed5ed0743575a8e3f50b49532fdf0ee04f23
parent8be304ecb9c8294c9ca3ef7324dea8228e496f9c
numad: Set memory policy from numad advisory nodeset

Though numad will manage the memory allocation of task dynamically,
it wants management application (libvirt) to pre-set the memory
policy according to the advisory nodeset returned from querying numad,
(just like pre-bind CPU nodeset for domain process), and thus the
performance could benefit much more from it.

This patch introduces new XML tag 'placement', value 'auto' indicates
whether to set the memory policy with the advisory nodeset from numad,
and its value defaults to the value of <vcpu> placement, or 'static'
if 'nodeset' is specified. Example of the new XML tag's usage:

  <numatune>
    <memory placement='auto' mode='interleave'/>
  </numatune>

Just like what current "numatune" does, the 'auto' numa memory policy
setting uses libnuma's API too.

If <vcpu> "placement" is "auto", and <numatune> is not specified
explicitly, a default <numatume> will be added with "placement"
set as "auto", and "mode" set as "strict".

The following XML can now fully drive numad:

1) <vcpu> placement is 'auto', no <numatune> is specified.

   <vcpu placement='auto'>10</vcpu>

2) <vcpu> placement is 'auto', no 'placement' is specified for
   <numatune>.

   <vcpu placement='auto'>10</vcpu>
   <numatune>
     <memory mode='interleave'/>
   </numatune>

And it's also able to control the CPU placement and memory policy
independently. e.g.

1) <vcpu> placement is 'auto', and <numatune> placement is 'static'

   <vcpu placement='auto'>10</vcpu>
   <numatune>
     <memory mode='strict' nodeset='0-10,^7'/>
   </numatune>

2) <vcpu> placement is 'static', and <numatune> placement is 'auto'

   <vcpu placement='static' cpuset='0-24,^12'>10</vcpu>
   <numatune>
     <memory mode='interleave' placement='auto'/>
   </numatume>

A follow up patch will change the XML formatting codes to always output
'placement' for <vcpu>, even it's 'static'.
16 files changed:
docs/formatdomain.html.in
docs/schemas/domaincommon.rng
src/conf/domain_conf.c
src/conf/domain_conf.h
src/libvirt_private.syms
src/qemu/qemu_process.c
tests/qemuxml2argvdata/qemuxml2argv-numad-auto-vcpu-no-numatune.xml [new file with mode: 0644]
tests/qemuxml2argvdata/qemuxml2argv-numad-auto-vcpu-static-numatune.args [new file with mode: 0644]
tests/qemuxml2argvdata/qemuxml2argv-numad-auto-vcpu-static-numatune.xml [new file with mode: 0644]
tests/qemuxml2argvdata/qemuxml2argv-numad-static-vcpu-no-numatune.xml [new file with mode: 0644]
tests/qemuxml2argvdata/qemuxml2argv-numad.args [new file with mode: 0644]
tests/qemuxml2argvdata/qemuxml2argv-numad.xml [new file with mode: 0644]
tests/qemuxml2argvtest.c
tests/qemuxml2xmloutdata/qemuxml2xmlout-numad-auto-vcpu-no-numatune.xml [new file with mode: 0644]
tests/qemuxml2xmloutdata/qemuxml2xmlout-numad-static-vcpu-no-numatune.xml [new file with mode: 0644]
tests/qemuxml2xmltest.c