<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libvirt-python.git/libvirt-override-api.xml, branch v0.9.8</title>
<subtitle>libvirt.org: git/libvirt-python.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/'/>
<entry>
<title>python: Expose binding for virNodeGetMemoryStats()</title>
<updated>2011-12-05T11:22:33+00:00</updated>
<author>
<name>Peter Krempa</name>
<email>pkrempa@redhat.com</email>
</author>
<published>2011-11-28T17:19:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=d3c1ea120cd128ec326fe2f3455e1984687cc130'/>
<id>d3c1ea120cd128ec326fe2f3455e1984687cc130</id>
<content type='text'>
This patch adds binding for virNodeGetMemoryStats method of libvirtd.
Return value is represented as a python dictionary mapping field
names to values.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds binding for virNodeGetMemoryStats method of libvirtd.
Return value is represented as a python dictionary mapping field
names to values.
</pre>
</div>
</content>
</entry>
<entry>
<title>python: Expose binding for virNodeGetCPUStats()</title>
<updated>2011-12-05T11:22:33+00:00</updated>
<author>
<name>Peter Krempa</name>
<email>pkrempa@redhat.com</email>
</author>
<published>2011-11-28T17:19:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=37f6644416d061ad47b550e96e6f78c18907bd3b'/>
<id>37f6644416d061ad47b550e96e6f78c18907bd3b</id>
<content type='text'>
This patch adds binding for virNodeGetCPUStats method of libvirtd.
Return value is represented as a python dictionary mapping field names
to values.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds binding for virNodeGetCPUStats method of libvirtd.
Return value is represented as a python dictionary mapping field names
to values.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support virDomain{Set, Get}BlockIoTune in the python API</title>
<updated>2011-11-30T18:36:11+00:00</updated>
<author>
<name>Lei Li</name>
<email>lilei@linux.vnet.ibm.com</email>
</author>
<published>2011-11-15T09:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=4d6d685288f849db152fcd8e5985fc7605764606'/>
<id>4d6d685288f849db152fcd8e5985fc7605764606</id>
<content type='text'>
Python support for both setting and getting block I/O throttle.

Signed-off-by: Lei Li &lt;lilei@linux.vnet.ibm.com&gt;
Signed-off-by: Zhi Yong Wu &lt;wuzhy@linux.vnet.ibm.com&gt;
Signed-off-by: Eric Blake &lt;eblake@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python support for both setting and getting block I/O throttle.

Signed-off-by: Lei Li &lt;lilei@linux.vnet.ibm.com&gt;
Signed-off-by: Zhi Yong Wu &lt;wuzhy@linux.vnet.ibm.com&gt;
Signed-off-by: Eric Blake &lt;eblake@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>snapshot: new virDomainSnapshotListChildrenNames API</title>
<updated>2011-10-10T22:54:16+00:00</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2011-09-25T01:56:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=4ba57a33c5ce575a837c9a71c2dd9d95382a82a2'/>
<id>4ba57a33c5ce575a837c9a71c2dd9d95382a82a2</id>
<content type='text'>
The previous API addition allowed traversal up the hierarchy;
this one makes it easier to traverse down the hierarchy.

In the python bindings, virDomainSnapshotNumChildren can be
generated, but virDomainSnapshotListChildrenNames had to copy
from the hand-written example of virDomainSnapshotListNames.

* include/libvirt/libvirt.h.in (virDomainSnapshotNumChildren)
(virDomainSnapshotListChildrenNames): New prototypes.
(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS): New flag alias.
* src/libvirt.c (virDomainSnapshotNumChildren)
(virDomainSnapshotListChildrenNames): New functions.
* src/libvirt_public.syms: Export them.
* src/driver.h (virDrvDomainSnapshotNumChildren)
(virDrvDomainSnapshotListChildrenNames): New callbacks.
* python/generator.py (skip_impl, nameFixup): Update lists.
* python/libvirt-override-api.xml: Likewise.
* python/libvirt-override.c
(libvirt_virDomainSnapshotListChildrenNames): New wrapper function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous API addition allowed traversal up the hierarchy;
this one makes it easier to traverse down the hierarchy.

