summaryrefslogtreecommitdiffstats
path: root/kernel/async.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/async.c')
-rw-r--r--kernel/async.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/async.c b/kernel/async.c
index f6bd0d9885e1..12c332e4e13e 100644
--- a/kernel/async.c
+++ b/kernel/async.c
@@ -119,7 +119,7 @@ static void async_run_entry_fn(struct work_struct *work)
119 119
120 /* 1) run (and print duration) */ 120 /* 1) run (and print duration) */
121 if (initcall_debug && system_state < SYSTEM_RUNNING) { 121 if (initcall_debug && system_state < SYSTEM_RUNNING) {
122 pr_debug("calling %lli_%pF @ %i\n", 122 pr_debug("calling %lli_%pS @ %i\n",
123 (long long)entry->cookie, 123 (long long)entry->cookie,
124 entry->func, task_pid_nr(current)); 124 entry->func, task_pid_nr(current));
125 calltime = ktime_get(); 125 calltime = ktime_get();
@@ -128,7 +128,7 @@ static void async_run_entry_fn(struct work_struct *work)
128 if (initcall_debug && system_state < SYSTEM_RUNNING) { 128 if (initcall_debug && system_state < SYSTEM_RUNNING) {
129 rettime = ktime_get(); 129 rettime = ktime_get();
130 delta = ktime_sub(rettime, calltime); 130 delta = ktime_sub(rettime, calltime);
131 pr_debug("initcall %lli_%pF returned 0 after %lld usecs\n", 131 pr_debug("initcall %lli_%pS returned 0 after %lld usecs\n",
132 (long long)entry->cookie, 132 (long long)entry->cookie,
133 entry->func, 133 entry->func,
134 (long long)ktime_to_ns(delta) >> 10); 134 (long long)ktime_to_ns(delta) >> 10);