qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/25] Misc QEMU-GA patches 2024-07-22
@ 2024-07-23  7:02 Konstantin Kostiuk
  2024-07-23  7:02 ` [PULL v2 01/25] qga: drop blocking of guest-get-memory-block-size command Konstantin Kostiuk
                   ` (25 more replies)
  0 siblings, 26 replies; 32+ messages in thread
From: Konstantin Kostiuk @ 2024-07-23  7:02 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-23

for you to fetch changes up to 8e326d36dd16b91d9abc4963b5f75b8f637c2312:

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

----------------------------------------------------------------
qga-pull-2024-07-23

v1->v2:
  Fix clang build failure of qga/linux: Add new api 'guest-network-get-route'

----------------------------------------------------------------
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] 32+ messages in thread

end of thread, other threads:[~2024-08-19  7:08 UTC | newest]

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