Home
last modified time | relevance | path

Searched refs:rwbase (Results 1 – 7 of 7) sorted by relevance

/linux-6.1.9/kernel/locking/
Dspinlock_rt.c198 ret = rwbase_read_trylock(&rwlock->rwbase); in rt_read_trylock()
212 ret = rwbase_write_trylock(&rwlock->rwbase); in rt_write_trylock()
226 rwbase_read_lock(&rwlock->rwbase, TASK_RTLOCK_WAIT); in rt_read_lock()
236 rwbase_write_lock(&rwlock->rwbase, TASK_RTLOCK_WAIT); in rt_write_lock()
247 rwbase_write_lock(&rwlock->rwbase, TASK_RTLOCK_WAIT); in rt_write_lock_nested()
259 rwbase_read_unlock(&rwlock->rwbase, TASK_RTLOCK_WAIT); in rt_read_unlock()
268 rwbase_write_unlock(&rwlock->rwbase); in rt_write_unlock()
Drwsem.c1427 init_rwbase_rt(&(sem)->rwbase); in __init_rwsem()
1438 rwbase_read_lock(&sem->rwbase, TASK_UNINTERRUPTIBLE); in __down_read()
1443 return rwbase_read_lock(&sem->rwbase, TASK_INTERRUPTIBLE); in __down_read_interruptible()
1448 return rwbase_read_lock(&sem->rwbase, TASK_KILLABLE); in __down_read_killable()
1453 return rwbase_read_trylock(&sem->rwbase); in __down_read_trylock()
1458 rwbase_read_unlock(&sem->rwbase, TASK_NORMAL); in __up_read()
1463 rwbase_write_lock(&sem->rwbase, TASK_UNINTERRUPTIBLE); in __down_write()
1468 return rwbase_write_lock(&sem->rwbase, TASK_KILLABLE); in __down_write_killable()
1473 return rwbase_write_trylock(&sem->rwbase); in __down_write_trylock()
1478 rwbase_write_unlock(&sem->rwbase); in __up_write()
[all …]
/linux-6.1.9/include/linux/
Drwbase_rt.h22 #define init_rwbase_rt(rwbase) \ argument
24 rt_mutex_base_init(&(rwbase)->rtmutex); \
25 atomic_set(&(rwbase)->readers, READER_BIAS); \
Drwsem.h129 struct rwbase_rt rwbase; member
137 .rwbase = __RWBASE_INITIALIZER(name), \
156 return rw_base_is_locked(&sem->rwbase); in rwsem_is_locked()
161 return rw_base_is_contended(&sem->rwbase); in rwsem_is_contended()
Drwlock_types.h58 struct rwbase_rt rwbase; member
67 .rwbase = __RWBASE_INITIALIZER(name), \
Drwlock_rt.h23 init_rwbase_rt(&(rwl)->rwbase); \
/linux-6.1.9/lib/
Dtest_lockup.c493 offsetof(rwlock_t, rwbase.rtmutex.wait_lock.magic), in test_lockup_init()
499 offsetof(struct rw_semaphore, rwbase.rtmutex.wait_lock.magic), in test_lockup_init()