The patch titled Subject: kernel/async.c: fix pr_debug statement has been added to the -mm tree. Its filename is kernel-asyncc-fix-pr_debug-statement.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/kernel-asyncc-fix-pr_debug-statement.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/kernel-asyncc-fix-pr_debug-statement.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Subject: kernel/async.c: fix pr_debug statement An async_func_t returns void - any errors encountered it has to stash somewhere for consumers to discover later. Link: https://lkml.kernel.org/r/20210226124355.2503524-1-linux@xxxxxxxxxxxxxxxxxx Signed-off-by: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/async.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/kernel/async.c~kernel-asyncc-fix-pr_debug-statement +++ a/kernel/async.c @@ -124,7 +124,7 @@ static void async_run_entry_fn(struct wo if (initcall_debug && system_state < SYSTEM_RUNNING) { rettime = ktime_get(); delta = ktime_sub(rettime, calltime); - pr_debug("initcall %lli_%pS returned 0 after %lld usecs\n", + pr_debug("initcall %lli_%pS returned after %lld usecs\n", (long long)entry->cookie, entry->func, (long long)ktime_to_ns(delta) >> 10); _ Patches currently in -mm which might be from linux@xxxxxxxxxxxxxxxxxx are kernel-asyncc-fix-pr_debug-statement.patch