9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Russ Cox <rsc@swtch.com>
To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net>
Subject: Re: [9fans] kenfs question?
Date: Sat,  6 Feb 2010 16:12:07 -0800	[thread overview]
Message-ID: <dd6fe68a1002061612u754bf41ic04fbcfa2c2f2b4b@mail.gmail.com> (raw)
In-Reply-To: <20100206161207.GA31545@centaur.acm.jhu.edu>

[-- Attachment #1: Type: text/plain, Size: 757 bytes --]

>
> ilock() (pc/lock.c) calls splhi() and then calls lock(). If that lock were
> contended, how would the system not stop? And on a UP system, if you're
> inside an splhi() block,
> why would you need to take an uncontended lock?
>

ilock is for locks that get used both in normal procs
and in interrupt handlers.  Using splhi makes sure
that the interrupt handler does not get started on the
same cpu while the proc holds the lock, which would
cause a deadlock.

If there were no interrupts involved, the lock would be
managed with lock/unlock instead of ilock/iunlock.

On a uniprocessor you could get away with splhi/splx
instead of ilock/iunlock, but it's easier and more portable
to program as if always on a multiprocessor.

Russ

[-- Attachment #2: Type: text/html, Size: 1068 bytes --]

  parent reply	other threads:[~2010-02-07  0:12 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-06 16:12 Venkatesh Srinivas
2010-02-06 16:16 ` erik quanstrom
2010-02-11 13:31   ` Venkatesh Srinivas
2010-02-11 14:55     ` erik quanstrom
2010-02-07  0:12 ` Russ Cox [this message]
2010-02-07  3:02   ` Venkatesh Srinivas
2010-02-07  4:44     ` erik quanstrom
2010-02-07 10:42       ` Charles Forsyth
2010-02-07 12:19         ` Venkatesh Srinivas

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=dd6fe68a1002061612u754bf41ic04fbcfa2c2f2b4b@mail.gmail.com \
    --to=rsc@swtch.com \
    --cc=9fans@9fans.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 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).