diff options
author | Osier Yang <jyang@redhat.com> | 2012-09-04 23:32:53 +0800 |
---|---|---|
committer | Osier Yang <jyang@redhat.com> | 2012-09-10 10:37:22 +0800 |
commit | a42eac601ee07bd59639ec189eda61596d2767c0 (patch) | |
tree | 303471a6a74a875c4418def93d425c1741176535 /python | |
parent | esx: Remove unused variable from esxDomainGetAutostart (diff) | |
download | libvirt-a42eac601ee07bd59639ec189eda61596d2767c0.tar.gz libvirt-a42eac601ee07bd59639ec189eda61596d2767c0.tar.bz2 libvirt-a42eac601ee07bd59639ec189eda61596d2767c0.zip |
list: Define new API virStoragePoolListAllVolumes
Simply returns the storage volume objects. No supported filter
flags.
include/libvirt/libvirt.h.in: Declare the API
python/generator.py: Skip the function for generating. virStoragePool.py
will be added in later patch.
src/driver.h: virDrvStoragePoolListVolumesFlags
src/libvirt.c: Implementation for the API.
src/libvirt_public.syms: Export the symbol to public
Diffstat (limited to 'python')
-rwxr-xr-x | python/generator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/generator.py b/python/generator.py index 261efe02b..276b4ff1f 100755 --- a/python/generator.py +++ b/python/generator.py @@ -461,6 +461,7 @@ skip_function = ( 'virDomainListAllSnapshots', # overridden in virDomain.py 'virDomainSnapshotListAllChildren', # overridden in virDomainSnapshot.py 'virConnectListAllStoragePools', # overridden in virConnect.py + 'virStoragePoolListAllVolumes', # overridden in virStoragePool.py 'virStreamRecvAll', # Pure python libvirt-override-virStream.py 'virStreamSendAll', # Pure python libvirt-override-virStream.py |