|
|
9bac43 |
From b4bcc805bc53775069ac656e1ac75c49d5eb6b6a Mon Sep 17 00:00:00 2001
|
|
|
9bac43 |
From: "Daniel P. Berrange" <berrange@redhat.com>
|
|
|
9bac43 |
Date: Mon, 5 Feb 2018 11:10:09 +0100
|
|
|
9bac43 |
Subject: [PATCH 15/20] ui: add trace events related to VNC client throttling
|
|
|
9bac43 |
MIME-Version: 1.0
|
|
|
9bac43 |
Content-Type: text/plain; charset=UTF-8
|
|
|
9bac43 |
Content-Transfer-Encoding: 8bit
|
|
|
9bac43 |
|
|
|
9bac43 |
RH-Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
9bac43 |
Message-id: <20180205111012.6210-15-berrange@redhat.com>
|
|
|
9bac43 |
Patchwork-id: 78886
|
|
|
9bac43 |
O-Subject: [RHV-7.5 qemu-kvm-rhev PATCH v2 14/17] ui: add trace events related to VNC client throttling
|
|
|
9bac43 |
Bugzilla: 1527404
|
|
|
9bac43 |
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
9bac43 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
From: "Daniel P. Berrange" <berrange@redhat.com>
|
|
|
9bac43 |
|
|
|
9bac43 |
The VNC client throttling is quite subtle so will benefit from having trace
|
|
|
9bac43 |
points available for live debugging.
|
|
|
9bac43 |
|
|
|
9bac43 |
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
|
|
|
9bac43 |
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
|
|
|
9bac43 |
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
9bac43 |
Message-id: 20171218191228.31018-13-berrange@redhat.com
|
|
|
9bac43 |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
9bac43 |
(cherry picked from commit 6aa22a29187e1908f5db738d27c64a9efc8d0bfa)
|
|
|
9bac43 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
9bac43 |
---
|
|
|
9bac43 |
ui/trace-events | 7 +++++++
|
|
|
9bac43 |
ui/vnc.c | 23 +++++++++++++++++++++++
|
|
|
9bac43 |
2 files changed, 30 insertions(+)
|
|
|
9bac43 |
|
|
|
9bac43 |
diff --git a/ui/trace-events b/ui/trace-events
|
|
|
9bac43 |
index 1a9f126..85f74f9 100644
|
|
|
9bac43 |
--- a/ui/trace-events
|
|
|
9bac43 |
+++ b/ui/trace-events
|
|
|
9bac43 |
@@ -35,6 +35,13 @@ vnc_client_connect(void *state, void *ioc) "VNC client connect state=%p ioc=%p"
|
|
|
9bac43 |
vnc_client_disconnect_start(void *state, void *ioc) "VNC client disconnect start state=%p ioc=%p"
|
|
|
9bac43 |
vnc_client_disconnect_finish(void *state, void *ioc) "VNC client disconnect finish state=%p ioc=%p"
|
|
|
9bac43 |
vnc_client_io_wrap(void *state, void *ioc, const char *type) "VNC client I/O wrap state=%p ioc=%p type=%s"
|
|
|
9bac43 |
+vnc_client_throttle_threshold(void *state, void *ioc, size_t oldoffset, size_t offset, int client_width, int client_height, int bytes_per_pixel, void *audio_cap) "VNC client throttle threshold state=%p ioc=%p oldoffset=%zu newoffset=%zu width=%d height=%d bpp=%d audio=%p"
|
|
|
9bac43 |
+vnc_client_throttle_incremental(void *state, void *ioc, int job_update, size_t offset) "VNC client throttle incremental state=%p ioc=%p job-update=%d offset=%zu"
|
|
|
9bac43 |
+vnc_client_throttle_forced(void *state, void *ioc, int job_update, size_t offset) "VNC client throttle forced state=%p ioc=%p job-update=%d offset=%zu"
|
|
|
9bac43 |
+vnc_client_throttle_audio(void *state, void *ioc, size_t offset) "VNC client throttle audio state=%p ioc=%p offset=%zu"
|
|
|
9bac43 |
+vnc_client_unthrottle_forced(void *state, void *ioc) "VNC client unthrottle forced offset state=%p ioc=%p"
|
|
|
9bac43 |
+vnc_client_unthrottle_incremental(void *state, void *ioc, size_t offset) "VNC client unthrottle incremental state=%p ioc=%p offset=%zu"
|
|
|
9bac43 |
+vnc_client_output_limit(void *state, void *ioc, size_t offset, size_t threshold) "VNC client output limit state=%p ioc=%p offset=%zu threshold=%zu"
|
|
|
9bac43 |
vnc_auth_init(void *display, int websock, int auth, int subauth) "VNC auth init state=%p websock=%d auth=%d subauth=%d"
|
|
|
9bac43 |
vnc_auth_start(void *state, int method) "VNC client auth start state=%p method=%d"
|
|
|
9bac43 |
vnc_auth_pass(void *state, int method) "VNC client auth passed state=%p method=%d"
|
|
|
9bac43 |
diff --git a/ui/vnc.c b/ui/vnc.c
|
|
|
9bac43 |
index a7aff91..26f58bc 100644
|
|
|
9bac43 |
--- a/ui/vnc.c
|
|
|
9bac43 |
+++ b/ui/vnc.c
|
|
|
9bac43 |
@@ -1011,6 +1011,12 @@ static void vnc_update_throttle_offset(VncState *vs)
|
|
|
9bac43 |
*/
|
|
|
9bac43 |
offset = MAX(offset, 1024 * 1024);
|
|
|
9bac43 |
|
|
|
9bac43 |
+ if (vs->throttle_output_offset != offset) {
|
|
|
9bac43 |
+ trace_vnc_client_throttle_threshold(
|
|
|
9bac43 |
+ vs, vs->ioc, vs->throttle_output_offset, offset, vs->client_width,
|
|
|
9bac43 |
+ vs->client_height, vs->client_pf.bytes_per_pixel, vs->audio_cap);
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
+
|
|
|
9bac43 |
vs->throttle_output_offset = offset;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
|
|
|
9bac43 |
@@ -1028,6 +1034,8 @@ static bool vnc_should_update(VncState *vs)
|
|
|
9bac43 |
vs->job_update == VNC_STATE_UPDATE_NONE) {
|
|
|
9bac43 |
return true;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
+ trace_vnc_client_throttle_incremental(
|
|
|
9bac43 |
+ vs, vs->ioc, vs->job_update, vs->output.offset);
|
|
|
9bac43 |
break;
|
|
|
9bac43 |
case VNC_STATE_UPDATE_FORCE:
|
|
|
9bac43 |
/* Only allow forced updates if the pending send queue
|
|
|
9bac43 |
@@ -1042,6 +1050,8 @@ static bool vnc_should_update(VncState *vs)
|
|
|
9bac43 |
vs->job_update == VNC_STATE_UPDATE_NONE) {
|
|
|
9bac43 |
return true;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
+ trace_vnc_client_throttle_forced(
|
|
|
9bac43 |
+ vs, vs->ioc, vs->job_update, vs->force_update_offset);
|
|
|
9bac43 |
break;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
return false;
|
|
|
9bac43 |
@@ -1158,6 +1168,8 @@ static void audio_capture(void *opaque, void *buf, int size)
|
|
|
9bac43 |
vnc_write_u16(vs, VNC_MSG_SERVER_QEMU_AUDIO_DATA);
|
|
|
9bac43 |
vnc_write_u32(vs, size);
|
|
|
9bac43 |
vnc_write(vs, buf, size);
|
|
|
9bac43 |
+ } else {
|
|
|
9bac43 |
+ trace_vnc_client_throttle_audio(vs, vs->ioc, vs->output.offset);
|
|
|
9bac43 |
}
|
|
|
9bac43 |
vnc_unlock_output(vs);
|
|
|
9bac43 |
vnc_flush(vs);
|
|
|
9bac43 |
@@ -1328,6 +1340,7 @@ ssize_t vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen)
|
|
|
9bac43 |
*/
|
|
|
9bac43 |
static ssize_t vnc_client_write_plain(VncState *vs)
|
|
|
9bac43 |
{
|
|
|
9bac43 |
+ size_t offset;
|
|
|
9bac43 |
ssize_t ret;
|
|
|
9bac43 |
|
|
|
9bac43 |
#ifdef CONFIG_VNC_SASL
|
|
|
9bac43 |
@@ -1348,11 +1361,19 @@ static ssize_t vnc_client_write_plain(VncState *vs)
|
|
|
9bac43 |
return 0;
|
|
|
9bac43 |
|
|
|
9bac43 |
if (ret >= vs->force_update_offset) {
|
|
|
9bac43 |
+ if (vs->force_update_offset != 0) {
|
|
|
9bac43 |
+ trace_vnc_client_unthrottle_forced(vs, vs->ioc);
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
vs->force_update_offset = 0;
|
|
|
9bac43 |
} else {
|
|
|
9bac43 |
vs->force_update_offset -= ret;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
+ offset = vs->output.offset;
|
|
|
9bac43 |
buffer_advance(&vs->output, ret);
|
|
|
9bac43 |
+ if (offset >= vs->throttle_output_offset &&
|
|
|
9bac43 |
+ vs->output.offset < vs->throttle_output_offset) {
|
|
|
9bac43 |
+ trace_vnc_client_unthrottle_incremental(vs, vs->ioc, vs->output.offset);
|
|
|
9bac43 |
+ }
|
|
|
9bac43 |
|
|
|
9bac43 |
if (vs->output.offset == 0) {
|
|
|
9bac43 |
if (vs->ioc_tag) {
|
|
|
9bac43 |
@@ -1549,6 +1570,8 @@ void vnc_write(VncState *vs, const void *data, size_t len)
|
|
|
9bac43 |
if (vs->throttle_output_offset != 0 &&
|
|
|
9bac43 |
vs->output.offset > (vs->throttle_output_offset *
|
|
|
9bac43 |
VNC_THROTTLE_OUTPUT_LIMIT_SCALE)) {
|
|
|
9bac43 |
+ trace_vnc_client_output_limit(vs, vs->ioc, vs->output.offset,
|
|
|
9bac43 |
+ vs->throttle_output_offset);
|
|
|
9bac43 |
vnc_disconnect_start(vs);
|
|
|
9bac43 |
return;
|
|
|
9bac43 |
}
|
|
|
9bac43 |
--
|
|
|
9bac43 |
1.8.3.1
|
|
|
9bac43 |
|