Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
kernel/locking/rtmutex.c
··· 343 343 rt_mutex_cond_detect_deadlock(struct rt_mutex_waiter *waiter, 344 344 enum rtmutex_chainwalk chwalk) 345 345 { 346 - if (IS_ENABLED(CONFIG_DEBUG_RT_MUTEX)) 346 + if (IS_ENABLED(CONFIG_DEBUG_RT_MUTEXES)) 347 347 return waiter != NULL; 348 348 return chwalk == RT_MUTEX_FULL_CHAINWALK; 349 349 }