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 | 02af3e13b2a7ee4f144d7b760c9f1c37a84c1bec (patch) | |
tree | 8eaff5b2a3b071d28fcc04eeb4ad013bf8401f89 /python | |
parent | python: correct a copy-paste error (diff) | |
download | libvirt-02af3e13b2a7ee4f144d7b760c9f1c37a84c1bec.tar.gz libvirt-02af3e13b2a7ee4f144d7b760c9f1c37a84c1bec.tar.bz2 libvirt-02af3e13b2a7ee4f144d7b760c9f1c37a84c1bec.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 'python')
-rwxr-xr-x | python/generator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/generator.py b/python/generator.py index 6f813ae0d..b514af5bc 100755 --- a/python/generator.py +++ b/python/generator.py @@ -423,7 +423,8 @@ skip_impl = ( 'virDomainGetBlockIoTune', 'virDomainSetInterfaceParameters', 'virDomainGetInterfaceParameters', - 'virDomainGetCPUStats' # not implemented now. + 'virDomainGetCPUStats', # not implemented now. + 'virDomainGetDiskErrors', ) qemu_skip_impl = ( |