locking/rtmutex: Prepare RT rt_mutex_wake_q for RT locks
authorThomas Gleixner <tglx@linutronix.de>
Sun, 15 Aug 2021 21:28:11 +0000 (23:28 +0200)
committerIngo Molnar <mingo@kernel.org>
Tue, 17 Aug 2021 15:21:09 +0000 (17:21 +0200)
commit456cfbc65cd072f4f53936ee5a37eb1447a7d3ba
treeb567f3f01eebfe206b5f355d5f9941a38fbee88c
parent7980aa397cc0968ea3ffee7a985c31c92ad84f81
locking/rtmutex: Prepare RT rt_mutex_wake_q for RT locks

Add an rtlock_task pointer to rt_mutex_wake_q, which allows to handle the RT
specific wakeup for spin/rwlock waiters. The pointer is just consuming 4/8
bytes on the stack so it is provided unconditionaly to avoid #ifdeffery all
over the place.

This cannot use a regular wake_q, because a task can have concurrent wakeups which
would make it miss either lock or the regular wakeups, depending on what gets
queued first, unless task struct gains a separate wake_q_node for this, which
would be overkill, because there can only be a single task which gets woken
up in the spin/rw_lock unlock path.

No functional change for non-RT enabled kernels.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20210815211303.253614678@linutronix.de
kernel/locking/rtmutex.c
kernel/locking/rtmutex_common.h