diff options
author | Ionut Alexa <ionut.m.alexa@gmail.com> | 2014-10-09 18:30:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-09 22:26:04 -0400 |
commit | 27fb10edcacbb70ac4e97fe1506006d732421210 (patch) | |
tree | 2c177b90200925be0eb507420908845c056a195e /kernel/async.c | |
parent | 61a04e5b306ab9d6a30f78e86f1f140d7c888304 (diff) |
kernel/async.c: switch to pr_foo()
Signed-off-by: Ionut Alexa <ionut.m.alexa@gmail.com>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/async.c')
-rw-r--r-- | kernel/async.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/async.c b/kernel/async.c index 61f023ce0228..4c3773c0bf63 100644 --- a/kernel/async.c +++ b/kernel/async.c | |||
@@ -115,7 +115,7 @@ static void async_run_entry_fn(struct work_struct *work) | |||
115 | 115 | ||
116 | /* 1) run (and print duration) */ | 116 | /* 1) run (and print duration) */ |
117 | if (initcall_debug && system_state == SYSTEM_BOOTING) { | 117 | if (initcall_debug && system_state == SYSTEM_BOOTING) { |
118 | printk(KERN_DEBUG "calling %lli_%pF @ %i\n", | 118 | pr_debug("calling %lli_%pF @ %i\n", |
119 | (long long)entry->cookie, | 119 | (long long)entry->cookie, |
120 | entry->func, task_pid_nr(current)); | 120 | entry->func, task_pid_nr(current)); |
121 | calltime = ktime_get(); | 121 | calltime = ktime_get(); |
@@ -124,7 +124,7 @@ static void async_run_entry_fn(struct work_struct *work) | |||
124 | if (initcall_debug && system_state == SYSTEM_BOOTING) { | 124 | if (initcall_debug && system_state == SYSTEM_BOOTING) { |
125 | rettime = ktime_get(); | 125 | rettime = ktime_get(); |
126 | delta = ktime_sub(rettime, calltime); | 126 | delta = ktime_sub(rettime, calltime); |
127 | printk(KERN_DEBUG "initcall %lli_%pF returned 0 after %lld usecs\n", | 127 | pr_debug("initcall %lli_%pF returned 0 after %lld usecs\n", |
128 | (long long)entry->cookie, | 128 | (long long)entry->cookie, |
129 | entry->func, | 129 | entry->func, |
130 | (long long)ktime_to_ns(delta) >> 10); | 130 | (long long)ktime_to_ns(delta) >> 10); |
@@ -285,7 +285,7 @@ void async_synchronize_cookie_domain(async_cookie_t cookie, struct async_domain | |||
285 | ktime_t uninitialized_var(starttime), delta, endtime; | 285 | ktime_t uninitialized_var(starttime), delta, endtime; |
286 | 286 | ||
287 | if (initcall_debug && system_state == SYSTEM_BOOTING) { | 287 | if (initcall_debug && system_state == SYSTEM_BOOTING) { |
288 | printk(KERN_DEBUG "async_waiting @ %i\n", task_pid_nr(current)); | 288 | pr_debug("async_waiting @ %i\n", task_pid_nr(current)); |
289 | starttime = ktime_get(); | 289 | starttime = ktime_get(); |
290 | } | 290 | } |
291 | 291 | ||
@@ -295,7 +295,7 @@ void async_synchronize_cookie_domain(async_cookie_t cookie, struct async_domain | |||
295 | endtime = ktime_get(); | 295 | endtime = ktime_get(); |
296 | delta = ktime_sub(endtime, starttime); | 296 | delta = ktime_sub(endtime, starttime); |
297 | 297 | ||
298 | printk(KERN_DEBUG "async_continuing @ %i after %lli usec\n", | 298 | pr_debug("async_continuing @ %i after %lli usec\n", |
299 | task_pid_nr(current), | 299 | task_pid_nr(current), |
300 | (long long)ktime_to_ns(delta) >> 10); | 300 | (long long)ktime_to_ns(delta) >> 10); |
301 | } | 301 | } |