When we enable CONFIG_DETECT_SOFTLOCKUP to detect soft lockups, it creates a new task called khungtaskd which will run every 1s. If khungtaskd fails to get scheduled for 'n' seconds, then Kernel will declare a soft lockup.

My question is what are the reasons that prevent khungtaskd from running? One that I found is- trying to acquire an already acquired spinlock in interrupt context. What are the other reasons which will lead to soft lockup?

link|improve this question

feedback

2 Answers

Too many interrupt (and computer too slow)? Check /proc/interrupts and see.

Some realtime tasks running?

Interrupts almost always have higher priority than other tasks.

link|improve this answer
feedback

for an instance, with uniprocessor, preemptive disabled, any endless loop in kernel thread will cause soft-lockup.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.