]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
lib/fault-inject.c: use correct check for interrupts
authorDmitry Vyukov <dvyukov@google.com>
Mon, 8 May 2017 22:56:51 +0000 (15:56 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 9 May 2017 00:15:12 +0000 (17:15 -0700)
commitf2ad37da805414e9385e7ca2961e1d0431df3799
treef9b7298389afda5d32bb4dae3e243816eb252f6f
parentf61e869d519c0c11a8d80a503cfdfb4897df855a
lib/fault-inject.c: use correct check for interrupts

in_interrupt() also returns true when bh is disabled in task context.
That's not what fail_task() wants to check.  Use the new in_task()
predicate that does the right thing.

Link: http://lkml.kernel.org/r/20170321091805.140676-1-dvyukov@google.com
Signed-off-by: Dmitry Vyukov <dvyukov@google.com>
Reviewed-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/fault-inject.c