slackware-current/source/x/libinput/libinput.less.lag.complaining.diff
Patrick J Volkerding 47328317b3 Fri Apr 30 18:09:21 UTC 2021
l/gvfs-1.48.1-x86_64-1.txz:  Upgraded.
l/imagemagick-7.0.11_10-x86_64-1.txz:  Upgraded.
n/php-7.4.18-x86_64-1.txz:  Upgraded.
  This update fixes bugs and security issues.
  For more information, see:
    https://www.php.net/ChangeLog-7.php#7.4.18
  (* Security fix *)
n/postfix-3.6.0-x86_64-1.txz:  Upgraded.
x/libepoxy-1.5.7-x86_64-1.txz:  Upgraded.
x/libinput-1.17.2-x86_64-1.txz:  Upgraded.
x/xorgproto-2021.4-x86_64-1.txz:  Upgraded.
xap/pavucontrol-4.0-x86_64-4.txz:  Rebuilt.
  Fix segfault after crtl-Q. Thanks to Jonathan Woithe and 2slguevH.
xap/pidgin-2.14.4-x86_64-1.txz:  Upgraded.
2021-05-01 08:59:57 +02:00

20 lines
844 B
Diff

--- ./src/evdev.c.orig 2021-04-29 23:25:41.531076400 -0500
+++ ./src/evdev.c 2021-04-30 12:39:02.636755868 -0500
@@ -1028,7 +1028,7 @@
/* if we have a current libinput_dispatch() snapshot, compare our
* event time with the one from the snapshot. If we have more than
- * 10ms delay, complain about it. This catches delays in processing
+ * 75ms delay, complain about it. This catches delays in processing
* where there is no steady event flow and thus SYN_DROPPED may not
* get hit by the kernel despite us being too slow.
*/
@@ -1037,7 +1037,7 @@
return;
tdelta = us2ms(libinput->dispatch_time - eventtime);
- if (tdelta > 10) {
+ if (tdelta > 75) {
evdev_log_bug_client_ratelimit(device,
&device->delay_warning_limit,
"event processing lagging behind by %dms, your system is too slow\n",