All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/12] qemu-ga patch queue
@ 2015-10-14 20:07 Michael Roth
  2015-10-14 20:07 ` [Qemu-devel] [PATCH 01/12] build: qemu-ga: add 'qemu-ga' build target for w32 Michael Roth
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: Michael Roth @ 2015-10-14 20:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Hi Peter,

Please note that 'glib-compat: add 2.38/2.40/2.46 asserts' is also in
Marc-André's recent ivshmem PULL. The 2 versions of the patches are identical,
but let me know if you'd prefer a re-send/re-base later.

The following changes since commit c49d3411faae8ffaab8f7e5db47405a008411c10:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2015-10-12' into staging (2015-10-13 10:42:06 +0100)

are available in the git repository at:


  git://github.com/mdroth/qemu.git tags/qga-pull-2015-10-14-tag

for you to fetch changes up to c5614a673691196ba9d22730088e2f3147a6808e:

  qga: guest-exec simple stdin/stdout/stderr redirection (2015-10-14 14:43:34 -0500)

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

* add unit tests for qemu-ga
* add guest-exec support for posix/w32 guests
* added 'qemu-ga' target for w32. this allows us to do full MSI build,
  without overloading 'qemu-ga.exe' target with uneeded dependencies.
* number of s/g_new/g_malloc/ conversions for qga

----------------------------------------------------------------
Denis V. Lunev (2):
      qga: drop guest_file_init helper and replace it with static initializers
      qga: handle possible SIGPIPE in guest-file-write

Marc-André Lureau (5):
      qga: add QGA_CONF environment variable
      qga: do not override configuration verbosity
      qtest: add a few fd-level qmp helpers
      glib-compat: add 2.38/2.40/2.46 asserts
      tests: add a local test for guest agent

Markus Armbruster (1):
      qga: Use g_new() & friends where that makes obvious sense

Michael Roth (1):
      build: qemu-ga: add 'qemu-ga' build target for w32

Yuri Pudgorodskiy (3):
      qga: guest exec functionality
      qga: handle G_IO_STATUS_AGAIN in ga_channel_write_all()
      qga: guest-exec simple stdin/stdout/stderr redirection

 Makefile                        |  14 +-
 configure                       |   2 +-
 include/glib-compat.h           |  61 ++++
 qga/channel-posix.c             |  25 +-
 qga/channel-win32.c             |   2 +-
 qga/commands-posix.c            |  20 +-
 qga/commands-win32.c            |  20 +-
 qga/commands.c                  | 383 +++++++++++++++++++-
 qga/guest-agent-command-state.c |   4 +-
 qga/main.c                      |  13 +-
 qga/qapi-schema.json            |  67 ++++
 tests/Makefile                  |   3 +
 tests/libqtest.c                |  45 ++-
 tests/libqtest.h                |   7 +
 tests/test-qga.c                | 774 ++++++++++++++++++++++++++++++++++++++++
 15 files changed, 1383 insertions(+), 57 deletions(-)
 create mode 100644 tests/test-qga.c

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL v2 00/12] qemu-ga patch queue
@ 2015-10-15 16:05 Michael Roth
  2015-10-15 16:05 ` [Qemu-devel] [PATCH 09/12] qga: guest exec functionality Michael Roth
  0 siblings, 1 reply; 16+ messages in thread
From: Michael Roth @ 2015-10-15 16:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Hi Peter,

Please note that 'glib-compat: add 2.38/2.40/2.46 asserts' is also in
Marc-André's recent ivshmem PULL. The 2 versions of the patches are identical,
but let me know if you'd prefer a re-send/re-base later.

The following changes since commit c49d3411faae8ffaab8f7e5db47405a008411c10:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2015-10-12' into staging (2015-10-13 10:42:06 +0100)

are available in the git repository at:


  git://github.com/mdroth/qemu.git tags/qga-pull-2015-10-14-v2-tag

for you to fetch changes up to 32bcf9327f9ad614712999f514707415a53ec620:

  qga: guest-exec simple stdin/stdout/stderr redirection (2015-10-14 22:39:09 -0500)

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

* add unit tests for qemu-ga
* add guest-exec support for posix/w32 guests
* added 'qemu-ga' target for w32. this allows us to do full MSI build,
  without overloading 'qemu-ga.exe' target with uneeded dependencies.
* number of s/g_new/g_malloc/ conversions for qga

v2:
* commit message and qapi documentation spelling fixes
* rename 'inp-data' guest-exec param to 'input-data'

----------------------------------------------------------------
Denis V. Lunev (2):
      qga: drop guest_file_init helper and replace it with static initializers
      qga: handle possible SIGPIPE in guest-file-write

Marc-André Lureau (5):
      qga: add QGA_CONF environment variable
      qga: do not override configuration verbosity
      qtest: add a few fd-level qmp helpers
      glib-compat: add 2.38/2.40/2.46 asserts
      tests: add a local test for guest agent

Markus Armbruster (1):
      qga: Use g_new() & friends where that makes obvious sense

Michael Roth (1):
      build: qemu-ga: add 'qemu-ga' build target for w32

Yuri Pudgorodskiy (3):
      qga: guest exec functionality
      qga: handle G_IO_STATUS_AGAIN in ga_channel_write_all()
      qga: guest-exec simple stdin/stdout/stderr redirection

 Makefile                        |  14 +-
 configure                       |   2 +-
 include/glib-compat.h           |  61 ++++
 qga/channel-posix.c             |  25 +-
 qga/channel-win32.c             |   2 +-
 qga/commands-posix.c            |  20 +-
 qga/commands-win32.c            |  20 +-
 qga/commands.c                  | 383 +++++++++++++++++++-
 qga/guest-agent-command-state.c |   4 +-
 qga/main.c                      |  13 +-
 qga/qapi-schema.json            |  67 ++++
 tests/Makefile                  |   3 +
 tests/libqtest.c                |  45 ++-
 tests/libqtest.h                |   7 +
 tests/test-qga.c                | 774 ++++++++++++++++++++++++++++++++++++++++
 15 files changed, 1383 insertions(+), 57 deletions(-)
 create mode 100644 tests/test-qga.c

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

end of thread, other threads:[~2015-10-15 16:05 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-14 20:07 [Qemu-devel] [PULL 00/12] qemu-ga patch queue Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 01/12] build: qemu-ga: add 'qemu-ga' build target for w32 Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 02/12] qga: Use g_new() & friends where that makes obvious sense Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 03/12] qga: add QGA_CONF environment variable Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 04/12] qga: do not override configuration verbosity Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 05/12] qtest: add a few fd-level qmp helpers Michael Roth
2015-10-14 20:07 ` [Qemu-devel] [PATCH 06/12] glib-compat: add 2.38/2.40/2.46 asserts Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 07/12] tests: add a local test for guest agent Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 08/12] qga: drop guest_file_init helper and replace it with static initializers Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 09/12] qga: guest exec functionality Michael Roth
2015-10-14 22:38   ` Eric Blake
2015-10-15  3:48     ` Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 10/12] qga: handle possible SIGPIPE in guest-file-write Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 11/12] qga: handle G_IO_STATUS_AGAIN in ga_channel_write_all() Michael Roth
2015-10-14 20:08 ` [Qemu-devel] [PATCH 12/12] qga: guest-exec simple stdin/stdout/stderr redirection Michael Roth
  -- strict thread matches above, loose matches on Subject: below --
2015-10-15 16:05 [Qemu-devel] [PULL v2 00/12] qemu-ga patch queue Michael Roth
2015-10-15 16:05 ` [Qemu-devel] [PATCH 09/12] qga: guest exec functionality Michael Roth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.