summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOsier Yang <jyang@redhat.com>2012-09-04 23:32:53 +0800
committerOsier Yang <jyang@redhat.com>2012-09-10 10:37:22 +0800
commitcc4225c8aceaeb0be9b7a04393f780ecc67ad5f4 (patch)
treef6613d30bd1e0ed101221aab7efd787958d21605
parente20653622809a78476dfaed83f31d47cfb39fd5b (diff)
downloadlibvirt-python-split-cc4225c8aceaeb0be9b7a04393f780ecc67ad5f4.tar.gz
libvirt-python-split-cc4225c8aceaeb0be9b7a04393f780ecc67ad5f4.tar.xz
libvirt-python-split-cc4225c8aceaeb0be9b7a04393f780ecc67ad5f4.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
-rwxr-xr-xgenerator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/generator.py b/generator.py
index 261efe0..276b4ff 100755
--- a/generator.py
+++ b/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