Skip to content

Commit 839da25

Browse files
committed
Merge tag 'locking_urgent_for_v5.14_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull locking fix from Borislav Petkov: - Fix a CONFIG symbol's spelling * tag 'locking_urgent_for_v5.14_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: locking/rtmutex: Use the correct rtmutex debugging config option
2 parents 12aef8a + 07d2597 commit 839da25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/locking/rtmutex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ static __always_inline bool
343343
rt_mutex_cond_detect_deadlock(struct rt_mutex_waiter *waiter,
344344
enum rtmutex_chainwalk chwalk)
345345
{
346-
if (IS_ENABLED(CONFIG_DEBUG_RT_MUTEX))
346+
if (IS_ENABLED(CONFIG_DEBUG_RT_MUTEXES))
347347
return waiter != NULL;
348348
return chwalk == RT_MUTEX_FULL_CHAINWALK;
349349
}

0 commit comments

Comments
 (0)