diff options
author | Jiri Denemark <jdenemar@redhat.com> | 2012-01-31 07:41:53 +0100 |
---|---|---|
committer | Jiri Denemark <jdenemar@redhat.com> | 2012-02-01 10:42:16 +0100 |
commit | d033c9577c3c6c080f13de6f7a025c95964eae47 (patch) | |
tree | d62f8c87badad325170da5559516b7bcd1515dde /generator.py | |
parent | e33b2ce7e015bca0a523c8d86a74730a180a377d (diff) | |
download | libvirt-python-v6-d033c9577c3c6c080f13de6f7a025c95964eae47.tar.gz libvirt-python-v6-d033c9577c3c6c080f13de6f7a025c95964eae47.tar.xz libvirt-python-v6-d033c9577c3c6c080f13de6f7a025c95964eae47.zip |
virDomainGetDiskErrors public API
We already provide ways to detect when a domain has been paused as a
result of I/O error, but there was no way of getting the exact error or
even the device that experienced it. This new API may be used for both.
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generator.py b/generator.py index 6f813ae..b514af5 100755 --- a/generator.py +++ b/generator.py @@ -423,7 +423,8 @@ skip_impl = ( 'virDomainGetBlockIoTune', 'virDomainSetInterfaceParameters', 'virDomainGetInterfaceParameters', - 'virDomainGetCPUStats' # not implemented now. + 'virDomainGetCPUStats', # not implemented now. + 'virDomainGetDiskErrors', ) qemu_skip_impl = ( |