In the python bindings, virDomainSnapshotNumChildren can be
generated, but virDomainSnapshotListChildrenNames had to copy
from the hand-written example of virDomainSnapshotListNames.

* include/libvirt/libvirt.h.in (virDomainSnapshotNumChildren)
(virDomainSnapshotListChildrenNames): New prototypes.
(VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS): New flag alias.
* src/libvirt.c (virDomainSnapshotNumChildren)
(virDomainSnapshotListChildrenNames): New functions.
* src/libvirt_public.syms: Export them.
* src/driver.h (virDrvDomainSnapshotNumChildren)
(virDrvDomainSnapshotListChildrenNames): New callbacks.
* python/generator.py (skip_impl, nameFixup): Update lists.
* python/libvirt-override-api.xml: Likewise.
* python/libvirt-override.c
(libvirt_virDomainSnapshotListChildrenNames): New wrapper function.
</pre>
</div>
</content>
</entry>
<entry>
<title>latency: Expose the new API for Python binding</title>
<updated>2011-09-06T04:02:51+00:00</updated>
<author>
<name>Osier Yang</name>
<email>jyang@redhat.com</email>
</author>
<published>2011-09-05T08:24:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=8cebfbb2f5855c970b1c642bcfd1f547b0ef41de'/>
<id>8cebfbb2f5855c970b1c642bcfd1f547b0ef41de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add public API for getting migration speed</title>
<updated>2011-09-01T17:26:21+00:00</updated>
<author>
<name>Jim Fehlig</name>
<email>jfehlig@novell.com</email>
</author>
<published>2011-08-26T18:10:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=ffcb4a3f7c89f15031e6077ad350bf4fc66d571c'/>
<id>ffcb4a3f7c89f15031e6077ad350bf4fc66d571c</id>
<content type='text'>
Includes impl of python binding since the generator was not
able to cope.

Note: Requires gendispatch.pl patch from Matthias Bolte

https://www.redhat.com/archives/libvir-list/2011-August/msg01367.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Includes impl of python binding since the generator was not
able to cope.

Note: Requires gendispatch.pl patch from Matthias Bolte

https://www.redhat.com/archives/libvir-list/2011-August/msg01367.html
</pre>
</div>
</content>
</entry>
<entry>
<title>python: add python binding for virDomainSetMemoryParameters</title>
<updated>2011-07-28T08:16:49+00:00</updated>
<author>
<name>Hu Tao</name>
<email>hutao@cn.fujitsu.com</email>
</author>
<published>2011-07-27T02:13:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=b43cc4fb5b922075b6ba98c5047e5718eb6b914b'/>
<id>b43cc4fb5b922075b6ba98c5047e5718eb6b914b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python: add python binding for virDomainGetMemoryParameters</title>
<updated>2011-07-28T08:15:34+00:00</updated>
<author>
<name>Hu Tao</name>
<email>hutao@cn.fujitsu.com</email>
</author>
<published>2011-07-27T02:13:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=915bcb169d98c75dfa0f648daf650c7c9a1c1719'/>
<id>915bcb169d98c75dfa0f648daf650c7c9a1c1719</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python: add python binding for virDomainSetBlkioParameters</title>
<updated>2011-07-28T08:10:00+00:00</updated>
<author>
<name>Hu Tao</name>
<email>hutao@cn.fujitsu.com</email>
</author>
<published>2011-07-27T02:13:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=0f47be1708e3e52924ccff4da3ff92737c4343b8'/>
<id>0f47be1708e3e52924ccff4da3ff92737c4343b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python: add python binding for virDomainGetBlkioParameters</title>
<updated>2011-07-28T07:49:24+00:00</updated>
<author>
<name>Hu Tao</name>
<email>hutao@cn.fujitsu.com</email>
</author>
<published>2011-07-27T02:13:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libvirt-python.git/commit/?id=0950f558f708de0ba2123426777c1a1ea20071cb'/>
<id>0950f558f708de0ba2123426777c1a1ea20071cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
