qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org
Cc: Konstantin Kostiuk <kkostiuk@redhat.com>,
	Michael Roth <michael.roth@amd.com>
Subject: Re: [PULL v2 00/15] Misc patches
Date: Sun, 29 May 2022 18:58:01 -0700	[thread overview]
Message-ID: <3fb4b54c-04d6-da23-f914-0516343f8e7d@linaro.org> (raw)
In-Reply-To: <20220529225137.232359-1-marcandre.lureau@redhat.com>

On 5/29/22 15:51, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> 
> The following changes since commit 2417cbd5916d043e0c56408221fbe9935d0bc8da:
> 
>    Merge tag 'ak-pull-request' of https://gitlab.com/berrange/qemu into staging (2022-05-26 07:00:04 -0700)
> 
> are available in the Git repository at:
> 
>    git@gitlab.com:marcandre.lureau/qemu.git tags/misc-pull-request
> 
> for you to fetch changes up to bb6960a11ae9c9d727bab45c22cb4a9eb12cde55:
> 
>    test/qga: use g_auto wherever sensible (2022-05-28 11:42:56 +0200)
> 
> ----------------------------------------------------------------
> Misc cleanups
> 
> Mostly qemu-ga related cleanups.

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> 
> Marc-André Lureau (15):
>    include: move qemu_*_exec_dir() to cutils
>    util/win32: simplify qemu_get_local_state_dir()
>    tests: make libqmp buildable for win32
>    qga: flatten safe_open_or_create()
>    qga: add qga_open_cloexec() helper
>    qga: use qga_open_cloexec() for safe_open_or_create()
>    qga: throw an Error in ga_channel_open()
>    qga: replace qemu_open_old() with qga_open_cloexec()
>    qga: make build_fs_mount_list() return a bool
>    test/qga: use G_TEST_DIR to locate os-release test file
>    qga/wixl: prefer variables over environment
>    qga/wixl: require Mingw_bin
>    qga/wixl: simplify some pre-processing
>    qga/wixl: replace QEMU_GA_MSI_MINGW_BIN_PATH with glib bindir
>    test/qga: use g_auto wherever sensible
> 
>   configure                            |   9 +-
>   meson.build                          |   5 +-
>   include/qemu/cutils.h                |   7 ++
>   include/qemu/osdep.h                 |   8 --
>   qga/cutils.h                         |   8 ++
>   tests/qtest/libqmp.h                 |   2 +
>   qemu-io.c                            |   1 +
>   qga/channel-posix.c                  |  55 +++++-----
>   qga/commands-posix.c                 | 154 +++++++++++++--------------
>   qga/cutils.c                         |  33 ++++++
>   storage-daemon/qemu-storage-daemon.c |   1 +
>   tests/qtest/fuzz/fuzz.c              |   1 +
>   tests/qtest/libqmp.c                 |  34 +++++-
>   tests/unit/test-qga.c                | 130 ++++++++--------------
>   util/cutils.c                        | 117 ++++++++++++++++++++
>   util/oslib-posix.c                   |  86 +--------------
>   util/oslib-win32.c                   |  53 +--------
>   qga/installer/qemu-ga.wxs            |  83 +++++----------
>   qga/meson.build                      |  12 +--
>   19 files changed, 396 insertions(+), 403 deletions(-)
>   create mode 100644 qga/cutils.h
>   create mode 100644 qga/cutils.c
> 



      parent reply	other threads:[~2022-05-30  1:59 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-29 22:51 [PULL v2 00/15] Misc patches marcandre.lureau
2022-05-29 22:51 ` [PULL v2 01/15] include: move qemu_*_exec_dir() to cutils marcandre.lureau
2022-05-29 22:51 ` [PULL v2 02/15] util/win32: simplify qemu_get_local_state_dir() marcandre.lureau
2022-05-29 22:51 ` [PULL v2 03/15] tests: make libqmp buildable for win32 marcandre.lureau
2022-05-29 22:51 ` [PULL v2 04/15] qga: flatten safe_open_or_create() marcandre.lureau
2022-05-29 22:51 ` [PULL v2 05/15] qga: add qga_open_cloexec() helper marcandre.lureau
2022-05-29 22:51 ` [PULL v2 06/15] qga: use qga_open_cloexec() for safe_open_or_create() marcandre.lureau
2022-05-29 22:51 ` [PULL v2 07/15] qga: throw an Error in ga_channel_open() marcandre.lureau
2022-05-29 22:51 ` [PULL v2 08/15] qga: replace qemu_open_old() with qga_open_cloexec() marcandre.lureau
2022-05-29 22:51 ` [PULL v2 09/15] qga: make build_fs_mount_list() return a bool marcandre.lureau
2022-05-29 22:51 ` [PULL v2 10/15] test/qga: use G_TEST_DIR to locate os-release test file marcandre.lureau
2022-05-29 22:51 ` [PULL v2 11/15] qga/wixl: prefer variables over environment marcandre.lureau
2022-05-29 22:51 ` [PULL v2 12/15] qga/wixl: require Mingw_bin marcandre.lureau
2022-05-29 22:51 ` [PULL v2 13/15] qga/wixl: simplify some pre-processing marcandre.lureau
2022-05-29 22:51 ` [PULL v2 14/15] qga/wixl: replace QEMU_GA_MSI_MINGW_BIN_PATH with glib bindir marcandre.lureau
2022-05-29 22:51 ` [PULL v2 15/15] test/qga: use g_auto wherever sensible marcandre.lureau
2022-05-30  1:58 ` Richard Henderson [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=3fb4b54c-04d6-da23-f914-0516343f8e7d@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=kkostiuk@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=michael.roth@amd.com \
    --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).