mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-06 17:35:20 +02:00
workqueue: wq_watchdog_touch is always called with valid CPU
[ Upstream commit 18e24deb1c
]
Warn in the case it is called with cpu == -1. This does not appear
to happen anywhere.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
0eceaa9d05
commit
5ff0a44141
|
@ -6458,6 +6458,8 @@ notrace void wq_watchdog_touch(int cpu)
|
||||||
{
|
{
|
||||||
if (cpu >= 0)
|
if (cpu >= 0)
|
||||||
per_cpu(wq_watchdog_touched_cpu, cpu) = jiffies;
|
per_cpu(wq_watchdog_touched_cpu, cpu) = jiffies;
|
||||||
|
else
|
||||||
|
WARN_ONCE(1, "%s should be called with valid CPU", __func__);
|
||||||
|
|
||||||
wq_watchdog_touched = jiffies;
|
wq_watchdog_touched = jiffies;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user