Skip to content

Commit 8ba9d40

Browse files
Villemoestorvalds
authored andcommitted
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@rasmusvillemoes.dk Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Tejun Heo <tj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 112dfce commit 8ba9d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/async.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static void async_run_entry_fn(struct work_struct *work)
124124
if (initcall_debug && system_state < SYSTEM_RUNNING) {
125125
rettime = ktime_get();
126126
delta = ktime_sub(rettime, calltime);
127-
pr_debug("initcall %lli_%pS returned 0 after %lld usecs\n",
127+
pr_debug("initcall %lli_%pS returned after %lld usecs\n",
128128
(long long)entry->cookie,
129129
entry->func,
130130
(long long)ktime_to_ns(delta) >> 10);

0 commit comments

Comments
 (0)