diff options
| author | Qais Yousef <qyousef@layalina.io> | 2024-06-10 20:20:18 +0100 |
|---|---|---|
| committer | Peter Zijlstra <peterz@infradead.org> | 2024-08-07 18:32:38 +0200 |
| commit | ae04f69de0bef93c7086cf2983dbc8e8fd624ebe (patch) | |
| tree | 22e900c1069394189c8e78b70a32ef68c3293e5a /kernel/locking/ww_mutex.h | |
| parent | b166af3db70fdcecf125662a2360471bb20be203 (diff) | |
sched/rt: Rename realtime_{prio, task}() to rt_or_dl_{prio, task}()
Some find the name realtime overloaded. Use rt_or_dl() as an
alternative, hopefully better, name.
Suggested-by: Daniel Bristot de Oliveira <bristot@redhat.com>
Signed-off-by: Qais Yousef <qyousef@layalina.io>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20240610192018.1567075-4-qyousef@layalina.io
Diffstat (limited to 'kernel/locking/ww_mutex.h')
| -rw-r--r-- | kernel/locking/ww_mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/ww_mutex.h b/kernel/locking/ww_mutex.h index fa4b416a1f62..76d204b7d29c 100644 --- a/kernel/locking/ww_mutex.h +++ b/kernel/locking/ww_mutex.h @@ -237,7 +237,7 @@ __ww_ctx_less(struct ww_acquire_ctx *a, struct ww_acquire_ctx *b) int a_prio = a->task->prio; int b_prio = b->task->prio; - if (realtime_prio(a_prio) || realtime_prio(b_prio)) { + if (rt_or_dl_prio(a_prio) || rt_or_dl_prio(b_prio)) { if (a_prio > b_prio) return true; |