Messages in this thread |  | | Date | Wed, 10 Oct 2001 13:46:34 -0700 | From | "Martin J. Bligh" <> | Subject | Re: 2.4.11 APIC problems |
| |
> So, I tried inserting the die() like you said without console serial. I > got pagefulls of dumps and pretty soon it rebooted itself. So, I logged > to the serial console again on the next reboot to capture the output. > Looks like we got the "APIC error" message in the log too. It's a > really long log so I attached it rather than putting it inline.
Ick. You need to disable the repeated interrupt. Try this instead of the die:
cli(); __asm__ __volatile__ ("hlt");
And if it makes a huge logfile again, just mail the first bit .... I don't care about huge emails, but others on lkml probably do ;-)
M.
PS. Nor do I care what the die says, I just want to stop the processor. I want to know what it was doing just before the smp_error_interrupt. There are more elegant solutions around to stop repeated APIC errors, but this should be OK for debug. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |