mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 15:42:32 +00:00
locking/rtmutex: Remove rtmutex deadlock tester leftovers
The following debug members of 'struct rtmutex' are unused: - save_state: No users - file,line: Printed if ::name is NULL. This is only used for non-futex locks so ::name is never NULL - magic: Assigned to NULL by rt_mutex_destroy(), no further usage Remove them along with unused inline and macro leftovers related to the long gone deadlock tester. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@kernel.org> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20210326153943.195064296@linutronix.de
This commit is contained in:
parent
c15380b72d
commit
2d445c3e4a
6 changed files with 3 additions and 19 deletions
|
@ -1594,9 +1594,6 @@ void __sched rt_mutex_futex_unlock(struct rt_mutex *lock)
|
|||
void rt_mutex_destroy(struct rt_mutex *lock)
|
||||
{
|
||||
WARN_ON(rt_mutex_is_locked(lock));
|
||||
#ifdef CONFIG_DEBUG_RT_MUTEXES
|
||||
lock->magic = NULL;
|
||||
#endif
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(rt_mutex_destroy);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue