diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-23 02:06:54 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-23 02:06:54 +0100 |
commit | ac9e806c9c018a6cc6e82d50275a4ac185343b4f (patch) | |
tree | 89a9ebb6f03ba4093f62947a2bb339785e5f783b /kernel | |
parent | Merge branch 'for-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/c... (diff) | |
parent | workqueue: Use %s instead of function name (diff) | |
download | linux-ac9e806c9c018a6cc6e82d50275a4ac185343b4f.tar.xz linux-ac9e806c9c018a6cc6e82d50275a4ac185343b4f.zip |
Merge branch 'for-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull qorkqueue updates from Tejun Heo:
"Tracepoint and comment updates only"
* 'for-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq:
workqueue: Use %s instead of function name
workqueue: tracing the name of the workqueue instead of it's address
workqueue: fix annotation for WQ_SYSFS
Diffstat (limited to 'kernel')
-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 894bb885b40b..0d150da252e8 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -2964,8 +2964,8 @@ reflush: if (++flush_cnt == 10 || (flush_cnt % 100 == 0 && flush_cnt <= 1000)) - pr_warn("workqueue %s: drain_workqueue() isn't complete after %u tries\n", - wq->name, flush_cnt); + pr_warn("workqueue %s: %s() isn't complete after %u tries\n", + wq->name, __func__, flush_cnt); mutex_unlock(&wq->mutex); goto reflush; |