Skip to content

Commit cceeeb6

Browse files
jlelliKAGA-KOKO
authored andcommitted
wait: Fix __wait_event_hrtimeout for RT/DL tasks
Changes to hrtimer mode (potentially made by __hrtimer_init_sleeper on PREEMPT_RT) are not visible to hrtimer_start_range_ns, thus not accounted for by hrtimer_start_expires call paths. In particular, __wait_event_hrtimeout suffers from this problem as we have, for example: fs/aio.c::read_events wait_event_interruptible_hrtimeout __wait_event_hrtimeout hrtimer_init_sleeper_on_stack <- this might "mode |= HRTIMER_MODE_HARD" on RT if task runs at RT/DL priority hrtimer_start_range_ns WARN_ON_ONCE(!(mode & HRTIMER_MODE_HARD) ^ !timer->is_hard) fires since the latter doesn't see the change of mode done by init_sleeper Fix it by making __wait_event_hrtimeout call hrtimer_sleeper_start_expires, which is aware of the special RT/DL case, instead of hrtimer_start_range_ns. Reported-by: Bruno Goncalves <bgoncalv@redhat.com> Signed-off-by: Juri Lelli <juri.lelli@redhat.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Daniel Bristot de Oliveira <bristot@kernel.org> Reviewed-by: Valentin Schneider <vschneid@redhat.com> Link: https://lore.kernel.org/r/20220627095051.42470-1-juri.lelli@redhat.com
1 parent 75fed76 commit cceeeb6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

include/linux/wait.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -544,10 +544,11 @@ do { \
544544
\
545545
hrtimer_init_sleeper_on_stack(&__t, CLOCK_MONOTONIC, \
546546
HRTIMER_MODE_REL); \
547-
if ((timeout) != KTIME_MAX) \
548-
hrtimer_start_range_ns(&__t.timer, timeout, \
549-
current->timer_slack_ns, \
550-
HRTIMER_MODE_REL); \
547+
if ((timeout) != KTIME_MAX) { \
548+
hrtimer_set_expires_range_ns(&__t.timer, timeout, \
549+
current->timer_slack_ns); \
550+
hrtimer_sleeper_start_expires(&__t, HRTIMER_MODE_REL); \
551+
} \
551552
\
552553
__ret = ___wait_event(wq_head, condition, state, 0, 0, \
553554
if (!__t.task) { \

0 commit comments

Comments
 (0)