[libvirt] [python PATCH 0/2] add missing migration params

We need to figure out a way how to check this by our test suite. Pavel Hrdina (2): virDomainMigrate3Params: add missing bandwidth postcopy param virDomainMigrate3Params: add missing parallel connections param libvirt-override.c | 6 ++++++ 1 file changed, 6 insertions(+) -- 2.21.0

Introduced in libvirt 5.1.0 by commit <c830187a015>. Signed-off-by: Pavel Hrdina <phrdina@redhat.com> --- libvirt-override.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libvirt-override.c b/libvirt-override.c index 83ca0fc..bcda8c7 100644 --- a/libvirt-override.c +++ b/libvirt-override.c @@ -7993,6 +7993,9 @@ static virPyTypedParamsHint virPyDomainMigrate3Params[] = { # ifdef VIR_MIGRATE_PARAM_AUTO_CONVERGE_INCREMENT { VIR_MIGRATE_PARAM_AUTO_CONVERGE_INCREMENT, VIR_TYPED_PARAM_INT }, # endif +# ifdef VIR_MIGRATE_PARAM_BANDWIDTH_POSTCOPY + { VIR_MIGRATE_PARAM_BANDWIDTH_POSTCOPY, VIR_TYPED_PARAM_ULLONG }, +# endif }; -- 2.21.0

On Mon, Sep 23, 2019 at 01:08:28PM +0200, Pavel Hrdina wrote:
Introduced in libvirt 5.1.0 by commit <c830187a015>.
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> --- libvirt-override.c | 3 +++ 1 file changed, 3 insertions(+)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|

Introduced in libvirt 5.2.0 by commit <d3ea986af24>. Reported-by: Liping Cheng <lcheng@redhat.com> Signed-off-by: Pavel Hrdina <phrdina@redhat.com> --- libvirt-override.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libvirt-override.c b/libvirt-override.c index bcda8c7..2e24d27 100644 --- a/libvirt-override.c +++ b/libvirt-override.c @@ -7996,6 +7996,9 @@ static virPyTypedParamsHint virPyDomainMigrate3Params[] = { # ifdef VIR_MIGRATE_PARAM_BANDWIDTH_POSTCOPY { VIR_MIGRATE_PARAM_BANDWIDTH_POSTCOPY, VIR_TYPED_PARAM_ULLONG }, # endif +# ifdef VIR_MIGRATE_PARAM_PARALLEL_CONNECTIONS + { VIR_MIGRATE_PARAM_PARALLEL_CONNECTIONS, VIR_TYPED_PARAM_INT }, +# endif }; -- 2.21.0

On Mon, Sep 23, 2019 at 01:08:29PM +0200, Pavel Hrdina wrote:
Introduced in libvirt 5.2.0 by commit <d3ea986af24>.
Reported-by: Liping Cheng <lcheng@redhat.com> Signed-off-by: Pavel Hrdina <phrdina@redhat.com> --- libvirt-override.c | 3 +++ 1 file changed, 3 insertions(+)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
participants (2)
-
Daniel P. Berrangé
-
Pavel Hrdina