public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* runqueue locks in schedule()
@ 2008-01-17  0:29 stephane eranian
  2008-01-17 13:24 ` Peter Zijlstra
  0 siblings, 1 reply; 7+ messages in thread
From: stephane eranian @ 2008-01-17  0:29 UTC (permalink / raw)
  To: linux-kernel; +Cc: ia64, Stephane Eranian, Corey J Ashford

Hello,

As suggested by people on this list, I have changed perfmon2 to use
the high resolution
timers as the interface to allow timeout-based event set multiplexing.
This works around
the problems I had with tickless-enabled kernels.

Multiplexing is supported in per-thread as well. In that case, the
timeout measures virtual
time. When the thread is context switched out, we need to save the
remainder of the timeout
and cancel the timer. When the thread is context switched in, we need
to reinstall the timer.
These timer save/restore operations have to be done in the switch_to()
code near the end
of schedule().

There are situations where hrtimer_start() may end up trying to
acquire the runqueue lock.
This happens on a context switch where the current thread is blocking
(not preempted) and
the new timeout happens to be either in the past or just expiring.
We've run into such situations
with simple tests.

On all architectures, but IA-64, it seems thet the runqueue lock is
held until the end of schedule().
On IA-64, the lock is released BEFORE switch_to() for some reason I
don't quite remember. That
may not even be needed anymore.

The early unlocking is controlled by a macro named __ARCH_WANT_UNLOCKED_CTXSW.
Defining this macros on X86 (or PPC) fixed our problem.

It is not clear to me why the runqueue lock needs to be held up until
the end of schedule() on some
platforms and not on others. Not that releasing the lock earlier does
not necessarily introduce
more overhead because the lock is never re-acquired later in the
schedule() function.

Question:
   - is it safe to release the lock before switch_to() on all architectures?

Thanks.

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

end of thread, other threads:[~2008-02-23 20:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-17  0:29 runqueue locks in schedule() stephane eranian
2008-01-17 13:24 ` Peter Zijlstra
2008-01-18  2:07   ` Nick Piggin
2008-01-18  6:33     ` stephane eranian
2008-01-18  8:28       ` Nick Piggin
2008-02-23 14:50   ` stephane eranian
2008-02-23 20:40     ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox