diff options
-rw-r--r-- | kernel/rcutree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/rcutree.c b/kernel/rcutree.c index 35380019f0fc..1009c0ccd4b1 100644 --- a/kernel/rcutree.c +++ b/kernel/rcutree.c | |||
@@ -866,7 +866,7 @@ static void print_other_cpu_stall(struct rcu_state *rsp) | |||
866 | * See Documentation/RCU/stallwarn.txt for info on how to debug | 866 | * See Documentation/RCU/stallwarn.txt for info on how to debug |
867 | * RCU CPU stall warnings. | 867 | * RCU CPU stall warnings. |
868 | */ | 868 | */ |
869 | printk(KERN_ERR "INFO: %s detected stalls on CPUs/tasks:", | 869 | pr_err("INFO: %s detected stalls on CPUs/tasks:", |
870 | rsp->name); | 870 | rsp->name); |
871 | print_cpu_stall_info_begin(); | 871 | print_cpu_stall_info_begin(); |
872 | rcu_for_each_leaf_node(rsp, rnp) { | 872 | rcu_for_each_leaf_node(rsp, rnp) { |
@@ -899,7 +899,7 @@ static void print_other_cpu_stall(struct rcu_state *rsp) | |||
899 | smp_processor_id(), (long)(jiffies - rsp->gp_start), | 899 | smp_processor_id(), (long)(jiffies - rsp->gp_start), |
900 | rsp->gpnum, rsp->completed, totqlen); | 900 | rsp->gpnum, rsp->completed, totqlen); |
901 | if (ndetected == 0) | 901 | if (ndetected == 0) |
902 | printk(KERN_ERR "INFO: Stall ended before state dump start\n"); | 902 | pr_err("INFO: Stall ended before state dump start\n"); |
903 | else if (!trigger_all_cpu_backtrace()) | 903 | else if (!trigger_all_cpu_backtrace()) |
904 | rcu_dump_cpu_stacks(rsp); | 904 | rcu_dump_cpu_stacks(rsp); |
905 | 905 | ||
@@ -922,7 +922,7 @@ static void print_cpu_stall(struct rcu_state *rsp) | |||
922 | * See Documentation/RCU/stallwarn.txt for info on how to debug | 922 | * See Documentation/RCU/stallwarn.txt for info on how to debug |
923 | * RCU CPU stall warnings. | 923 | * RCU CPU stall warnings. |
924 | */ | 924 | */ |
925 | printk(KERN_ERR "INFO: %s self-detected stall on CPU", rsp->name); | 925 | pr_err("INFO: %s self-detected stall on CPU", rsp->name); |
926 | print_cpu_stall_info_begin(); | 926 | print_cpu_stall_info_begin(); |
927 | print_cpu_stall_info(rsp, smp_processor_id()); | 927 | print_cpu_stall_info(rsp, smp_processor_id()); |
928 | print_cpu_stall_info_end(); | 928 | print_cpu_stall_info_end(); |