From: george anzinger <george@mvista.com>
To: nigel@nrg.org
Cc: Roger Larsson <roger.larsson@norran.net>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: Latency: allowing resheduling while holding spin_locks
Date: Sat, 13 Jan 2001 16:06:27 -0800 [thread overview]
Message-ID: <3A60ED83.1B70410A@mvista.com> (raw)
In-Reply-To: <Pine.LNX.4.05.10101131335380.10740-100000@cosmic.nrg.org>
Nigel Gamble wrote:
>
> On Sat, 13 Jan 2001, Roger Larsson wrote:
> > A rethinking of the rescheduling strategy...
>
> Actually, I think you have more-or-less described how successful
> preemptible kernels have already been developed, given that your
> "sleeping spin locks" are really just sleeping mutexes (or binary
> semaphores).
>
> 1. Short critical regions are protected by spin_lock_irq(). The maximum
> value of "short" is therefore bounded by the maximum time we are happy
> to disable (local) interrupts - ideally ~100us.
>
> 2. Longer regions are protected by sleeping mutexes.
>
> 3. Algorithms are rearchitected until all of the highly contended locks
> are of type 1, and only low contention locks are of type 2.
>
> This approach has the advantage that we don't need to use a no-preempt
> count, and test it on exit from every spinlock to see if a preempting
> interrupt that has caused a need_resched has occurred, since we won't
> see the interrupt until it's safe to do the preemptive resched.
I agree that this was true in days of yore. But these days the irq
instructions introduce serialization points and, me thinks, may be much
more time consuming than the "++, --, if (false)" that a preemption
count implemtation introduces. Could some one with a knowledge of the
hardware comment on this?
I am not suggesting that the "++, --, if (false)" is faster than an
interrupt, but that it is faster than cli, sti. Of course we are
assuming that there is <stuff> between the cli and the sti as there is
between the ++ and the -- if (false).
George
>
> Nigel Gamble nigel@nrg.org
> Mountain View, CA, USA. http://www.nrg.org/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2001-01-14 0:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-01-13 17:31 Latency: allowing resheduling while holding spin_locks Roger Larsson
2001-01-13 21:56 ` Nigel Gamble
2001-01-14 0:06 ` george anzinger [this message]
2001-01-15 22:02 ` Roger Larsson
2001-01-16 3:09 ` george anzinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3A60ED83.1B70410A@mvista.com \
--to=george@mvista.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nigel@nrg.org \
--cc=roger.larsson@norran.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.