From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0y7R-0004ug-M8 for qemu-devel@nongnu.org; Fri, 24 Feb 2012 11:35:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S0y7L-00076A-HN for qemu-devel@nongnu.org; Fri, 24 Feb 2012 11:35:41 -0500 Received: from e6.ny.us.ibm.com ([32.97.182.146]:50844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0y7L-00075y-DQ for qemu-devel@nongnu.org; Fri, 24 Feb 2012 11:35:35 -0500 Received: from /spool/local by e6.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Feb 2012 11:35:34 -0500 Received: from d01relay05.pok.ibm.com (d01relay05.pok.ibm.com [9.56.227.237]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id B3D4E6E806F for ; Fri, 24 Feb 2012 11:35:30 -0500 (EST) Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay05.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q1OGZVCg157860 for ; Fri, 24 Feb 2012 11:35:31 -0500 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q1OGZU9i022685 for ; Fri, 24 Feb 2012 11:35:30 -0500 Message-ID: <4F47BC51.9080007@us.ibm.com> Date: Fri, 24 Feb 2012 10:35:29 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1330035055-29838-1-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1330035055-29838-1-git-send-email-mdroth@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 0/8] qemu-ga: add support for Windows List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Roth Cc: qemu-devel@nongnu.org On 02/23/2012 04:10 PM, Michael Roth wrote: > The following changes since commit 235fe3bfd46b1104575b540d0bc3fdf584030b99: > > qom: add test tools (2012-02-22 12:18:26 -0600) > > are available in the git repository at: > git://github.com/mdroth/qemu.git qga-win32-pull-2-23-12 Pulled. Thanks. Regards, Anthony Liguori > Michael Roth (8): > qemu-ga: Add schema documentation for types > qemu-ga: move channel/transport functionality into wrapper class > qemu-ga: separate out common commands from posix-specific ones > qemu-ga: rename guest-agent-commands.c -> commands-posix.c > qemu-ga: fixes for win32 build of qemu-ga > qemu-ga: add initial win32 support > qemu-ga: add Windows service integration > qemu-ga: add win32 guest-shutdown command > > Makefile | 2 +- > Makefile.objs | 8 +- > configure | 2 +- > qapi-schema-guest.json | 118 +++++- > qemu-ga.c | 423 ++++++++++------------ > qga/channel-posix.c | 246 +++++++++++++ > qga/channel-win32.c | 340 +++++++++++++++++ > qga/channel.h | 33 ++ > qga/{guest-agent-commands.c => commands-posix.c} | 59 +--- > qga/commands-win32.c | 130 +++++++ > qga/commands.c | 73 ++++ > qga/guest-agent-core.h | 3 +- > qga/service-win32.c | 114 ++++++ > qga/service-win32.h | 30 ++ > 14 files changed, 1263 insertions(+), 318 deletions(-) > create mode 100644 qga/channel-posix.c > create mode 100644 qga/channel-win32.c > create mode 100644 qga/channel.h > rename qga/{guest-agent-commands.c => commands-posix.c} (89%) > create mode 100644 qga/commands-win32.c > create mode 100644 qga/commands.c > create mode 100644 qga/service-win32.c > create mode 100644 qga/service-win32.h > > >