aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/locking/mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/locking/mutex.c')
-rw-r--r--kernel/locking/mutex.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/locking/mutex.c b/kernel/locking/mutex.c
index ae712b25e492..ad0e3335c481 100644
--- a/kernel/locking/mutex.c
+++ b/kernel/locking/mutex.c
@@ -679,9 +679,8 @@ EXPORT_SYMBOL_GPL(__ww_mutex_lock_interruptible);
679 * Release the lock, slowpath: 679 * Release the lock, slowpath:
680 */ 680 */
681static inline void 681static inline void
682__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested) 682__mutex_unlock_common_slowpath(struct mutex *lock, int nested)
683{ 683{
684 struct mutex *lock = container_of(lock_count, struct mutex, count);
685 unsigned long flags; 684 unsigned long flags;
686 685
687 /* 686 /*
@@ -716,7 +715,9 @@ __mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
716__visible void 715__visible void
717__mutex_unlock_slowpath(atomic_t *lock_count) 716__mutex_unlock_slowpath(atomic_t *lock_count)
718{ 717{
719 __mutex_unlock_common_slowpath(lock_count, 1); 718 struct mutex *lock = container_of(lock_count, struct mutex, count);
719
720 __mutex_unlock_common_slowpath(lock, 1);
720} 721}
721 722
722#ifndef CONFIG_DEBUG_LOCK_ALLOC 723#ifndef CONFIG_DEBUG_LOCK_ALLOC