linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* wait_event_interruptible_timeout() not sleeping accurately
@ 2019-11-22 19:39 Dick Hollenbeck
  2019-11-25 17:31 ` Sebastian Andrzej Siewior
  0 siblings, 1 reply; 2+ messages in thread
From: Dick Hollenbeck @ 2019-11-22 19:39 UTC (permalink / raw)
  To: linux-rt-users


In a user thread I block on wait_event_interruptible_timeout() for about 3300 usecs or
until my threaded interrupt handler calls wake_up_interruptible() when the hardware event
happens.

This seems to work fine for the case when the event actually happens.  But for the timeout
case, the function wait_event_interruptible_timeout() is sleeping 9000 usecs or so rather
than 3300 usecs as requested.  I confirmed this by toggling a GPIO pin before and after
the call and feeding that signal to a logic analyzer.

The user thread is RT round robin at about a priority 5.

Am I doing something disallowed under PREEMPT_RT?
What could be the reason for the inaccurate wait_event_interruptible_timeout() timeout?


			ret = wait_event_interruptible_timeout(bh->rx_waitq,
				bh->rx_intr_flag,
				usecs_to_jiffies(aTimeoutUSecs) );


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-11-25 17:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-22 19:39 wait_event_interruptible_timeout() not sleeping accurately Dick Hollenbeck
2019-11-25 17:31 ` Sebastian Andrzej Siewior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).