From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: qemu-devel@nongnu.org
Cc: stefanha@redhat.com, codyprime@gmail.com, jan.kiszka@siemens.com,
berto@igalia.com, zhang.zhanghailiang@huawei.com,
qemu-block@nongnu.org, arikalo@wavecomp.com, pasic@linux.ibm.com,
hpoussin@reactos.org, anthony.perard@citrix.com,
samuel.thibault@ens-lyon.org, philmd@redhat.com,
green@moxielogic.com, lvivier@redhat.com, ehabkost@redhat.com,
xiechanglong.d@gmail.com, pl@kamp.de, dgilbert@redhat.com,
b.galvani@gmail.com, eric.auger@redhat.com,
alex.williamson@redhat.com, ronniesahlberg@gmail.com,
jsnow@redhat.com, rth@twiddle.net, kwolf@redhat.com,
vsementsov@virtuozzo.com, andrew@aj.id.au, crwulff@gmail.com,
sundeep.lkml@gmail.com, michael@walle.cc, qemu-ppc@nongnu.org,
kbastian@mail.uni-paderborn.de, imammedo@redhat.com,
fam@euphon.net, peter.maydell@linaro.org,
sheepdog@lists.wpkg.org, david@redhat.com, palmer@sifive.com,
thuth@redhat.com, jcmvbkbc@gmail.com, den@openvz.org,
hare@suse.com, sstabellini@kernel.org, arei.gonglei@huawei.com,
namei.unix@gmail.com, atar4qemu@gmail.com, farman@linux.ibm.com,
amit@kernel.org, sw@weilnetz.de, groug@kaod.org,
qemu-s390x@nongnu.org, qemu-arm@nongnu.org,
peter.chubb@nicta.com.au, clg@kaod.org, shorne@gmail.com,
qemu-riscv@nongnu.org, cohuck@redhat.com, amarkovic@wavecomp.com,
aurelien@aurel32.net, pburton@wavecomp.com,
sagark@eecs.berkeley.edu, jasowang@redhat.com, kraxel@redhat.com,
edgar.iglesias@gmail.com, gxt@mprc.pku.edu.cn, ari@tuxera.com,
quintela@redhat.com, mdroth@linux.vnet.ibm.com,
lersek@redhat.com, borntraeger@de.ibm.com,
antonynpavlov@gmail.com, dillaman@redhat.com, joel@jms.id.au,
xen-devel@lists.xenproject.org, integration@gluster.org,
rjones@redhat.com, Andrew.Baumann@microsoft.com,
mreitz@redhat.com, walling@linux.ibm.com, mst@redhat.com,
mark.cave-ayland@ilande.co.uk, v.maffione@gmail.com,
marex@denx.de, armbru@redhat.com, marcandre.lureau@redhat.com,
alistair@alistair23.me, paul.durrant@citrix.com,
pavel.dovgaluk@ispras.ru, g.lettieri@iet.unipi.it,
rizzo@iet.unipi.it, david@gibson.dropbear.id.au,
akrowiak@linux.ibm.com, berrange@redhat.com,
xiaoguangrong.eric@gmail.com, pmorel@linux.ibm.com,
wencongyang2@huawei.com, jcd@tribudubois.net,
pbonzini@redhat.com, stefanb@linux.ibm.com
Subject: [RFC v2 0/9] error: auto propagated local_err
Date: Mon, 23 Sep 2019 19:12:22 +0300 [thread overview]
Message-ID: <20190923161231.22028-1-vsementsov@virtuozzo.com> (raw)
Hi all!
Here is a proposal of auto propagation for local_err, to not call
error_propagate on every exit point, when we deal with local_err.
It also fixes two issues:
1. Fix issue with error_fatal & error_append_hint: user can't see these
hints, because exit() happens in error_setg earlier than hint is
appended. [Reported by Greg Kurz]
2. Fix issue with error_abort & error_propagate: when we wrap
error_abort by local_err+error_propagate, resulting coredump will
refer to error_propagate and not to the place where error happened.
(the macro itself don't fix the issue, but it allows to [3.] drop all
local_err+error_propagate pattern, which will definitely fix the issue)
[Reported by Kevin Wolf]
It's still an RFC, due to the following reasons:
1. I'm new to coccinella, so I failed to do the following pattern:
<...
- goto out;
+ return;
...>
- out:
- error_propagate(errp, local_err)
So, here is compilation fix 08.. Who can help with it? If nobody, 08 is
to be merged to 07 by hand.
2. Question about using new macro in empty stub functions - see 09
3. What to do with huge auto-generated commit 07? Should I split it
per-maintainer or per-subsystem, or leave it as-is?
4. Also, checkpatch has some complains about 07 patch:
- using tabs.. (hmm exactly stubs functions..)
- empty ifs
Again, I don't see any ways to fix it other that by hand and merge to
07..
==================
Also, if we decide, that this all is too huge, here is plan B:
1. apply 01
2. fix only functions that don't use local_err and use
error_append_hint, by just invocation of new macro at function start -
it will substitute Greg's series with no pain.
3[optional]. Do full update for some subsystems, for example, only for
block* and nbd*
Vladimir Sementsov-Ogievskiy (9):
error: auto propagated local_err
qapi/error: add (Error **errp) cleaning APIs
errp: rename errp to errp_in where it is IN-argument
hw/core/loader-fit: fix freeing errp in fit_load_fdt
net/net: fix local variable shadowing in net_client_init
scripts: add coccinelle script to use auto propagated errp
Use auto-propagated errp
fix-compilation: empty goto
fix-compilation: includes
include/hw/pci-host/spapr.h | 2 +
include/monitor/hmp.h | 2 +-
include/qapi/error.h | 61 ++++-
target/ppc/kvm_ppc.h | 3 +
target/s390x/cpu_models.h | 3 +
ui/vnc.h | 2 +-
audio/audio.c | 12 +-
authz/pamacct.c | 1 +
backends/cryptodev-vhost-user.c | 9 +-
backends/cryptodev.c | 24 +-
backends/hostmem-file.c | 19 +-
backends/hostmem-memfd.c | 17 +-
backends/hostmem.c | 38 ++-
backends/rng.c | 6 +-
block.c | 208 +++++++----------
block/blkdebug.c | 33 +--
block/blklogwrites.c | 21 +-
block/blkreplay.c | 6 +-
block/blkverify.c | 16 +-
block/block-backend.c | 17 +-
block/commit.c | 6 +-
block/crypto.c | 12 +-
block/curl.c | 6 +-
block/file-posix.c | 71 +++---
block/file-win32.c | 27 +--
block/gluster.c | 64 +++--
block/io.c | 11 +-
block/iscsi.c | 33 +--
block/mirror.c | 17 +-
block/nbd.c | 44 ++--
block/nfs.c | 6 +-
block/nvme.c | 17 +-
block/parallels.c | 28 +--
block/qapi.c | 23 +-
block/qcow.c | 15 +-
block/qcow2-bitmap.c | 6 +-
block/qcow2.c | 90 +++----
block/qed.c | 16 +-
block/quorum.c | 22 +-
block/raw-format.c | 6 +-
block/rbd.c | 25 +-
block/replication.c | 36 ++-
block/sheepdog.c | 66 +++---
block/snapshot.c | 14 +-
block/ssh.c | 11 +-
block/throttle-groups.c | 22 +-
block/throttle.c | 6 +-
block/vdi.c | 12 +-
block/vhdx.c | 20 +-
block/vmdk.c | 36 +--
block/vpc.c | 25 +-
block/vvfat.c | 11 +-
block/vxhs.c | 22 +-
blockdev.c | 220 +++++++-----------
blockjob.c | 7 +-
bootdevice.c | 29 +--
chardev/char-socket.c | 6 +-
chardev/char.c | 18 +-
crypto/block-luks.c | 31 +--
crypto/secret.c | 16 +-
crypto/tlssession.c | 6 +-
dump/dump.c | 142 +++++------
dump/win_dump.c | 27 +--
exec.c | 12 +-
hw/9pfs/9p-local.c | 7 +-
hw/acpi/core.c | 17 +-
hw/acpi/ich9.c | 27 +--
hw/acpi/memory_hotplug.c | 6 +-
hw/arm/allwinner-a10.c | 26 +--
hw/arm/armv7m.c | 51 ++--
hw/arm/bcm2835_peripherals.c | 84 +++----
hw/arm/bcm2836.c | 40 ++--
hw/arm/digic.c | 21 +-
hw/arm/fsl-imx25.c | 61 ++---
hw/arm/fsl-imx31.c | 56 ++---
hw/arm/fsl-imx6.c | 80 +++----
hw/arm/integratorcp.c | 6 +-
hw/arm/msf2-soc.c | 21 +-
hw/arm/nrf51_soc.c | 46 ++--
hw/arm/smmu-common.c | 6 +-
hw/arm/smmuv3.c | 6 +-
hw/arm/stm32f205_soc.c | 38 ++-
hw/arm/tosa.c | 1 +
hw/arm/xlnx-versal-virt.c | 6 +-
hw/arm/xlnx-zynqmp.c | 84 +++----
hw/audio/intel-hda.c | 12 +-
hw/block/dataplane/xen-block.c | 16 +-
hw/block/fdc.c | 17 +-
hw/block/onenand.c | 6 +-
hw/block/pflash_cfi01.c | 6 +-
hw/block/pflash_cfi02.c | 6 +-
hw/block/vhost-user-blk.c | 5 +-
hw/block/virtio-blk.c | 6 +-
hw/block/xen-block.c | 114 ++++-----
hw/char/debugcon.c | 6 +-
hw/char/serial-pci-multi.c | 6 +-
hw/char/serial-pci.c | 6 +-
hw/char/virtio-serial-bus.c | 6 +-
hw/core/bus.c | 14 +-
hw/core/loader-fit.c | 2 +-
hw/core/machine.c | 18 +-
hw/core/numa.c | 48 ++--
hw/core/qdev-properties-system.c | 24 +-
hw/core/qdev-properties.c | 78 +++----
hw/core/qdev.c | 36 ++-
hw/core/sysbus.c | 1 +
hw/cpu/a15mpcore.c | 6 +-
hw/cpu/a9mpcore.c | 26 +--
hw/cpu/arm11mpcore.c | 21 +-
hw/cpu/core.c | 12 +-
hw/cpu/realview_mpcore.c | 11 +-
hw/display/bcm2835_fb.c | 5 +-
hw/display/qxl.c | 6 +-
hw/display/virtio-gpu-base.c | 6 +-
hw/display/virtio-gpu-pci.c | 6 +-
hw/display/virtio-vga.c | 6 +-
hw/dma/bcm2835_dma.c | 5 +-
hw/dma/xilinx_axidma.c | 21 +-
hw/gpio/aspeed_gpio.c | 6 +-
hw/gpio/bcm2835_gpio.c | 9 +-
hw/i386/kvm/apic.c | 2 +
hw/i386/pc.c | 109 ++++-----
hw/ide/qdev.c | 15 +-
hw/input/virtio-input.c | 12 +-
hw/intc/apic_common.c | 6 +-
hw/intc/arm_gic.c | 6 +-
hw/intc/arm_gic_kvm.c | 11 +-
hw/intc/arm_gicv3.c | 11 +-
hw/intc/arm_gicv3_its_kvm.c | 6 +-
hw/intc/arm_gicv3_kvm.c | 16 +-
hw/intc/armv7m_nvic.c | 11 +-
hw/intc/nios2_iic.c | 5 +-
hw/intc/pnv_xive.c | 14 +-
hw/intc/realview_gic.c | 6 +-
hw/intc/s390_flic_kvm.c | 10 +-
hw/intc/spapr_xive.c | 11 +-
hw/intc/spapr_xive_kvm.c | 49 ++--
hw/intc/xics.c | 31 +--
hw/intc/xics_kvm.c | 28 +--
hw/intc/xics_pnv.c | 6 +-
hw/intc/xive.c | 23 +-
hw/ipack/ipack.c | 4 +-
hw/isa/pc87312.c | 6 +-
hw/mem/memory-device.c | 19 +-
hw/mem/nvdimm.c | 23 +-
hw/mem/pc-dimm.c | 21 +-
hw/microblaze/xlnx-zynqmp-pmu.c | 11 +-
hw/mips/cps.c | 45 ++--
hw/misc/arm11scu.c | 2 +
hw/misc/bcm2835_mbox.c | 5 +-
hw/misc/bcm2835_property.c | 9 +-
hw/misc/ivshmem.c | 33 +--
hw/misc/macio/macio.c | 65 ++----
hw/misc/mps2-scc.c | 2 +
hw/misc/tmp105.c | 6 +-
hw/misc/tmp421.c | 6 +-
hw/net/dp8393x.c | 6 +-
hw/net/eepro100.c | 6 +-
hw/net/ne2000-isa.c | 16 +-
hw/net/xilinx_axienet.c | 21 +-
hw/nvram/fw_cfg.c | 12 +-
hw/nvram/nrf51_nvm.c | 6 +-
hw/pci-bridge/dec.c | 2 +
hw/pci-bridge/gen_pcie_root_port.c | 6 +-
hw/pci-bridge/pci_bridge_dev.c | 12 +-
hw/pci-bridge/pci_expander_bridge.c | 6 +-
hw/pci-bridge/pcie_pci_bridge.c | 7 +-
hw/pci-host/piix.c | 6 +-
hw/pci/pci.c | 17 +-
hw/pci/pcie.c | 6 +-
hw/pci/shpc.c | 12 +-
hw/ppc/e500.c | 6 +-
hw/ppc/pnv.c | 92 +++-----
hw/ppc/pnv_core.c | 21 +-
hw/ppc/pnv_lpc.c | 22 +-
hw/ppc/pnv_occ.c | 4 +-
hw/ppc/pnv_psi.c | 21 +-
hw/ppc/spapr.c | 124 ++++------
hw/ppc/spapr_caps.c | 50 ++--
hw/ppc/spapr_cpu_core.c | 33 ++-
hw/ppc/spapr_drc.c | 44 ++--
hw/ppc/spapr_irq.c | 95 +++-----
hw/ppc/spapr_pci.c | 88 +++----
hw/ppc/spapr_vio.c | 11 +-
hw/riscv/riscv_hart.c | 7 +-
hw/riscv/sifive_e.c | 6 +-
hw/riscv/sifive_u.c | 10 +-
hw/s390x/3270-ccw.c | 12 +-
hw/s390x/css-bridge.c | 6 +-
hw/s390x/css.c | 6 +-
hw/s390x/ipl.c | 23 +-
hw/s390x/s390-ccw.c | 17 +-
hw/s390x/s390-pci-bus.c | 34 ++-
hw/s390x/s390-skeys.c | 6 +-
hw/s390x/s390-virtio-ccw.c | 10 +-
hw/s390x/sclp.c | 14 +-
hw/s390x/tod-kvm.c | 13 +-
hw/s390x/virtio-ccw-crypto.c | 6 +-
hw/s390x/virtio-ccw-rng.c | 6 +-
hw/s390x/virtio-ccw.c | 12 +-
hw/scsi/esp-pci.c | 6 +-
hw/scsi/megasas.c | 10 +-
hw/scsi/mptsas.c | 12 +-
hw/scsi/scsi-bus.c | 22 +-
hw/scsi/scsi-disk.c | 6 +-
hw/scsi/vhost-scsi.c | 11 +-
hw/scsi/vhost-user-scsi.c | 6 +-
hw/scsi/virtio-scsi.c | 6 +-
hw/sd/milkymist-memcard.c | 10 +-
hw/sd/sdhci-pci.c | 6 +-
hw/sd/sdhci.c | 20 +-
hw/sd/ssi-sd.c | 13 +-
hw/smbios/smbios.c | 41 ++--
hw/sparc/sun4m.c | 18 +-
hw/sparc64/sun4u.c | 6 +-
hw/timer/aspeed_timer.c | 6 +-
hw/tpm/tpm_util.c | 6 +-
hw/usb/bus.c | 33 +--
hw/usb/dev-serial.c | 6 +-
hw/usb/dev-smartcard-reader.c | 12 +-
hw/usb/dev-storage.c | 16 +-
hw/usb/hcd-ohci-pci.c | 6 +-
hw/usb/hcd-ohci.c | 12 +-
hw/usb/hcd-uhci.c | 6 +-
hw/usb/hcd-xhci.c | 12 +-
hw/vfio/ap.c | 9 +-
hw/vfio/ccw.c | 23 +-
hw/vfio/pci-quirks.c | 6 +-
hw/vfio/pci.c | 36 ++-
hw/virtio/virtio-balloon.c | 33 ++-
hw/virtio/virtio-bus.c | 16 +-
hw/virtio/virtio-rng-pci.c | 6 +-
hw/virtio/virtio-rng.c | 6 +-
hw/virtio/virtio.c | 17 +-
hw/watchdog/wdt_aspeed.c | 4 +-
hw/xen/xen-backend.c | 6 +-
hw/xen/xen-bus.c | 85 +++----
hw/xen/xen-host-pci-device.c | 26 +--
hw/xen/xen_pt.c | 24 +-
hw/xen/xen_pt_config_init.c | 19 +-
io/dns-resolver.c | 6 +-
io/net-listener.c | 6 +-
iothread.c | 25 +-
job.c | 6 +-
memory.c | 54 ++---
memory_mapping.c | 6 +-
migration/colo.c | 33 +--
migration/migration.c | 35 ++-
migration/ram.c | 12 +-
migration/rdma.c | 11 +-
migration/socket.c | 16 +-
monitor/hmp-cmds.c | 8 +-
monitor/misc.c | 8 +-
monitor/qmp-cmds.c | 6 +-
net/can/can_host.c | 6 +-
net/dump.c | 14 +-
net/filter-buffer.c | 14 +-
net/filter.c | 6 +-
net/net.c | 44 ++--
net/netmap.c | 6 +-
net/slirp.c | 6 +-
net/tap-bsd.c | 1 +
net/tap-solaris.c | 1 +
net/tap-stub.c | 1 +
net/tap.c | 44 ++--
qapi/opts-visitor.c | 1 +
qapi/qapi-dealloc-visitor.c | 8 +
qapi/qapi-visit-core.c | 53 ++---
qapi/qmp-dispatch.c | 6 +-
qapi/string-input-visitor.c | 6 +-
qdev-monitor.c | 37 ++-
qga/commands-posix.c | 197 ++++++----------
qga/commands-win32.c | 127 ++++------
qom/object.c | 187 ++++++---------
qom/object_interfaces.c | 26 +--
qom/qom-qobject.c | 6 +-
replication.c | 24 +-
scsi/pr-manager-helper.c | 6 +-
stubs/xen-hvm.c | 3 +
target/alpha/cpu.c | 6 +-
target/arm/cpu.c | 6 +-
target/arm/cpu64.c | 10 +-
target/cris/cpu.c | 6 +-
target/hppa/cpu.c | 6 +-
target/i386/cpu.c | 107 ++++-----
target/lm32/cpu.c | 6 +-
target/m68k/cpu.c | 6 +-
target/microblaze/cpu.c | 6 +-
target/mips/cpu.c | 6 +-
target/moxie/cpu.c | 6 +-
target/nios2/cpu.c | 6 +-
target/openrisc/cpu.c | 6 +-
target/ppc/compat.c | 18 +-
target/ppc/kvm.c | 6 +-
target/ppc/translate_init.inc.c | 23 +-
target/riscv/cpu.c | 6 +-
target/s390x/cpu.c | 25 +-
target/s390x/kvm-stub.c | 1 +
target/sh4/cpu.c | 6 +-
target/sparc/cpu.c | 12 +-
target/tilegx/cpu.c | 6 +-
target/tricore/cpu.c | 6 +-
target/unicore32/cpu.c | 6 +-
target/xtensa/cpu.c | 6 +-
tests/test-image-locking.c | 6 +-
tests/test-qmp-cmds.c | 7 +
tpm.c | 6 +-
trace/qmp.c | 12 +-
ui/input-barrier.c | 6 +-
ui/input.c | 12 +-
ui/vnc.c | 27 +--
util/error.c | 8 +-
util/main-loop.c | 4 +-
util/oslib-posix.c | 5 +-
util/qemu-config.c | 27 +--
util/qemu-option.c | 50 ++--
util/qemu-sockets.c | 25 +-
vl.c | 13 +-
scripts/coccinelle/auto-propagated-errp.cocci | 82 +++++++
319 files changed, 2729 insertions(+), 4245 deletions(-)
create mode 100644 scripts/coccinelle/auto-propagated-errp.cocci
--
2.21.0
next reply other threads:[~2019-09-23 16:29 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-23 16:12 Vladimir Sementsov-Ogievskiy [this message]
2019-09-23 16:12 ` [RFC v2 1/9] error: auto propagated local_err Vladimir Sementsov-Ogievskiy
2019-09-23 19:58 ` Eric Blake
2019-09-23 16:12 ` [RFC v2 2/9] qapi/error: add (Error **errp) cleaning APIs Vladimir Sementsov-Ogievskiy
2019-09-23 18:39 ` Eric Blake
2019-09-23 16:12 ` [RFC v2 3/9] errp: rename errp to errp_in where it is IN-argument Vladimir Sementsov-Ogievskiy
2019-09-23 18:35 ` Eric Blake
2019-09-23 16:12 ` [RFC v2 4/9] hw/core/loader-fit: fix freeing errp in fit_load_fdt Vladimir Sementsov-Ogievskiy
2019-09-23 18:41 ` Eric Blake
2019-09-23 16:12 ` [RFC v2 5/9] net/net: fix local variable shadowing in net_client_init Vladimir Sementsov-Ogievskiy
2019-09-23 18:44 ` Eric Blake
2019-09-23 16:12 ` [RFC v2 6/9] scripts: add coccinelle script to use auto propagated errp Vladimir Sementsov-Ogievskiy
2019-09-23 20:05 ` Eric Blake
2019-09-23 21:29 ` Eric Blake
2019-09-24 10:35 ` Vladimir Sementsov-Ogievskiy
2019-09-23 16:12 ` [RFC v2 8/9] fix-compilation: empty goto Vladimir Sementsov-Ogievskiy
2019-09-23 16:12 ` [RFC v2 9/9] fix-compilation: includes Vladimir Sementsov-Ogievskiy
2019-09-23 19:47 ` [RFC v2 0/9] error: auto propagated local_err Eric Blake
2019-09-24 14:12 ` Vladimir Sementsov-Ogievskiy
2019-09-24 15:28 ` Eric Blake
2019-09-24 15:44 ` Vladimir Sementsov-Ogievskiy
2019-09-24 15:46 ` Vladimir Sementsov-Ogievskiy
2019-09-24 15:49 ` Vladimir Sementsov-Ogievskiy
2019-09-24 16:10 ` Vladimir Sementsov-Ogievskiy
[not found] ` <20190923161231.22028-8-vsementsov@virtuozzo.com>
2019-09-23 20:30 ` [RFC v2 7/9] Use auto-propagated errp Eric Blake
2019-09-24 7:54 ` Vladimir Sementsov-Ogievskiy
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=20190923161231.22028-1-vsementsov@virtuozzo.com \
--to=vsementsov@virtuozzo.com \
--cc=Andrew.Baumann@microsoft.com \
--cc=akrowiak@linux.ibm.com \
--cc=alex.williamson@redhat.com \
--cc=alistair@alistair23.me \
--cc=amarkovic@wavecomp.com \
--cc=amit@kernel.org \
--cc=andrew@aj.id.au \
--cc=anthony.perard@citrix.com \
--cc=antonynpavlov@gmail.com \
--cc=arei.gonglei@huawei.com \
--cc=ari@tuxera.com \
--cc=arikalo@wavecomp.com \
--cc=armbru@redhat.com \
--cc=atar4qemu@gmail.com \
--cc=aurelien@aurel32.net \
--cc=b.galvani@gmail.com \
--cc=berrange@redhat.com \
--cc=berto@igalia.com \
--cc=borntraeger@de.ibm.com \
--cc=clg@kaod.org \
--cc=codyprime@gmail.com \
--cc=cohuck@redhat.com \
--cc=crwulff@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=david@redhat.com \
--cc=den@openvz.org \
--cc=dgilbert@redhat.com \
--cc=dillaman@redhat.com \
--cc=edgar.iglesias@gmail.com \
--cc=ehabkost@redhat.com \
--cc=eric.auger@redhat.com \
--cc=fam@euphon.net \
--cc=farman@linux.ibm.com \
--cc=g.lettieri@iet.unipi.it \
--cc=green@moxielogic.com \
--cc=groug@kaod.org \
--cc=gxt@mprc.pku.edu.cn \
--cc=hare@suse.com \
--cc=hpoussin@reactos.org \
--cc=imammedo@redhat.com \
--cc=integration@gluster.org \
--cc=jan.kiszka@siemens.com \
--cc=jasowang@redhat.com \
--cc=jcd@tribudubois.net \
--cc=jcmvbkbc@gmail.com \
--cc=joel@jms.id.au \
--cc=jsnow@redhat.com \
--cc=kbastian@mail.uni-paderborn.de \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.com \
--cc=lersek@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=marex@denx.de \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=mdroth@linux.vnet.ibm.com \
--cc=michael@walle.cc \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=namei.unix@gmail.com \
--cc=palmer@sifive.com \
--cc=pasic@linux.ibm.com \
--cc=paul.durrant@citrix.com \
--cc=pavel.dovgaluk@ispras.ru \
--cc=pbonzini@redhat.com \
--cc=pburton@wavecomp.com \
--cc=peter.chubb@nicta.com.au \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=pl@kamp.de \
--cc=pmorel@linux.ibm.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=quintela@redhat.com \
--cc=rizzo@iet.unipi.it \
--cc=rjones@redhat.com \
--cc=ronniesahlberg@gmail.com \
--cc=rth@twiddle.net \
--cc=sagark@eecs.berkeley.edu \
--cc=samuel.thibault@ens-lyon.org \
--cc=sheepdog@lists.wpkg.org \
--cc=shorne@gmail.com \
--cc=sstabellini@kernel.org \
--cc=stefanb@linux.ibm.com \
--cc=stefanha@redhat.com \
--cc=sundeep.lkml@gmail.com \
--cc=sw@weilnetz.de \
--cc=thuth@redhat.com \
--cc=v.maffione@gmail.com \
--cc=walling@linux.ibm.com \
--cc=wencongyang2@huawei.com \
--cc=xen-devel@lists.xenproject.org \
--cc=xiaoguangrong.eric@gmail.com \
--cc=xiechanglong.d@gmail.com \
--cc=zhang.zhanghailiang@huawei.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).