diff options
author | Kefeng Wang <[email protected]> | 2019-11-28 08:47:49 +0800 |
---|---|---|
committer | Petr Mladek <[email protected]> | 2019-12-06 09:59:30 +0100 |
commit | 1d9a6159bd04b676cb7d9b13245888fa450cec10 (patch) | |
tree | 6e8d50250a2681619f8561c093762a83974a8bc9 | |
parent | 2f13437b8917627119d163d62f73e7a78a92303a (diff) |
workqueue: Use pr_warn instead of pr_warning
Use pr_warn() instead of the remaining pr_warning() calls.
Link: http://lkml.kernel.org/r/[email protected]
To: [email protected]
To: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Kefeng Wang <[email protected]>
Acked-by: Tejun Heo <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
-rw-r--r-- | kernel/workqueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index bc88fd939f4e..cfc923558e04 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -4374,8 +4374,8 @@ void destroy_workqueue(struct workqueue_struct *wq) for_each_pwq(pwq, wq) { spin_lock_irq(&pwq->pool->lock); if (WARN_ON(pwq_busy(pwq))) { - pr_warning("%s: %s has the following busy pwq\n", - __func__, wq->name); + pr_warn("%s: %s has the following busy pwq\n", + __func__, wq->name); show_pwq(pwq); spin_unlock_irq(&pwq->pool->lock); mutex_unlock(&wq->mutex); |