Commit 598c27f8 authored by David Mosberger's avatar David Mosberger

ia64: Fix NaT consumption fault handler to not oops if fault was

	triggered in a code section with an exception handler.
parent a4b5c06d
......@@ -498,7 +498,8 @@ ia64_fault (unsigned long vector, unsigned long isr, unsigned long ifa,
siginfo.si_isr = isr;
force_sig_info(sig, &siginfo, current);
return;
}
} else if (done_with_exception(regs))
return;
sprintf(buf, "NaT consumption");
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment