@@ -191,10 +191,9 @@ void show_regs(struct pt_regs *regs)
191
191
if (user_mode (regs ))
192
192
show_faulting_vma (regs -> ret ); /* faulting code, not data */
193
193
194
- pr_info ("ECR: 0x%08lx EFA: 0x%08lx ERET: 0x%08lx\n" ,
195
- regs -> event , current -> thread .fault_address , regs -> ret );
196
-
197
- pr_info ("STAT32: 0x%08lx" , regs -> status32 );
194
+ pr_info ("ECR: 0x%08lx EFA: 0x%08lx ERET: 0x%08lx\nSTAT: 0x%08lx" ,
195
+ regs -> event , current -> thread .fault_address , regs -> ret ,
196
+ regs -> status32 );
198
197
199
198
#define STS_BIT (r , bit ) r->status32 & STATUS_##bit##_MASK ? #bit" " : ""
200
199
@@ -210,11 +209,10 @@ void show_regs(struct pt_regs *regs)
210
209
(regs -> status32 & STATUS_U_MASK ) ? "U " : "K " ,
211
210
STS_BIT (regs , DE ), STS_BIT (regs , AE ));
212
211
#endif
213
- pr_cont (" BTA: 0x%08lx\n" , regs -> bta );
214
- pr_info ("BLK: %pS\n SP: 0x%08lx FP: 0x%08lx\n" ,
215
- (void * )regs -> blink , regs -> sp , regs -> fp );
212
+ pr_cont (" BTA: 0x%08lx\n SP: 0x%08lx FP: 0x%08lx BLK: %pS\n" ,
213
+ regs -> bta , regs -> sp , regs -> fp , (void * )regs -> blink );
216
214
pr_info ("LPS: 0x%08lx\tLPE: 0x%08lx\tLPC: 0x%08lx\n" ,
217
- regs -> lp_start , regs -> lp_end , regs -> lp_count );
215
+ regs -> lp_start , regs -> lp_end , regs -> lp_count );
218
216
219
217
/* print regs->r0 thru regs->r12
220
218
* Sequential printing was generating horrible code
0 commit comments