From nobody Wed May 14 07:01:44 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1526468183770988.1410704177214; Wed, 16 May 2018 03:56:23 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 263D167466; Wed, 16 May 2018 10:56:22 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D8DCC30012D5; Wed, 16 May 2018 10:56:21 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 7CD204CAA7; Wed, 16 May 2018 10:56:21 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w4GAtwac014466 for ; Wed, 16 May 2018 06:55:58 -0400 Received: by smtp.corp.redhat.com (Postfix) id 3B5BD1002953; Wed, 16 May 2018 10:55:58 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id D561010AF9DA for ; Wed, 16 May 2018 10:55:57 +0000 (UTC) From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 16 May 2018 12:55:52 +0200 Message-Id: <2d0e89edd6d4af288c4f95337234300a2934b453.1526468033.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-loop: libvir-list@redhat.com Subject: [libvirt] [dbus PATCH v2 4/4] events: Rename all lifecycle event functions to follow the signal name X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Wed, 16 May 2018 10:56:22 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Pavel Hrdina --- src/events.c | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/src/events.c b/src/events.c index b4793ba..b51664f 100644 --- a/src/events.c +++ b/src/events.c @@ -6,11 +6,11 @@ #include =20 static gint -virtDBusEventsDomainAgentLifecycle(virConnectPtr connection G_GNUC_UNUSED, - virDomainPtr domain, - gint state, - gint reason, - gpointer opaque) +virtDBusEventsDomainAgentEvent(virConnectPtr connection G_GNUC_UNUSED, + virDomainPtr domain, + gint state, + gint reason, + gpointer opaque) { virtDBusConnect *connect =3D opaque; g_autofree gchar *path =3D NULL; @@ -96,11 +96,11 @@ virtDBusEventsDomainControlError(virConnectPtr connecti= on G_GNUC_UNUSED, } =20 static gint -virtDBusEventsDomainLifecycle(virConnectPtr connection G_GNUC_UNUSED, - virDomainPtr domain, - gint event, - gint detail, - gpointer opaque) +virtDBusEventsDomainEvent(virConnectPtr connection G_GNUC_UNUSED, + virDomainPtr domain, + gint event, + gint detail, + gpointer opaque) { virtDBusConnect *connect =3D opaque; g_autofree gchar *path =3D NULL; @@ -241,13 +241,13 @@ virtDBusEventsDomainGraphics(virConnectPtr connection= G_GNUC_UNUSED, } =20 static gint -virtDBusEventsDomainIOErrorReason(virConnectPtr connection G_GNUC_UNUSED, - virDomainPtr domain, - const gchar *srcPath, - const gchar *device, - gint action, - const gchar *reason, - gpointer opaque) +virtDBusEventsDomainIOError(virConnectPtr connection G_GNUC_UNUSED, + virDomainPtr domain, + const gchar *srcPath, + const gchar *device, + gint action, + const gchar *reason, + gpointer opaque) { virtDBusConnect *connect =3D opaque; g_autofree gchar *path =3D NULL; @@ -545,7 +545,7 @@ virtDBusEventsDomainDiskChange(virConnectPtr connection= G_GNUC_UNUSED, } =20 static gint -virtDBusEventsNetworkLifecycle(virConnectPtr connection G_GNUC_UNUSED, +virtDBusEventsNetworkEvent(virConnectPtr connection G_GNUC_UNUSED, virNetworkPtr network, gint event, gint detail G_GNUC_UNUSED, @@ -568,7 +568,7 @@ virtDBusEventsNetworkLifecycle(virConnectPtr connection= G_GNUC_UNUSED, } =20 static gint -virtDBusEventsSecretLifecycle(virConnectPtr connection G_GNUC_UNUSED, +virtDBusEventsSecretEvent(virConnectPtr connection G_GNUC_UNUSED, virSecretPtr secret, gint event, gint detail, @@ -591,7 +591,7 @@ virtDBusEventsSecretLifecycle(virConnectPtr connection = G_GNUC_UNUSED, } =20 static gint -virtDBusEventsStoragePoolLifecycle(virConnectPtr connection G_GNUC_UNUSED, +virtDBusEventsStoragePoolEvent(virConnectPtr connection G_GNUC_UNUSED, virStoragePoolPtr storagePool, gint event, gint detail, @@ -701,7 +701,7 @@ virtDBusEventsRegister(virtDBusConnect *connect) { virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_AGENT_LIFECYCLE, - VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainAgentLifecycle)); + VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainAgentEvent)); =20 virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_BALLOON_CHANGE, @@ -717,7 +717,7 @@ virtDBusEventsRegister(virtDBusConnect *connect) =20 virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_LIFECYCLE, - VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainLifecycle)); + VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainEvent)); =20 virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_DEVICE_ADDED, @@ -741,7 +741,7 @@ virtDBusEventsRegister(virtDBusConnect *connect) =20 virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_IO_ERROR_REASON, - VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainIOErrorReason)); + VIR_DOMAIN_EVENT_CALLBACK(virtDBusEv= entsDomainIOError)); =20 virtDBusEventsRegisterDomainEvent(connect, VIR_DOMAIN_EVENT_ID_JOB_COMPLETED, @@ -789,15 +789,15 @@ virtDBusEventsRegister(virtDBusConnect *connect) =20 virtDBusEventsRegisterNetworkEvent(connect, VIR_NETWORK_EVENT_ID_LIFECYCLE, - VIR_NETWORK_EVENT_CALLBACK(virtDBus= EventsNetworkLifecycle)); + VIR_NETWORK_EVENT_CALLBACK(virtDBus= EventsNetworkEvent)); =20 virtDBusEventsRegisterSecretEvent(connect, VIR_SECRET_EVENT_ID_LIFECYCLE, - VIR_SECRET_EVENT_CALLBACK(virtDBusEv= entsSecretLifecycle)); + VIR_SECRET_EVENT_CALLBACK(virtDBusEv= entsSecretEvent)); =20 virtDBusEventsRegisterStoragePoolEvent(connect, VIR_STORAGE_POOL_EVENT_ID_LIFEC= YCLE, - VIR_STORAGE_POOL_EVENT_CALLBACK= (virtDBusEventsStoragePoolLifecycle)); + VIR_STORAGE_POOL_EVENT_CALLBACK= (virtDBusEventsStoragePoolEvent)); =20 virtDBusEventsRegisterStoragePoolEvent(connect, VIR_STORAGE_POOL_EVENT_ID_REFRE= SH, --=20 2.17.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list