Lines Matching refs:owner
18 A low priority owner of a rt-mutex inherits the priority of a higher
20 boosted owner blocks on a rt-mutex itself it propagates the priority
21 boosting to the owner of the other rt_mutex it gets blocked on. The
33 rtmutex, only the top priority waiter is enqueued into the owner's
36 got a signal), the priority of the owner task is readjusted. [The
46 The state of the rt-mutex is tracked via the owner field of the rt-mutex
49 rt_mutex->owner holds the task_struct pointer of the owner. Bit 0 and 1
50 are used to keep track of the "owner is pending" and "rtmutex has
53 owner bit1 bit0
59 taskpointer 0 1 task is pending owner
61 taskpointer 1 1 task is pending owner and mutex has waiters
74 task [because at unlock time we always assign a new owner].
77 doesn't already have an owner, this bit is quickly cleared if there are
79 at the owner field of the mutex and the mutex owner releasing the lock.