From: Paolo Bonzini <pbonzini@redhat.com>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: Re: [PATCH 0/8] Misc build fixes and cleanups
Date: Thu, 24 Feb 2022 15:03:44 +0100 [thread overview]
Message-ID: <c25cc1fb-e896-3588-6a27-2b9ce81aef99@redhat.com> (raw)
In-Reply-To: <20220222194008.610377-1-marcandre.lureau@redhat.com>
On 2/22/22 20:40, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Hi,
>
> A small collection of patches gleaned while working on different things.
Queued all except patch 4.
Paolo
> Marc-André Lureau (8):
> meson: fix generic location of vss headers
> qga/vss-win32: check old VSS SDK headers
> qga/vss: update informative message about MinGW
> meson: drop the .fa library suffix
> meson: use chardev_ss dependencies
> char: move qemu_openpty_raw from util/ to char/
> Drop qemu_foo() socket API wrapper
> Replace GCC_FMT_ATTR with G_GNUC_PRINTF
>
> docs/devel/build-system.rst | 5 -
> meson.build | 25 ++---
> audio/audio.h | 4 +-
> block/qcow2.h | 2 +-
> bsd-user/qemu.h | 2 +-
> hw/display/qxl.h | 2 +-
> hw/net/rocker/rocker.h | 2 +-
> hw/xen/xen_pt.h | 2 +-
> include/chardev/char-fe.h | 2 +-
> include/disas/dis-asm.h | 2 +-
> include/hw/acpi/aml-build.h | 12 +-
> include/hw/core/cpu.h | 2 +-
> include/hw/hw.h | 2 +-
> include/hw/virtio/virtio.h | 2 +-
> include/hw/xen/xen-bus-helper.h | 4 +-
> include/hw/xen/xen-bus.h | 4 +-
> include/hw/xen/xen_common.h | 2 +-
> include/hw/xen/xen_pvdev.h | 2 +-
> include/monitor/monitor.h | 4 +-
> include/qapi/error.h | 20 ++--
> include/qapi/qmp/qjson.h | 8 +-
> include/qemu-common.h | 21 ----
> include/qemu/buffer.h | 2 +-
> include/qemu/compiler.h | 11 +-
> include/qemu/error-report.h | 24 ++--
> include/qemu/log-for-trace.h | 2 +-
> include/qemu/log.h | 2 +-
> include/qemu/qemu-print.h | 8 +-
> include/qemu/readline.h | 2 +-
> qga/guest-agent-core.h | 2 +-
> qga/vss-win32/requester.h | 2 +-
> qga/vss-win32/vss-common.h | 3 +-
> scripts/cocci-macro-file.h | 2 +-
> tests/qtest/libqos/libqtest.h | 42 +++----
> tests/qtest/libqtest-single.h | 2 +-
> tests/qtest/migration-helpers.h | 6 +-
> audio/alsaaudio.c | 4 +-
> audio/coreaudio.c | 4 +-
> audio/dsoundaudio.c | 4 +-
> audio/ossaudio.c | 4 +-
> audio/paaudio.c | 2 +-
> audio/sdlaudio.c | 2 +-
> block/blkverify.c | 2 +-
> block/ssh.c | 4 +-
> chardev/char-pty.c | 104 ++++++++++++++++++
> crypto/cipher-afalg.c | 4 +-
> crypto/hash-afalg.c | 4 +-
> fsdev/9p-marshal.c | 2 +-
> fsdev/virtfs-proxy-helper.c | 2 +-
> gdbstub.c | 2 +-
> hw/9pfs/9p.c | 2 +-
> hw/acpi/aml-build.c | 4 +-
> hw/mips/fuloong2e.c | 2 +-
> hw/mips/malta.c | 2 +-
> hw/net/rtl8139.c | 2 +-
> hw/virtio/virtio.c | 2 +-
> io/channel-socket.c | 6 +-
> io/channel-websock.c | 2 +-
> monitor/hmp.c | 4 +-
> nbd/server.c | 10 +-
> net/socket.c | 24 ++--
> qemu-img.c | 4 +-
> qemu-io.c | 2 +-
> qobject/json-parser.c | 2 +-
> softmmu/qtest.c | 4 +-
> tests/qtest/e1000e-test.c | 4 +-
> tests/qtest/libqtest.c | 6 +-
> tests/qtest/npcm7xx_emc-test.c | 4 +-
> tests/qtest/test-filter-mirror.c | 4 +-
> tests/qtest/test-filter-redirector.c | 8 +-
> tests/qtest/virtio-net-test.c | 10 +-
> tests/unit/socket-helpers.c | 2 +-
> tests/unit/test-qobject-input-visitor.c | 4 +-
> util/osdep.c | 4 +-
> util/qemu-openpty.c | 139 ------------------------
> util/qemu-sockets.c | 10 +-
> chardev/meson.build | 4 +-
> qga/meson.build | 2 +-
> qga/vss-win32/install.cpp | 4 +
> qga/vss-win32/provider.cpp | 4 +
> scripts/checkpatch.pl | 2 +-
> tests/qtest/libqos/meson.build | 1 -
> util/meson.build | 1 -
> 83 files changed, 300 insertions(+), 370 deletions(-)
> delete mode 100644 util/qemu-openpty.c
>
prev parent reply other threads:[~2022-02-24 14:06 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-22 19:40 [PATCH 0/8] Misc build fixes and cleanups marcandre.lureau
2022-02-22 19:40 ` [PATCH 1/8] meson: fix generic location of vss headers marcandre.lureau
2022-02-22 19:40 ` [PATCH 2/8] qga/vss-win32: check old VSS SDK headers marcandre.lureau
2022-02-22 19:40 ` [PATCH 3/8] qga/vss: update informative message about MinGW marcandre.lureau
2022-02-22 19:40 ` [PATCH 4/8] meson: drop the .fa library suffix marcandre.lureau
2022-02-23 9:07 ` Paolo Bonzini
2022-02-23 9:14 ` Marc-André Lureau
2022-02-24 14:01 ` Paolo Bonzini
2022-02-22 19:40 ` [PATCH 5/8] meson: use chardev_ss dependencies marcandre.lureau
2022-02-22 19:40 ` [PATCH 6/8] char: move qemu_openpty_raw from util/ to char/ marcandre.lureau
2022-02-24 17:04 ` Marc-André Lureau
2022-02-26 7:38 ` Paolo Bonzini
2022-02-28 7:53 ` Marc-André Lureau
2022-02-28 9:13 ` Daniel P. Berrangé
2022-02-28 11:07 ` Peter Maydell
2022-02-28 11:14 ` Daniel P. Berrangé
2022-02-22 19:40 ` [PATCH 7/8] Drop qemu_foo() socket API wrapper marcandre.lureau
2022-02-22 21:26 ` Philippe Mathieu-Daudé
2022-02-24 15:53 ` Eric Blake
2022-02-22 19:40 ` [PATCH 8/8] Replace GCC_FMT_ATTR with G_GNUC_PRINTF marcandre.lureau
2022-02-24 14:03 ` Paolo Bonzini [this message]
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=c25cc1fb-e896-3588-6a27-2b9ce81aef99@redhat.com \
--to=pbonzini@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/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).