[Qemu-devel] [PULL 0/8] qemu-ga patch queue

Michael Roth posted 8 patches 6 years, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1493161481-29595-1-git-send-email-mdroth@linux.vnet.ibm.com
Test checkpatch passed
Test docker passed
Test s390x passed
There is a newer version of this series
configure                   |   2 +-
include/glib-compat.h       |   5 +++
qga/commands-posix.c        |  60 +++++++++++++++++++++++++
qga/commands-win32.c        | 105 +++++++++++++++++++++++++++++++++++++++++++-
qga/commands.c              |  49 +++++++++++++++++++++
qga/main.c                  |  23 ++++++++++
qga/qapi-schema.json        |  87 +++++++++++++++++++++++++++++++++++-
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, 391 insertions(+), 17 deletions(-)
create mode 100644 qga/vss-win32/install.h
create mode 100644 qga/vss-win32/vss-handles.h
[Qemu-devel] [PULL 0/8] qemu-ga patch queue
Posted by Michael Roth 6 years, 11 months ago
The following changes since commit fe491fa85c4634453b340b18046aae2eaf8147db:

  Merge remote-tracking branch 'remotes/agraf/tags/signed-s390-for-upstream' into staging (2017-04-25 14:48:55 +0100)

are available in the git repository at:

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

for you to fetch changes up to b3734da00e4285521f8eb2c958ab08b981f7a298:

  qga: Add `guest-get-timezone` command (2017-04-25 15:49:24 -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

----------------------------------------------------------------
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       |   5 +++
 qga/commands-posix.c        |  60 +++++++++++++++++++++++++
 qga/commands-win32.c        | 105 +++++++++++++++++++++++++++++++++++++++++++-
 qga/commands.c              |  49 +++++++++++++++++++++
 qga/main.c                  |  23 ++++++++++
 qga/qapi-schema.json        |  87 +++++++++++++++++++++++++++++++++++-
 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, 391 insertions(+), 17 deletions(-)
 create mode 100644 qga/vss-win32/install.h
 create mode 100644 qga/vss-win32/vss-handles.h


Re: [Qemu-devel] [PULL 0/8] qemu-ga patch queue
Posted by Peter Maydell 6 years, 11 months ago
On 26 April 2017 at 00:04, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> The following changes since commit fe491fa85c4634453b340b18046aae2eaf8147db:
>
>   Merge remote-tracking branch 'remotes/agraf/tags/signed-s390-for-upstream' into staging (2017-04-25 14:48:55 +0100)
>
> are available in the git repository at:
>
>   git://github.com/mdroth/qemu.git tags/qga-pull-2017-04-25-tag
>
> for you to fetch changes up to b3734da00e4285521f8eb2c958ab08b981f7a298:
>
>   qga: Add `guest-get-timezone` command (2017-04-25 15:49:24 -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
>

Hi. I'm afraid this doesn't build with clang:

In file included from
/Users/pm215/src/qemu-for-merges/qapi/qapi-dealloc-visitor.c:15:
In file included from /Users/pm215/src/qemu-for-merges/include/qemu/osdep.h:107:
/Users/pm215/src/qemu-for-merges/include/glib-compat.h:221:17: error:
unused function 'g_hash_table_contains' [-Werror,-Wunused-function]
static gboolean g_hash_table_contains(GHashTable *hash_table, gpointer key)
                ^
1 error generated.

Marking it "static inline" should fix this.

thanks
-- PMM