summaryrefslogtreecommitdiffstats
path: root/patches/0017-workqueue-remove-call-to-non-existent-show_workqueue.patch
blob: c5b2e968e9ff8b6bcd12d03d5dd25d5572515f2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From 3013e7720054356da5a51621954564f7d9db977e Mon Sep 17 00:00:00 2001
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
Date: Sun, 24 May 2020 19:18:34 -0600
Subject: [PATCH 17/34] workqueue: remove call to non-existent
 show_workqueue_state

The function show_workqueue_state is called, but does not exist anywhere
in the kernel, so remove the errant call, which is likely a result of a
mismerge.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
---
 kernel/workqueue.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 34830e03403..873cb111514 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -5345,9 +5345,6 @@ static void wq_watchdog_timer_fn(unsigned long data)
 
 	rcu_read_unlock();
 
-	if (lockup_detected)
-		show_workqueue_state();
-
 	wq_watchdog_reset_touched();
 	mod_timer(&wq_watchdog_timer, jiffies + thresh);
 }
-- 
2.29.1