[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250721031755.1418556-1-ye.liu@linux.dev>
Date: Mon, 21 Jul 2025 11:17:54 +0800
From: Ye Liu <ye.liu@...ux.dev>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Ye Liu <liuye@...inos.cn>,
Lance Yang <lance.yang@...ux.dev>,
linux-kernel@...r.kernel.org
Subject: [PATCH] hung_task: add warning counter to blocked task report
From: Ye Liu <liuye@...inos.cn>
Add a warning counter to each hung task message to make it easier
to analyze and locate issues in the logs.
Signed-off-by: Ye Liu <liuye@...inos.cn>
---
kernel/hung_task.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/kernel/hung_task.c b/kernel/hung_task.c
index 8708a1205f82..9e5f86148d47 100644
--- a/kernel/hung_task.c
+++ b/kernel/hung_task.c
@@ -58,6 +58,7 @@ EXPORT_SYMBOL_GPL(sysctl_hung_task_timeout_secs);
static unsigned long __read_mostly sysctl_hung_task_check_interval_secs;
static int __read_mostly sysctl_hung_task_warnings = 10;
+static int hung_task_warning_count;
static int __read_mostly did_panic;
static bool hung_task_show_lock;
@@ -232,8 +233,9 @@ static void check_hung_task(struct task_struct *t, unsigned long timeout)
if (sysctl_hung_task_warnings || hung_task_call_panic) {
if (sysctl_hung_task_warnings > 0)
sysctl_hung_task_warnings--;
- pr_err("INFO: task %s:%d blocked for more than %ld seconds.\n",
- t->comm, t->pid, (jiffies - t->last_switch_time) / HZ);
+ pr_err("INFO: task %s:%d blocked for more than %ld seconds. [Warning #%d]\n",
+ t->comm, t->pid, (jiffies - t->last_switch_time) / HZ,
+ ++hung_task_warning_count);
pr_err(" %s %s %.*s\n",
print_tainted(), init_utsname()->release,
(int)strcspn(init_utsname()->version, " "),
--
2.43.0
Powered by blists - more mailing lists