qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v3 00/11] qemu-ga patches for 2.4.0
@ 2015-07-08  2:11 Michael Roth
  2015-07-08  2:11 ` [Qemu-devel] [PATCH 01/11] qga/commands-posix: Fix bug in guest-fstrim Michael Roth
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: Michael Roth @ 2015-07-08  2:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Hi Peter,

Please ignore the just-posted v2, the configure check was missing
an include which resulted in the feature *always* being disabled.
Sorry for all the noise.

This adds win32 implementations of:
  guest-get-fsinfo
  guest-network-get-interfaces

and modifies guest-fstrim to return per-mount results and continue on to other
mounts even when a failure is encountered.

There's also bug fixes for guest-fstrim and guest-set-time.

The following changes since commit 7ce0f7dc87e50ebf58ac756ff6be17ec97d3ba4e:

  Merge remote-tracking branch 'remotes/agraf/tags/signed-ppc-for-upstream' into staging (2015-07-07 21:16:06 +0100)

are available in the git repository at:


  git://github.com/mdroth/qemu.git tags/qga-pull-2015-07-06-v3-tag

for you to fetch changes up to c54e1eb4928d4e6762c7100d1d1ef5f08ddf922b:

  qga: added GuestPCIAddress information (2015-07-07 20:59:04 -0500)

----------------------------------------------------------------
tag for qga-pull-2015-07-06-v3

v3:
  - fix missing <windows.h> in configure test program.

v2:
  - added configure check for guest-get-fs-info to avoid breakage on older
    MinGWs
  - removed extraneous include of ws2ipdef.h in w32
    guest-network-get-interfaces. ws2tcpip.h already provides those
    definitions, and older MinGWs don't have it.
  - rebased on latest master

----------------------------------------------------------------
Justin Ossevoort (2):
      qga/commands-posix: Fix bug in guest-fstrim
      qga/qmp_guest_fstrim: Return per path fstrim result

Kirk Allan (2):
      qga: add win32 library iphlpapi
      qga: win32 qmp_guest_network_get_interfaces implementation

Marc-André Lureau (1):
      qga: fail early for invalid time

Markus Armbruster (1):
      Revert "guest agent: remove g_strcmp0 usage"

Michael Roth (2):
      configure: add configure check for ntdddisk.h
      qga: added GuestPCIAddress information

Olga Krishtal (3):
      qga: added empty qmp_quest_get_fsinfo functionality.
      qga: added mountpoint and filesystem type for single volume
      qga: added bus type and disk location path

 configure            |  27 ++-
 qga/commands-posix.c |  70 +++++--
 qga/commands-win32.c | 530 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 qga/main.c           |   2 +-
 qga/qapi-schema.json |  44 ++++-
 5 files changed, 642 insertions(+), 31 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL v2 00/11] qemu-ga patches for 2.4.0
@ 2015-07-08  1:43 Michael Roth
  2015-07-08  1:43 ` [Qemu-devel] [PATCH 07/11] qga: added empty qmp_quest_get_fsinfo functionality Michael Roth
  0 siblings, 1 reply; 14+ messages in thread
From: Michael Roth @ 2015-07-08  1:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Hi Peter,

Here's an updated PULL for outstanding qemu-ga patches. There's a configure
check added to deal with the MinGW breakage as discussed.

This adds win32 implementations of:
  guest-get-fsinfo
  guest-network-get-interfaces

and modifies guest-fstrim to return per-mount results and continue on to other
mounts even when a failure is encountered.

There's also bug fixes for guest-fstrim and guest-set-time.

The following changes since commit 7ce0f7dc87e50ebf58ac756ff6be17ec97d3ba4e:

  Merge remote-tracking branch 'remotes/agraf/tags/signed-ppc-for-upstream' into staging (2015-07-07 21:16:06 +0100)

are available in the git repository at:


  git://github.com/mdroth/qemu.git tags/qga-pull-2015-07-06-v2-tag

for you to fetch changes up to dab44f6d43ad82a64a8a553193c65e002d999556:

  qga: added GuestPCIAddress information (2015-07-07 20:14:36 -0500)

----------------------------------------------------------------
tag for qga-pull-2015-07-06-v2

v2:
  - added configure check for guest-get-fs-info to avoid breakage on older
    MinGWs
  - removed extraneous include of ws2ipdef.h in w32
    guest-network-get-interfaces. ws2tcpip.h already provides those
    definitions, and older MinGWs don't have it.
  - rebased on latest master

----------------------------------------------------------------
Justin Ossevoort (2):
      qga/commands-posix: Fix bug in guest-fstrim
      qga/qmp_guest_fstrim: Return per path fstrim result

Kirk Allan (2):
      qga: add win32 library iphlpapi
      qga: win32 qmp_guest_network_get_interfaces implementation

Marc-André Lureau (1):
      qga: fail early for invalid time

Markus Armbruster (1):
      Revert "guest agent: remove g_strcmp0 usage"

Michael Roth (2):
      configure: add configure check for ntdddisk.h
      qga: added GuestPCIAddress information

Olga Krishtal (3):
      qga: added empty qmp_quest_get_fsinfo functionality.
      qga: added mountpoint and filesystem type for single volume
      qga: added bus type and disk location path

 configure            |  26 ++-
 qga/commands-posix.c |  70 +++++--
 qga/commands-win32.c | 530 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 qga/main.c           |   2 +-
 qga/qapi-schema.json |  44 ++++-
 5 files changed, 641 insertions(+), 31 deletions(-)

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

end of thread, other threads:[~2015-07-08 12:36 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08  2:11 [Qemu-devel] [PULL v3 00/11] qemu-ga patches for 2.4.0 Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 01/11] qga/commands-posix: Fix bug in guest-fstrim Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 02/11] qga/qmp_guest_fstrim: Return per path fstrim result Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 03/11] Revert "guest agent: remove g_strcmp0 usage" Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 04/11] qga: add win32 library iphlpapi Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 05/11] qga: win32 qmp_guest_network_get_interfaces implementation Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 06/11] qga: fail early for invalid time Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 07/11] qga: added empty qmp_quest_get_fsinfo functionality Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 08/11] qga: added mountpoint and filesystem type for single volume Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 09/11] configure: add configure check for ntdddisk.h Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 10/11] qga: added bus type and disk location path Michael Roth
2015-07-08  2:11 ` [Qemu-devel] [PATCH 11/11] qga: added GuestPCIAddress information Michael Roth
2015-07-08 12:35 ` [Qemu-devel] [PULL v3 00/11] qemu-ga patches for 2.4.0 Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2015-07-08  1:43 [Qemu-devel] [PULL v2 " Michael Roth
2015-07-08  1:43 ` [Qemu-devel] [PATCH 07/11] qga: added empty qmp_quest_get_fsinfo functionality Michael Roth

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