@@ -109,8 +109,8 @@ void handle_pgm_int(void)
if (!pgm_int_expected) {
/* Force sclp_busy to false, otherwise we will loop forever */
sclp_handle_ext();
- report_abort("Unexpected program interrupt: %d at %#lx, ilen %d\n",
- lc->pgm_int_code, lc->pgm_old_psw.addr,
+ report_abort("Unexpected program interrupt: %d on cpu %d at %#lx, ilen %d\n",
+ lc->pgm_int_code, stap(), lc->pgm_old_psw.addr,
lc->pgm_int_id);
}
@@ -122,8 +122,8 @@ void handle_ext_int(void)
{
if (!ext_int_expected &&
lc->ext_int_code != EXT_IRQ_SERVICE_SIG) {
- report_abort("Unexpected external call interrupt (code %#x): at %#lx",
- lc->ext_int_code, lc->ext_old_psw.addr);
+ report_abort("Unexpected external call interrupt (code %#x): on cpu %d at %#lx",
+ lc->ext_int_code, stap(), lc->ext_old_psw.addr);
return;
}
@@ -140,18 +140,18 @@ void handle_ext_int(void)
void handle_mcck_int(void)
{
- report_abort("Unexpected machine check interrupt: at %#lx",
- lc->mcck_old_psw.addr);
+ report_abort("Unexpected machine check interrupt: on cpu %d at %#lx",
+ stap(), lc->mcck_old_psw.addr);
}
void handle_io_int(void)
{
- report_abort("Unexpected io interrupt: at %#lx",
- lc->io_old_psw.addr);
+ report_abort("Unexpected io interrupt: on cpu %d at %#lx",
+ stap(), lc->io_old_psw.addr);
}
void handle_svc_int(void)
{
- report_abort("Unexpected supervisor call interrupt: at %#lx",
- lc->svc_old_psw.addr);
+ report_abort("Unexpected supervisor call interrupt: on cpu %d at %#lx",
+ stap(), lc->svc_old_psw.addr);
}