[Qemu-devel] [PULL 00/14] Vnc 20180112 patches

Gerd Hoffmann posted 14 patches 6 years, 3 months ago
Failed in applying to current master (apply log)
Test checkpatch passed
Test docker passed
Test ppc passed
Test s390x passed
ui/vnc-auth-sasl.h |   5 +-
ui/vnc.h           |  28 ++++-
ui/vnc-auth-sasl.c |  16 ++-
ui/vnc-jobs.c      |   5 +
ui/vnc.c           | 318 ++++++++++++++++++++++++++++++++++++++---------------
ui/trace-events    |   7 ++
6 files changed, 276 insertions(+), 103 deletions(-)
[Qemu-devel] [PULL 00/14] Vnc 20180112 patches
Posted by Gerd Hoffmann 6 years, 3 months ago
The following changes since commit 997eba28a3ed5400a80f754bf3a1c8044b75b9ff:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180111' into staging (2018-01-11 14:34:41 +0000)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/vnc-20180112-pull-request

for you to fetch changes up to 30b80fd5269257f55203b7072c505b4ebaab5115:

  ui: mix misleading comments & return types of VNC I/O helper methods (2018-01-12 13:48:54 +0100)

----------------------------------------------------------------
vnc: limit memory usage (CVE-2017-15124)

----------------------------------------------------------------

Daniel P. Berrange (13):
  ui: remove 'sync' parameter from vnc_update_client
  ui: remove unreachable code in vnc_update_client
  ui: remove redundant indentation in vnc_client_update
  ui: avoid pointless VNC updates if framebuffer isn't dirty
  ui: track how much decoded data we consumed when doing SASL encoding
  ui: introduce enum to track VNC client framebuffer update request
    state
  ui: correctly reset framebuffer update state after processing dirty
    regions
  ui: refactor code for determining if an update should be sent to the
    client
  ui: fix VNC client throttling when audio capture is active
  ui: fix VNC client throttling when forced update is requested
  ui: place a hard cap on VNC server output buffer size
  ui: add trace events related to VNC client throttling
  ui: mix misleading comments & return types of VNC I/O helper methods

Marc-André Lureau (1):
  vnc: fix debug spelling

 ui/vnc-auth-sasl.h |   5 +-
 ui/vnc.h           |  28 ++++-
 ui/vnc-auth-sasl.c |  16 ++-
 ui/vnc-jobs.c      |   5 +
 ui/vnc.c           | 318 ++++++++++++++++++++++++++++++++++++++---------------
 ui/trace-events    |   7 ++
 6 files changed, 276 insertions(+), 103 deletions(-)

-- 
2.9.3


Re: [Qemu-devel] [PULL 00/14] Vnc 20180112 patches
Posted by Peter Maydell 6 years, 3 months ago
On 12 January 2018 at 12:58, Gerd Hoffmann <kraxel@redhat.com> wrote:
> The following changes since commit 997eba28a3ed5400a80f754bf3a1c8044b75b9ff:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180111' into staging (2018-01-11 14:34:41 +0000)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/vnc-20180112-pull-request
>
> for you to fetch changes up to 30b80fd5269257f55203b7072c505b4ebaab5115:
>
>   ui: mix misleading comments & return types of VNC I/O helper methods (2018-01-12 13:48:54 +0100)
>
> ----------------------------------------------------------------
> vnc: limit memory usage (CVE-2017-15124)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM