Searched refs:RWSEM_OWNER_FLAGS_MASK (Results 1 - 1 of 1) sorted by relevance

/linux-master/kernel/locking/
H A Drwsem.c65 #define RWSEM_OWNER_FLAGS_MASK (RWSEM_READER_OWNED | RWSEM_NONSPINNABLE) macro
212 while ((val & ~RWSEM_OWNER_FLAGS_MASK) == (unsigned long)current) {
214 val & RWSEM_OWNER_FLAGS_MASK))
274 (atomic_long_read(&sem->owner) & ~RWSEM_OWNER_FLAGS_MASK);
286 *pflags = owner & RWSEM_OWNER_FLAGS_MASK;
287 return (struct task_struct *)(owner & ~RWSEM_OWNER_FLAGS_MASK);

Completed in 111 milliseconds