diff options
author | Joe Perches <joe@perches.com> | 2018-05-14 13:27:33 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-07-12 15:39:13 -0700 |
commit | a7538352da722fae5cc95ae6656ea2013f5b8b21 (patch) | |
tree | 161fb7ff7cdef3b28edeb0a2149bf13322bfc025 /kernel/rcu/rcutorture.c | |
parent | 1445e9175bead409bb9930f3c745246a09f22cf6 (diff) | |
download | linux-a7538352da722fae5cc95ae6656ea2013f5b8b21.tar.gz linux-a7538352da722fae5cc95ae6656ea2013f5b8b21.tar.bz2 linux-a7538352da722fae5cc95ae6656ea2013f5b8b21.zip |
rcu: Use pr_fmt to prefix "rcu: " to logging output
This commit also adjusts some whitespace while in the area.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
[ paulmck: Revert string-breaking %s as requested by Andy Shevchenko. ]
Diffstat (limited to 'kernel/rcu/rcutorture.c')
-rw-r--r-- | kernel/rcu/rcutorture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c index 0481c7286875..90a94fecdd73 100644 --- a/kernel/rcu/rcutorture.c +++ b/kernel/rcu/rcutorture.c @@ -1755,8 +1755,8 @@ rcu_torture_init(void) torture_type); pr_alert("rcu-torture types:"); for (i = 0; i < ARRAY_SIZE(torture_ops); i++) - pr_alert(" %s", torture_ops[i]->name); - pr_alert("\n"); + pr_cont(" %s", torture_ops[i]->name); + pr_cont("\n"); firsterr = -EINVAL; goto unwind; } |