Commit b6bff397ea9c36d410212f785ee644103146102a
Committed by
Linus Torvalds
1 parent
10ca1e1ed5
Exists in
master
and in
4 other branches
[PATCH] ppc64: Be consistent about printing which idle loop we're using
Not sure if we really need this, but it was handy to know which iSeries loop I was testing. Be consistent about printing which idle loop we're using, with this patch we cover all cases. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Showing 2 changed files with 8 additions and 3 deletions Side-by-side Diff
arch/ppc64/kernel/iSeries_setup.c
| ... | ... | @@ -946,9 +946,12 @@ |
| 946 | 946 | ppc_md.calibrate_decr = iSeries_calibrate_decr; |
| 947 | 947 | ppc_md.progress = iSeries_progress; |
| 948 | 948 | |
| 949 | - if (get_paca()->lppaca.shared_proc) | |
| 949 | + if (get_paca()->lppaca.shared_proc) { | |
| 950 | 950 | ppc_md.idle_loop = iseries_shared_idle; |
| 951 | - else | |
| 951 | + printk(KERN_INFO "Using shared processor idle loop\n"); | |
| 952 | + } else { | |
| 952 | 953 | ppc_md.idle_loop = iseries_dedicated_idle; |
| 954 | + printk(KERN_INFO "Using dedicated idle loop\n"); | |
| 955 | + } | |
| 953 | 956 | } |
arch/ppc64/kernel/setup.c
| ... | ... | @@ -1081,8 +1081,10 @@ |
| 1081 | 1081 | ppc_md.setup_arch(); |
| 1082 | 1082 | |
| 1083 | 1083 | /* Use the default idle loop if the platform hasn't provided one. */ |
| 1084 | - if (NULL == ppc_md.idle_loop) | |
| 1084 | + if (NULL == ppc_md.idle_loop) { | |
| 1085 | 1085 | ppc_md.idle_loop = default_idle; |
| 1086 | + printk(KERN_INFO "Using default idle loop\n"); | |
| 1087 | + } | |
| 1086 | 1088 | |
| 1087 | 1089 | paging_init(); |
| 1088 | 1090 | ppc64_boot_msg(0x15, "Setup Done"); |