From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, tomoki.sekiyama@hds.com
Subject: [Qemu-devel] [PULL] qemu-ga: VSS/fsfreeze support for Win32
Date: Mon, 9 Sep 2013 14:41:31 -0500 [thread overview]
Message-ID: <1378755701-2051-1-git-send-email-mdroth@linux.vnet.ibm.com> (raw)
Hi Anthony,
These patches implement guest-fsfreeze-* verbs for qemu-ga on Windows
by making use of Windows' VSS service. Please pull.
The following changes since commit 94c2b6aff43cdfcfdfb552773a6b6b973a72ef0b:
mips_malta: support up to 2GiB RAM (2013-09-09 18:42:22 +0200)
are available in the git repository at:
git://github.com/mdroth/qemu.git qga-pull-2013-9-9
for you to fetch changes up to e2682db06a6c218f149ff990959c31f3b3d82003:
QMP/qemu-ga-client: Make timeout longer for guest-fsfreeze-freeze command (2013-09-09 14:17:57 -0500)
----------------------------------------------------------------
Tomoki Sekiyama (10):
configure: Support configuring C++ compiler
Add c++ keywords to QAPI helper script
checkpatch.pl: Check .cpp files
Add a script to extract VSS SDK headers on POSIX system
qemu-ga: Add configure options to specify path to Windows/VSS SDK
error: Add error_set_win32 and error_setg_win32
qemu-ga: Add Windows VSS provider and requester as DLL
qemu-ga: Call Windows VSS requester in fsfreeze command handler
qemu-ga: Install Windows VSS provider on `qemu-ga -s install'
QMP/qemu-ga-client: Make timeout longer for guest-fsfreeze-freeze command
.gitignore | 1 +
Makefile | 3 +-
Makefile.objs | 2 +
QMP/qemu-ga-client | 4 +-
configure | 96 +++++++-
hmp.c | 2 +-
hw/pci/pci.c | 2 +-
include/qapi/error.h | 13 +
qga/Makefile.objs | 3 +
qga/commands-win32.c | 82 ++++++-
qga/main.c | 10 +-
qga/vss-win32.c | 166 +++++++++++++
qga/vss-win32.h | 27 +++
qga/vss-win32/Makefile.objs | 23 ++
qga/vss-win32/install.cpp | 458 +++++++++++++++++++++++++++++++++++
qga/vss-win32/provider.cpp | 523 ++++++++++++++++++++++++++++++++++++++++
qga/vss-win32/qga-vss.def | 13 +
qga/vss-win32/qga-vss.idl | 20 ++
qga/vss-win32/qga-vss.tlb | Bin 0 -> 1528 bytes
qga/vss-win32/requester.cpp | 507 ++++++++++++++++++++++++++++++++++++++
qga/vss-win32/requester.h | 42 ++++
qga/vss-win32/vss-common.h | 129 ++++++++++
rules.mak | 9 +-
scripts/checkpatch.pl | 34 ++-
scripts/extract-vsssdk-headers | 35 +++
scripts/qapi.py | 12 +-
util/error.c | 35 +++
27 files changed, 2229 insertions(+), 22 deletions(-)
create mode 100644 qga/vss-win32.c
create mode 100644 qga/vss-win32.h
create mode 100644 qga/vss-win32/Makefile.objs
create mode 100644 qga/vss-win32/install.cpp
create mode 100644 qga/vss-win32/provider.cpp
create mode 100644 qga/vss-win32/qga-vss.def
create mode 100644 qga/vss-win32/qga-vss.idl
create mode 100644 qga/vss-win32/qga-vss.tlb
create mode 100644 qga/vss-win32/requester.cpp
create mode 100644 qga/vss-win32/requester.h
create mode 100644 qga/vss-win32/vss-common.h
create mode 100755 scripts/extract-vsssdk-headers
next reply other threads:[~2013-09-09 19:42 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-09 19:41 Michael Roth [this message]
2013-09-09 19:41 ` [Qemu-devel] [PATCH 01/10] configure: Support configuring C++ compiler Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 02/10] Add c++ keywords to QAPI helper script Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 03/10] checkpatch.pl: Check .cpp files Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 04/10] Add a script to extract VSS SDK headers on POSIX system Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 05/10] qemu-ga: Add configure options to specify path to Windows/VSS SDK Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 06/10] error: Add error_set_win32 and error_setg_win32 Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 07/10] qemu-ga: Add Windows VSS provider and requester as DLL Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 08/10] qemu-ga: Call Windows VSS requester in fsfreeze command handler Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 09/10] qemu-ga: Install Windows VSS provider on `qemu-ga -s install' Michael Roth
2013-09-09 19:41 ` [Qemu-devel] [PATCH 10/10] QMP/qemu-ga-client: Make timeout longer for guest-fsfreeze-freeze command Michael Roth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1378755701-2051-1-git-send-email-mdroth@linux.vnet.ibm.com \
--to=mdroth@linux.vnet.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=tomoki.sekiyama@hds.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).