linux/debian/patches-rt/0168-rt-Improve-the-serial-...

48 lines
1.5 KiB
Diff
Raw Normal View History

2020-03-06 11:44:27 +00:00
From d8240c961e33c6da86bdbd96a67440a5d944c415 Mon Sep 17 00:00:00 2001
From: Ingo Molnar <mingo@elte.hu>
2019-04-08 23:49:20 +00:00
Date: Wed, 14 Dec 2011 13:05:54 +0100
2020-02-21 18:07:43 +00:00
Subject: [PATCH 168/319] rt: Improve the serial console PASS_LIMIT
2019-04-08 23:49:20 +00:00
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
2020-03-06 11:44:27 +00:00
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.106-rt44.tar.xz
Beyond the warning:
drivers/tty/serial/8250/8250.c:1613:6: warning: unused variable pass_counter [-Wunused-variable]
the solution of just looping infinitely was ugly - up it to 1 million to
give it a chance to continue in some really ugly situation.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
drivers/tty/serial/8250/8250_core.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c
2020-01-03 23:36:11 +00:00
index 69aaee5d7fe1..cf88317a95fc 100644
--- a/drivers/tty/serial/8250/8250_core.c
+++ b/drivers/tty/serial/8250/8250_core.c
2019-04-08 23:49:20 +00:00
@@ -54,7 +54,16 @@ static struct uart_driver serial8250_reg;
static unsigned int skip_txen_test; /* force skip of txen test at init time */
-#define PASS_LIMIT 512
+/*
+ * On -rt we can have a more delays, and legitimately
+ * so - so don't drop work spuriously and spam the
+ * syslog:
+ */
+#ifdef CONFIG_PREEMPT_RT_FULL
+# define PASS_LIMIT 1000000
+#else
+# define PASS_LIMIT 512
+#endif
#include <asm/serial.h>
/*
2020-01-03 23:36:11 +00:00
--
2020-02-21 18:07:43 +00:00
2.25.0
2020-01-03 23:36:11 +00:00