From: Cornelia Huck <cohuck@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Eduardo Habkost <ehabkost@redhat.com>,
Marcel Apfelbaum <marcel@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
"Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>,
Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>,
qemu-devel@nongnu.org, Markus Armbruster <armbru@redhat.com>,
Max Filippov <jcmvbkbc@gmail.com>,
Dmitry Fleytman <dmitry@daynix.com>,
"Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
Guan Xuetao <gxt@mprc.pku.edu.cn>,
Yongbok Kim <yongbok.kim@mips.com>, Marek Vasut <marex@denx.de>,
Michael Roth <mdroth@linux.vnet.ibm.com>,
David Gibson <david@gibson.dropbear.id.au>,
Anthony Green <green@moxielogic.com>,
Artyom Tarasenko <atar4qemu@gmail.com>,
Fam Zheng <famz@redhat.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Alex Williamson <alex.williamson@redhat.com>,
"open list:ARM cores" <qemu-arm@nongnu.org>,
Stafford Horne <shorne@gmail.com>,
Richard Henderson <rth@twiddle.net>,
Alexander Graf <agraf@suse.de>,
"open list:S390" <qemu-s390x@nongnu.org>,
Bastian Koppelmann <kbastian@mail.uni-paderborn.de>,
Chris Wulff <crwulff@gmail.com>,
Laurent Vivier <laurent@vivier.eu>,
Michael Walle <michael@walle.cc>,
"open list:PowerPC" <qemu-ppc@nongnu.org>,
Paolo Bonzini <pbonzini@redhat.com>,
Aurelien Jarno <aurelien@aurel32.net>
Subject: Re: [Qemu-devel] [qemu-s390x] [RFC PATCH 3/3] qdev: use device_class_set_parent_realize/unrealize/reset()
Date: Mon, 15 Jan 2018 10:09:14 +0100 [thread overview]
Message-ID: <20180115100914.3ee3c68b.cohuck@redhat.com> (raw)
In-Reply-To: <20180114020412.26160-4-f4bug@amsat.org>
On Sat, 13 Jan 2018 23:04:12 -0300
Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> changes generated using the following Coccinelle patch:
>
> @@
> type DeviceParentClass;
> DeviceParentClass *pc;
> DeviceClass *dc;
> identifier parent_fn;
> identifier child_fn;
> @@
> (
> +device_class_set_parent_realize(dc, child_fn, &pc->parent_fn);
> -pc->parent_fn = dc->realize;
> ...
> -dc->realize = child_fn;
> |
> +device_class_set_parent_unrealize(dc, child_fn, &pc->parent_fn);
> -pc->parent_fn = dc->unrealize;
> ...
> -dc->unrealize = child_fn;
> |
> +device_class_set_parent_reset(dc, child_fn, &pc->parent_fn);
> -pc->parent_fn = dc->reset;
> ...
> -dc->reset = child_fn;
> )
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> hw/i386/kvm/i8254.c | 4 ++--
> hw/i386/kvm/i8259.c | 3 +--
> hw/input/adb-kbd.c | 4 ++--
> hw/input/adb-mouse.c | 4 ++--
> hw/intc/arm_gic.c | 3 +--
> hw/intc/arm_gic_kvm.c | 7 +++----
> hw/intc/arm_gicv3.c | 3 +--
> hw/intc/arm_gicv3_its_kvm.c | 3 +--
> hw/intc/arm_gicv3_kvm.c | 7 +++----
> hw/intc/i8259.c | 3 +--
> hw/net/vmxnet3.c | 4 ++--
> hw/pci-bridge/gen_pcie_root_port.c | 3 +--
> hw/scsi/vmw_pvscsi.c | 4 ++--
> hw/timer/i8254.c | 3 +--
> hw/vfio/amd-xgbe.c | 4 ++--
> hw/vfio/calxeda-xgmac.c | 4 ++--
> hw/virtio/virtio-pci.c | 4 ++--
> target/alpha/cpu.c | 4 ++--
> target/arm/cpu.c | 4 ++--
> target/cris/cpu.c | 4 ++--
> target/hppa/cpu.c | 4 ++--
> target/i386/cpu.c | 8 ++++----
> target/lm32/cpu.c | 5 ++---
> target/m68k/cpu.c | 5 ++---
> target/microblaze/cpu.c | 5 ++---
> target/mips/cpu.c | 5 ++---
> target/moxie/cpu.c | 5 ++---
> target/nios2/cpu.c | 4 ++--
> target/openrisc/cpu.c | 5 ++---
> target/ppc/translate_init.c | 8 ++++----
> target/s390x/cpu.c | 4 ++--
> target/sh4/cpu.c | 4 ++--
> target/sparc/cpu.c | 4 ++--
> target/tilegx/cpu.c | 4 ++--
> target/tricore/cpu.c | 4 ++--
> target/unicore32/cpu.c | 4 ++--
> target/xtensa/cpu.c | 4 ++--
> 37 files changed, 73 insertions(+), 88 deletions(-)
> diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c
> index ae3cee91a2..4c068cedff 100644
> --- a/target/s390x/cpu.c
> +++ b/target/s390x/cpu.c
> @@ -463,8 +463,8 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
> CPUClass *cc = CPU_CLASS(scc);
> DeviceClass *dc = DEVICE_CLASS(oc);
>
> - scc->parent_realize = dc->realize;
> - dc->realize = s390_cpu_realizefn;
> + device_class_set_parent_realize(dc, s390_cpu_realizefn,
> + &scc->parent_realize);
> dc->props = s390x_cpu_properties;
> dc->user_creatable = true;
>
s390x change:
Acked-by: Cornelia Huck <cohuck@redhat.com>
next prev parent reply other threads:[~2018-01-15 9:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-14 2:04 [Qemu-devel] [RFC PATCH 0/3] add helpers to be more explicit when using QOM abstract parent hooks Philippe Mathieu-Daudé
2018-01-14 2:04 ` [Qemu-devel] [RFC PATCH 1/3] qdev: rename typedef qdev_resetfn() -> DeviceReset() Philippe Mathieu-Daudé
2018-01-15 9:45 ` Laurent Vivier
2018-01-14 2:04 ` [Qemu-devel] [RFC PATCH 2/3] qdev: add helpers to be more explicit when using abstract QOM parent functions Philippe Mathieu-Daudé
2018-01-15 9:41 ` Laurent Vivier
2018-01-14 2:04 ` [Qemu-devel] [RFC PATCH 3/3] qdev: use device_class_set_parent_realize/unrealize/reset() Philippe Mathieu-Daudé
2018-01-15 1:42 ` David Gibson
2018-01-15 9:09 ` Cornelia Huck [this message]
2018-01-15 9:35 ` Laurent Vivier
2018-01-15 9:48 ` Marcel Apfelbaum
2018-01-15 11:08 ` [Qemu-devel] [RFC PATCH 0/3] add helpers to be more explicit when using QOM abstract parent hooks Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180115100914.3ee3c68b.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=agraf@suse.de \
--cc=alex.williamson@redhat.com \
--cc=armbru@redhat.com \
--cc=atar4qemu@gmail.com \
--cc=aurelien@aurel32.net \
--cc=crwulff@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=dgilbert@redhat.com \
--cc=dmitry@daynix.com \
--cc=edgar.iglesias@gmail.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=famz@redhat.com \
--cc=green@moxielogic.com \
--cc=gxt@mprc.pku.edu.cn \
--cc=jasowang@redhat.com \
--cc=jcmvbkbc@gmail.com \
--cc=kbastian@mail.uni-paderborn.de \
--cc=laurent@vivier.eu \
--cc=marcel@redhat.com \
--cc=marex@denx.de \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=mdroth@linux.vnet.ibm.com \
--cc=michael@walle.cc \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=rth@twiddle.net \
--cc=shorne@gmail.com \
--cc=yongbok.kim@mips.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).