qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue
@ 2017-04-27  5:46 Michael Roth
  2017-04-27  5:46 ` [Qemu-devel] [PULL v2 1/8] qemu-ga: Make QGA VSS provider service run only when needed Michael Roth
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Michael Roth @ 2017-04-27  5:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 81b2d5ceb0cfb4cdc2163492e3169ed714b0cda9:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20170426' into staging (2017-04-26 20:50:49 +0100)

are available in the git repository at:

  git://github.com/mdroth/qemu.git tags/qga-pull-2017-04-25-v2-tag

for you to fetch changes up to 53c58e64d0a27c59d763778faa2b5a522c544719:

  qga: Add `guest-get-timezone` command (2017-04-27 00:40:25 -0500)

----------------------------------------------------------------
qemu-ga patch queue

* new commands: guest-get-timezone, guest-get-users, guest-get-host-name
* fix hang on w32 when stopping qemu-ga service while fs frozen
* fix missing setting of can-offline in guest-get-vcpus
* make qemu-ga VSS w32 service on-demand rather than on-startup
* fix unecessary errors to EventLog on w32
* improvements to fsfreeze documentation

v2:
 * document 'zone' field of guest-get-timezone as informational-only
   (Daniel, Eric)
 * fix build error for glib < 2.32 (Peter)

----------------------------------------------------------------
Marc-André Lureau (1):
      qga: improve fsfreeze documentations

Sameeh Jubran (4):
      qemu-ga: Make QGA VSS provider service run only when needed
      qga-win: Enable 'can-offline' field in 'guest-get-vcpus' reply
      qga-win: Fix a bug where qemu-ga service is stuck during stop operation
      qga-win: Fix Event Viewer errors caused by qemu-ga

Vinzenz Feenstra (3):
      qga: Add 'guest-get-host-name' command
      qga: Add 'guest-get-users' command
      qga: Add `guest-get-timezone` command

 configure                   |   2 +-
 include/glib-compat.h       |   6 +++
 qga/commands-posix.c        |  60 +++++++++++++++++++++++++
 qga/commands-win32.c        | 105 +++++++++++++++++++++++++++++++++++++++++++-
 qga/commands.c              |  49 +++++++++++++++++++++
 qga/main.c                  |  23 ++++++++++
 qga/qapi-schema.json        |  88 ++++++++++++++++++++++++++++++++++++-
 qga/vss-win32.h             |   1 +
 qga/vss-win32/install.cpp   |  28 +++++++++++-
 qga/vss-win32/install.h     |  20 +++++++++
 qga/vss-win32/provider.cpp  |   1 -
 qga/vss-win32/requester.cpp |   2 +
 qga/vss-win32/vss-common.h  |  11 +----
 qga/vss-win32/vss-handles.h |  14 ++++++
 14 files changed, 393 insertions(+), 17 deletions(-)
 create mode 100644 qga/vss-win32/install.h
 create mode 100644 qga/vss-win32/vss-handles.h

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue
@ 2017-07-18 11:01 Michael Roth
  2017-07-18 14:22 ` Peter Maydell
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Roth @ 2017-07-18 11:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit ca4e667dbf431d4a2a5a619cde79d30dd2ac3eb2:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20170717-pull-request' into staging (2017-07-17 17:54:17 +0100)

are available in the git repository at:

  git://github.com/mdroth/qemu.git tags/qga-pull-2017-07-17-v2-tag

for you to fetch changes up to 339ca68bef9f30dd18e84b7d92398327e3f819a3:

  test-qga: add test for guest-get-osinfo (2017-07-18 05:49:01 -0500)

----------------------------------------------------------------
qemu-ga patch queue

* new command: qemu-get-osinfo
* build fix for OpenBSD
* better error-reporting for failure on keyfile dump
* remove redundant initialization of qa_state global
* include libpcre in w32 package
* w32 localization fixes for service installation/registration

v2:
* fix build issue with older GCCs introduced with guest_get_osinfo
* relocated some declarations in guest_get_osinfo

----------------------------------------------------------------
Daniel Rempel (1):
      qga-win: fix installation on localized windows

Marc-André Lureau (1):
      qga: report error on keyfile dump error

Peng Hao (1):
      qga-win32: remove a redundancy code

Thomas Lamprecht (1):
      qemu-ga: add missing libpcre to MSI build

Tomáš Golembiovský (4):
      qemu-ga: check if utmpx.h is available on the system
      qemu-ga: add guest-get-osinfo command
      test-qga: pass environemnt to qemu-ga
      test-qga: add test for guest-get-osinfo

 configure                      |  19 ++++
 qga/commands-posix.c           | 157 ++++++++++++++++++++++++++++++++-
 qga/commands-win32.c           | 191 +++++++++++++++++++++++++++++++++++++++++
 qga/installer/qemu-ga.wxs      |   4 +
 qga/main.c                     |   9 +-
 qga/qapi-schema.json           |  65 ++++++++++++++
 qga/vss-win32/install.cpp      |  35 +++++++-
 tests/data/test-qga-os-release |   7 ++
 tests/test-qga.c               |  64 +++++++++++++-
 9 files changed, 542 insertions(+), 9 deletions(-)
 create mode 100644 tests/data/test-qga-os-release

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

end of thread, other threads:[~2017-07-18 14:23 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-27  5:46 [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 1/8] qemu-ga: Make QGA VSS provider service run only when needed Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 2/8] qga-win: Enable 'can-offline' field in 'guest-get-vcpus' reply Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 3/8] qga-win: Fix a bug where qemu-ga service is stuck during stop operation Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 4/8] qga-win: Fix Event Viewer errors caused by qemu-ga Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 5/8] qga: Add 'guest-get-host-name' command Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 6/8] qga: improve fsfreeze documentations Michael Roth
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 7/8] qga: Add 'guest-get-users' command Michael Roth
2017-07-13 14:56   ` Peter Maydell
2017-07-17 14:02     ` Tomáš Golembiovský
2017-04-27  5:46 ` [Qemu-devel] [PULL v2 8/8] qga: Add `guest-get-timezone` command Michael Roth
2017-04-28 15:13 ` [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2017-07-18 11:01 Michael Roth
2017-07-18 14:22 ` Peter Maydell

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