From patchwork Thu Dec 9 13:33:30 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 74990 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C7FD1B6F1E for ; Fri, 10 Dec 2010 08:13:17 +1100 (EST) Received: from localhost ([127.0.0.1]:51357 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQnDL-0006XK-K9 for incoming@patchwork.ozlabs.org; Thu, 09 Dec 2010 15:35:43 -0500 Received: from [140.186.70.92] (port=55383 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQgcq-0000li-Dd for qemu-devel@nongnu.org; Thu, 09 Dec 2010 08:33:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PQgcp-0003wL-9c for qemu-devel@nongnu.org; Thu, 09 Dec 2010 08:33:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:24242) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PQgco-0003wH-TW for qemu-devel@nongnu.org; Thu, 09 Dec 2010 08:33:35 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oB9DXXh8005380 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 9 Dec 2010 08:33:33 -0500 Received: from rincewind.home.kraxel.org (vpn1-4-138.ams2.redhat.com [10.36.4.138]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id oB9DXVkW026194; Thu, 9 Dec 2010 08:33:32 -0500 Message-ID: <4D00DAAA.4090301@redhat.com> Date: Thu, 09 Dec 2010 14:33:30 +0100 From: Gerd Hoffmann User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100827 Red Hat/3.1.3-1.el6 Thunderbird/3.1.3 MIME-Version: 1.0 To: Anthony Liguori , "qemu-devel@nongnu.org" X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PULL] spice: add qxl device, qmp events + monitor commands. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit 138b38b61bf92d4e9588acf934e532499c94e185: ppc: kvm: fix signedness warning (2010-12-08 21:30:19 +0100) are available in the git repository at: git://anongit.freedesktop.org/spice/qemu spice.v23.pull Gerd Hoffmann (7): spice: add qxl vgabios binary. spice: add qxl device spice: connection events. spice: add qmp 'query-spice' and hmp 'info spice' commands. vnc: auth reject cleanup vnc: support password expire vnc/spice: add set_passwd monitor command. Makefile | 2 +- Makefile.target | 1 + QMP/qmp-events.txt | 64 ++ console.h | 1 + hmp-commands.hx | 54 ++ hw/hw.h | 14 + hw/pc.c | 8 + hw/qxl-logger.c | 248 ++++++++ hw/qxl-render.c | 226 +++++++ hw/qxl.c | 1587 +++++++++++++++++++++++++++++++++++++++++++++++ hw/qxl.h | 112 ++++ hw/vga_int.h | 2 +- monitor.c | 130 ++++ monitor.h | 3 + pc-bios/vgabios-qxl.bin | Bin 0 -> 40448 bytes qemu-common.h | 3 + qemu-options.hx | 6 +- qmp-commands.hx | 127 ++++ sysemu.h | 3 +- ui/qemu-spice.h | 8 + ui/spice-core.c | 261 ++++++++ ui/vnc.c | 44 +- ui/vnc.h | 1 + vl.c | 4 +- 24 files changed, 2887 insertions(+), 22 deletions(-) create mode 100644 hw/qxl-logger.c create mode 100644 hw/qxl-render.c create mode 100644 hw/qxl.c create mode 100644 hw/qxl.h create mode 100644 pc-bios/vgabios-qxl.bin