On Thu, Feb 14, 2019 at 09:27:17AM +0000, Mehrtens, Hauke wrote: > Hi, > > We would like to print the stack of the currently active kernel thread from the interrupt handler when the watchdog pre timeout interrupt for our watchdog is triggered, currently we have a WARN_ONCE() in the code of the interrupt handler, but this only prints the interrupt stack, which is pretty boring. On MIPS the interrupts are handled on a separate stack and not on top of the stack of the current active kernel thread to avoid stack overflows. Is there some function which would print the stack trace of the current active kernel thread in addition or instead of the interrupt stack inside of an interrupt? > > The kernel also has these pre timeout handlers, but they also seem to be affected by this problem: > https://elixir.bootlin.com/linux/v5.0-rc6/source/drivers/watchdog/pretimeout_panic.c > Not sure I understand. Are you saying that panic() doesn't help either ? If that is correct, I have no idea what else could be done. Guenter