From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cGZL3-00046R-SA for qemu-devel@nongnu.org; Mon, 12 Dec 2016 17:44:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cGZL3-0003mr-2M for qemu-devel@nongnu.org; Mon, 12 Dec 2016 17:44:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37916) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cGZL2-0003mT-Sr for qemu-devel@nongnu.org; Mon, 12 Dec 2016 17:44:52 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 028757DCE4 for ; Mon, 12 Dec 2016 22:44:52 +0000 (UTC) From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 13 Dec 2016 01:42:51 +0300 Message-Id: <20161212224325.20790-21-marcandre.lureau@redhat.com> In-Reply-To: <20161212224325.20790-1-marcandre.lureau@redhat.com> References: <20161212224325.20790-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 20/54] char-udp: convert to finalize List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Signed-off-by: Marc-Andr=C3=A9 Lureau --- qemu-char.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qemu-char.c b/qemu-char.c index 3b08155a8f..06281c60e7 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -2774,9 +2774,10 @@ static void udp_chr_update_read_handler(Chardev *c= hr, } } =20 -static void udp_chr_free(Chardev *chr) +static void char_udp_finalize(Object *obj) { - UdpChardev *s =3D UDP_CHARDEV(chr); + Chardev *chr =3D CHARDEV(obj); + UdpChardev *s =3D UDP_CHARDEV(obj); =20 remove_fd_in_watch(chr); if (s->ioc) { @@ -4973,13 +4974,13 @@ static void char_udp_class_init(ObjectClass *oc, = void *data) cc->open =3D qmp_chardev_open_udp; cc->chr_write =3D udp_chr_write; cc->chr_update_read_handler =3D udp_chr_update_read_handler; - cc->chr_free =3D udp_chr_free; } =20 static const TypeInfo char_udp_type_info =3D { .name =3D TYPE_CHARDEV_UDP, .parent =3D TYPE_CHARDEV, .instance_size =3D sizeof(UdpChardev), + .instance_finalize =3D char_udp_finalize, .class_init =3D char_udp_class_init, }; =20 --=20 2.11.0