On Fri, Apr 13, 2018 at 01:15:29PM +0200, Katerina Koukiou wrote: > Signed-off-by: Katerina Koukiou <[email protected]> > --- > data/org.libvirt.Domain.xml | 6 ++++++ > src/domain.c | 25 +++++++++++++++++++++++++ > 2 files changed, 31 insertions(+)
[...]
> +static void
> +virtDBusDomainMigrateSetMaxSpeed(GVariant *inArgs,
> + GUnixFDList *inFDs G_GNUC_UNUSED,
> + const gchar *objectPath,
> + gpointer userData,
> + GVariant **outArgs G_GNUC_UNUSED,
> + GUnixFDList **outFDs G_GNUC_UNUSED,
> + GError **error)
> +{
> + virtDBusConnect *connect = userData;
> + g_autoptr(virDomain) domain = NULL;
> + gulong bandwidth;
> + guint flags;
> +
> + g_variant_get(inArgs, "(tu)", &bandwidth, &flags);
> +
> + domain = virtDBusDomainGetVirDomain(connect, objectPath, error);
> + if (!domain)
> + return;
> +
> + if (virDomainMigrateSetMaxSpeed(domain, bandwidth, flags) < 0)
> + return virtDBusUtilSetLastVirtError(error);
Here you missed removing 'return'.
Pavel
signature.asc
Description: PGP signature
-- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
