aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/locking/mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/mutex.c b/kernel/locking/mutex.c
index 3f8a35104285..db578783dd36 100644
--- a/kernel/locking/mutex.c
+++ b/kernel/locking/mutex.c
@@ -987,7 +987,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
987 * wait_lock. This ensures the lock cancellation is ordered 987 * wait_lock. This ensures the lock cancellation is ordered
988 * against mutex_unlock() and wake-ups do not go missing. 988 * against mutex_unlock() and wake-ups do not go missing.
989 */ 989 */
990 if (unlikely(signal_pending_state(state, current))) { 990 if (signal_pending_state(state, current)) {
991 ret = -EINTR; 991 ret = -EINTR;
992 goto err; 992 goto err;
993 } 993 }