[Spice-commits] Changes to 'spice.v22'

Gerd Hoffmann kraxel at kemper.freedesktop.org
Tue Nov 30 04:06:00 PST 2010


New branch 'spice.v22' available with the following commits:
commit f2be830d0764f0f441004f98b9b34d43c789943b
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Mon Nov 8 09:56:29 2010 +0100

    [hotfix] qmp query-*: send empty reply

commit b842691ef6799be25786d8122b770c3982c8642b
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Wed Oct 27 12:14:18 2010 +0200

    [hotfix] misc pulse tweaks

commit eaf166787a92a917385b3b05028a8abfdef1bfba
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Wed Sep 1 13:49:34 2010 +0200

    [rhel6 compat] drop xsave migration support.

commit ba774de8a7365b349c63963b3795fd8c6e29344f
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Mon Sep 6 11:20:19 2010 +0200

    [rhel6 compat] add rhel6.0.0 machine type

commit ba36dfa9c69fff11c243de34c8a1623c2592efe9
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Aug 26 13:03:50 2010 +0200

    [rhel6 compat] adjust vga ram size

commit 52ee227ca1742e5ce1c42af0426a890ca6fd71bf
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Tue Apr 20 13:33:54 2010 +0200

    spice: add virtio-serial based spice vmchannel backend.
    
    Adds the spicevmc device.  This is a communication channel between the
    spice client and the guest.  It is used to send display information and
    mouse events from the spice clients to the guest.

commit 455abd08d3c5805786151559a5d80770c5d4f5e7
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Nov 18 11:56:14 2010 +0100

    qxl: tag as not hotpluggable
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit cb8dba9359a9f877eb9fe894051cd5b1f022de78
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Nov 18 11:25:06 2010 +0100

    vga: tag as not hotplugable.
    
    This patch tags all vga cards as not hotpluggable.  The qemu
    standard vga will never ever be hotpluggable.  For cirrus + vmware
    it might be possible to get that work some day.  Todays we can't
    handle that for a number of reasons though.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit f82f7b7281d5766c3eb5fc74df9bf2471bd8e3d8
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Nov 18 11:22:39 2010 +0100

    piix: tag as not hotpluggable.
    
    This patch tags all pci devices which belong to the piix3/4 chipsets as
    not hotpluggable (Host bridge, ISA bridge, IDE controller, ACPI bridge).
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit bca6282d71edba6a18473eb65ce922d205c55da4
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Nov 18 11:17:26 2010 +0100

    pci: allow devices being tagged as not hotpluggable.
    
    This patch adds a field to PCIDeviceInfo to tag devices as being
    not hotpluggable.  Any attempt to plug-in or -out such a device
    will throw an error.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit 5ab9e4204b2389ab19370a27ad387aa6c76d7f5f
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Oct 7 12:22:54 2010 +0200

    vnc/spice: add set_passwd monitor command.
    
    This patch adds new set_password and expire_password monitor commands
    which allows to change and expire the password for spice and vnc
    connections.  See the doc update patch chunk for details.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit 5c8b52a85b5e158a12f9e67d5bd95f941c6d9a1d
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Oct 7 11:50:45 2010 +0200

    vnc: support password expire
    
    This patch adds support for expiring passwords to vnc.  It adds a new
    vnc_display_pw_expire() function which specifies the time when the
    password will expire.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit 2ad9da48009208e892bb5fd78a481bea95626c03
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Thu Oct 7 11:50:24 2010 +0200

    vnc: auth reject cleanup
    
    protocol_client_auth_vnc() has two places where the auth can fail,
    with identical code sending the reject message to the client.
    Move the common code to the end of the function and make both
    error paths jump there.  No functional change.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit 12c2da2261dc6d9733fec88a0ce88f92bfe8a8e1
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Tue Nov 30 11:02:51 2010 +0100

    spice: add qmp 'query-spice' and hmp 'info spice' commands.
    
    The patch adds a 'query-spice' monitor command which returns
    informations about the spice server configuration and also a list of
    channel connections.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit fb42d9b71a4090aa5a5066ee8f331e9a8f3c8772
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Mon Oct 11 18:03:51 2010 +0200

    spice: connection events.
    
    This patch adds support for connection events to spice.  The events are
    quite simliar to the vnc events.  Unlike vnc spice uses multiple tcp
    channels though.  qemu will report every single tcp connection (aka
    spice channel).  If you want track spice sessions only you can filter
    for the main channel (channel-type == 1).
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit d4383e7744e921f4ce98622af97e3d38084d0b68
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Tue Apr 27 11:50:11 2010 +0200

    spice: add qxl device
    
    qxl is a paravirtual graphics card.  The qxl device is the bridge
    between the guest and the spice server (aka libspice-server).  The
    spice server will send the rendering commands to the spice client, which
    will actually render them.
    
    The spice server is also able to render locally, which is done in case
    the guest wants read something from video memory.  Local rendering is
    also used to support display over vnc and sdl.
    
    qxl is activated using "-vga qxl".  qxl supports multihead, additional
    cards can be added via '-device qxl".
    
    [ v2: add copyright to files                     ]
    [ v2: use qemu-common.h for standard includes    ]
    [ v2: create separate qxl-vga device for primary ]
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>

commit eb957c07c4df4d8f50b4dc3f6530aa2d297e43ad
Author: Gerd Hoffmann <kraxel at redhat.com>
Date:   Tue Nov 30 11:54:33 2010 +0100

    spice: add qxl vgabios binary.
    
    Just compiled from vgabios git repo @ git.qemu.org,
    copyed over and committed.  Also added to the list
    of blobs in the Makefile.
    
    Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>



More information about the Spice-commits mailing list