]> git.baikalelectronics.ru Git - kernel.git/commit
rtmutex: Warn if trylock is called from hard/softirq context
authorThomas Gleixner <tglx@linutronix.de>
Wed, 13 May 2015 20:49:12 +0000 (22:49 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 13 May 2015 20:49:12 +0000 (22:49 +0200)
commit7e425af0c85b709eb0b52c6d4e6587ede3096c84
tree2d2526d43c95232bc14bd9228f02de8fa14bd3dc
parent5aad87f1fde6ad7bbe103a77cf8069f172418861
rtmutex: Warn if trylock is called from hard/softirq context

rt_mutex_trylock() must be called from thread context. It can be
called from atomic regions (preemption or interrupts disabled), but
not from hard/softirq/nmi context. Add a warning to alert abusers.

The reasons for this are:

    1) There is a potential deadlock in the slowpath

    2) Another cpu which blocks on the rtmutex will boost the task
       which allegedly locked the rtmutex, but that cannot work
       because the hard/softirq context borrows the task context.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sebastian Siewior <bigeasy@linutronix.de>
kernel/locking/rtmutex.c