Searched refs:try_to_take_rt_mutex (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/kernel/locking/ |
H A D | rtmutex.c | 1064 try_to_take_rt_mutex(struct rt_mutex_base *lock, struct task_struct *task, in try_to_take_rt_mutex() function 1336 int ret = try_to_take_rt_mutex(lock, current, NULL); in __rt_mutex_slowtrylock() 1591 if (try_to_take_rt_mutex(lock, current, waiter)) in rt_mutex_slowlock_block() 1671 if (try_to_take_rt_mutex(lock, current, NULL)) { in __rt_mutex_slowlock() 1782 if (try_to_take_rt_mutex(lock, current, NULL)) in rtlock_slowlock_locked() 1796 if (try_to_take_rt_mutex(lock, current, &waiter)) in rtlock_slowlock_locked()
|
H A D | rtmutex_api.c | 300 if (try_to_take_rt_mutex(lock, task, NULL)) in __rt_mutex_start_proxy_lock() 428 try_to_take_rt_mutex(lock, current, waiter); in rt_mutex_cleanup_proxy_lock()
|
/openbmc/linux/Documentation/locking/ |
H A D | rt-mutex-design.rst | 440 We then call try_to_take_rt_mutex. This is where the architecture that 444 try_to_take_rt_mutex is used every time the task tries to grab a mutex in the 463 If the lock is not taken by try_to_take_rt_mutex(), then the
|