qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/25] Misc QEMU-GA patches 2024-07-22
@ 2024-07-22  7:00 Konstantin Kostiuk
  2024-07-22  7:00 ` [PULL 01/25] qga: drop blocking of guest-get-memory-block-size command Konstantin Kostiuk
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Konstantin Kostiuk @ 2024-07-22  7:00 UTC (permalink / raw)
  To: qemu-devel, Peter Maydell, Stefan Hajnoczi

The following changes since commit 23fa74974d8c96bc95cbecc0d4e2d90f984939f6:

  Merge tag 'pull-target-arm-20240718' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2024-07-19 07:02:17 +1000)

are available in the Git repository at:

  https://github.com/kostyanf14/qemu.git tags/qga-pull-2024-07-22

for you to fetch changes up to 24d12dfc5abb3b4ac2506f22c3fd0cda40a6977d:

  qga/linux: Add new api 'guest-network-get-route' (2024-07-22 09:51:12 +0300)

----------------------------------------------------------------
qga-pull-2024-07-22

----------------------------------------------------------------
Daniel P. Berrangé (22):
      qga: drop blocking of guest-get-memory-block-size command
      qga: move linux vcpu command impls to commands-linux.c
      qga: move linux suspend command impls to commands-linux.c
      qga: move linux fs/disk command impls to commands-linux.c
      qga: move linux disk/cpu stats command impls to commands-linux.c
      qga: move linux memory block command impls to commands-linux.c
      qga: move CONFIG_FSFREEZE/TRIM to be meson defined options
      qga: conditionalize schema for commands unsupported on Windows
      qga: conditionalize schema for commands unsupported on non-Linux POSIX
      qga: conditionalize schema for commands requiring getifaddrs
      qga: conditionalize schema for commands requiring linux/win32
      qga: conditionalize schema for commands only supported on Windows
      qga: conditionalize schema for commands requiring fsfreeze
      qga: conditionalize schema for commands requiring fstrim
      qga: conditionalize schema for commands requiring libudev
      qga: conditionalize schema for commands requiring utmpx
      qga: conditionalize schema for commands not supported on other UNIX
      qga: don't disable fsfreeze commands if vss_init fails
      qga: move declare of QGAConfig struct to top of file
      qga: remove pointless 'blockrpcs_key' variable
      qga: allow configuration file path via the cli
      qga: centralize logic for disabling/enabling commands

Dehan Meng (1):
      qga/linux: Add new api 'guest-network-get-route'

Thomas Lamprecht (1):
      guest-agent: document allow-rpcs in config file section

Zhao Liu (1):
      qga/commands-posix: Make ga_wait_child() return boolean

 docs/interop/qemu-ga.rst |   20 +
 meson.build              |   16 +
 qga/commands-bsd.c       |   24 -
 qga/commands-common.h    |    9 -
 qga/commands-linux.c     | 1938 +++++++++++++++++++++++++++++++++++++
 qga/commands-posix.c     | 2383 ++++------------------------------------------
 qga/commands-win32.c     |   78 +-
 qga/main.c               |  224 ++---
 qga/qapi-schema.json     |  226 ++++-
 9 files changed, 2452 insertions(+), 2466 deletions(-)

--
2.45.2



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2024-07-22 22:27 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-22  7:00 [PULL 00/25] Misc QEMU-GA patches 2024-07-22 Konstantin Kostiuk
2024-07-22  7:00 ` [PULL 01/25] qga: drop blocking of guest-get-memory-block-size command Konstantin Kostiuk
2024-07-22  7:00 ` [PULL 02/25] qga: move linux vcpu command impls to commands-linux.c Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 03/25] qga: move linux suspend " Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 04/25] qga: move linux fs/disk " Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 05/25] qga: move linux disk/cpu stats " Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 06/25] qga: move linux memory block " Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 07/25] qga: move CONFIG_FSFREEZE/TRIM to be meson defined options Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 08/25] qga: conditionalize schema for commands unsupported on Windows Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 09/25] qga: conditionalize schema for commands unsupported on non-Linux POSIX Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 10/25] qga: conditionalize schema for commands requiring getifaddrs Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 11/25] qga: conditionalize schema for commands requiring linux/win32 Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 12/25] qga: conditionalize schema for commands only supported on Windows Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 13/25] qga: conditionalize schema for commands requiring fsfreeze Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 14/25] qga: conditionalize schema for commands requiring fstrim Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 15/25] qga: conditionalize schema for commands requiring libudev Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 16/25] qga: conditionalize schema for commands requiring utmpx Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 17/25] qga: conditionalize schema for commands not supported on other UNIX Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 18/25] qga: don't disable fsfreeze commands if vss_init fails Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 19/25] qga: move declare of QGAConfig struct to top of file Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 20/25] qga: remove pointless 'blockrpcs_key' variable Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 21/25] qga: allow configuration file path via the cli Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 22/25] qga: centralize logic for disabling/enabling commands Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 23/25] qga/commands-posix: Make ga_wait_child() return boolean Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 24/25] guest-agent: document allow-rpcs in config file section Konstantin Kostiuk
2024-07-22  7:01 ` [PULL 25/25] qga/linux: Add new api 'guest-network-get-route' Konstantin Kostiuk
2024-07-22 22:26 ` [PULL 00/25] Misc QEMU-GA patches 2024-07-22 Richard Henderson

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).