From nobody Sun Apr 28 13:55:05 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1499234391486689.4005455644688; Tue, 4 Jul 2017 22:59:51 -0700 (PDT) Received: from localhost ([::1]:44224 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSdLp-0007Au-2h for importer@patchew.org; Wed, 05 Jul 2017 01:59:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dSdL4-0006u2-P6 for qemu-devel@nongnu.org; Wed, 05 Jul 2017 01:59:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dSdKz-0002OS-89 for qemu-devel@nongnu.org; Wed, 05 Jul 2017 01:59:00 -0400 Received: from mx2.suse.de ([195.135.220.15]:43878 helo=mx1.suse.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dSdKz-0002MB-1Y for qemu-devel@nongnu.org; Wed, 05 Jul 2017 01:58:57 -0400 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id D11B5AAF2; Wed, 5 Jul 2017 05:58:51 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Alexander Graf To: qemu-devel@nongnu.org Date: Wed, 5 Jul 2017 07:59:15 +0200 Message-Id: <1499234355-138591-1-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.8.5.6 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 195.135.220.15 Subject: [Qemu-devel] [PATCH] vnc: Set default kbd delay to 10ms X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Gerd Hoffmann Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The default keyboard delay time in the input layer is 10ms. I don't know how that number came to be, but empirical tests on some OpenQA driven ARM systems show that 10ms really is a reasonable default number for the delay. With the current 1ms we're constantly typing faster than the guest receives keyboard events from our XHCI attached USB HID device. This patch moves the delay to 10ms. That way our default is much safer (goo= d!) and also consistent with the input layer default (also good!). Signed-off-by: Alexander Graf --- qemu-options.hx | 2 +- ui/vnc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu-options.hx b/qemu-options.hx index 896ff17..64806f0 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1730,7 +1730,7 @@ spec but is traditional QEMU behavior. @item key-delay-ms =20 Set keyboard delay, for key down and key up events, in milliseconds. -Default is 1. Keyboards are low-bandwidth devices, so this slowdown +Default is 10. Keyboards are low-bandwidth devices, so this slowdown can help the device and guest to keep up and not lose events in case events are arriving in bulk. Possible causes for the latter are flaky network connections, or scripts for automated testing. diff --git a/ui/vnc.c b/ui/vnc.c index 26136f5..eb91559 100644 --- a/ui/vnc.c +++ b/ui/vnc.c @@ -3808,7 +3808,7 @@ void vnc_display_open(const char *id, Error **errp) } =20 lock_key_sync =3D qemu_opt_get_bool(opts, "lock-key-sync", true); - key_delay_ms =3D qemu_opt_get_number(opts, "key-delay-ms", 1); + key_delay_ms =3D qemu_opt_get_number(opts, "key-delay-ms", 10); sasl =3D qemu_opt_get_bool(opts, "sasl", false); #ifndef CONFIG_VNC_SASL if (sasl) { --=20 1.8.5.6