mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: yodaiken@fsmlabs.com
To: Anton Altaparmakov <aia21@cam.ac.uk>
Cc: nigel@nrg.org, Christoph Hellwig <hch@ns.caldera.de>,
	Ingo Molnar <mingo@elte.hu>, yodaiken <yodaiken@fsmlabs.com>,
	Martin Wirth <Martin.Wirth@dlr.de>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	akpm <akpm@zip.com.au>, torvalds <torvalds@transmet.com>,
	rml <rml@tech9.net>
Subject: Re: [RFC] New locking primitive for 2.5
Date: Fri, 8 Feb 2002 13:38:51 -0700	[thread overview]
Message-ID: <20020208133851.B11590@hq.fsmlabs.com> (raw)
In-Reply-To: <200202081231.g18CV7e31341@ns.caldera.de> <Pine.LNX.4.40.0202080838230.3883-100000@cosmic.nrg.org> <5.1.0.14.2.20020208174632.00b0dad0@pop.cus.cam.ac.uk>
In-Reply-To: <5.1.0.14.2.20020208174632.00b0dad0@pop.cus.cam.ac.uk>; from aia21@cam.ac.uk on Fri, Feb 08, 2002 at 08:14:32PM +0000

On Fri, Feb 08, 2002 at 08:14:32PM +0000, Anton Altaparmakov wrote:
> At 16:51 08/02/02, Nigel Gamble wrote:
> >Read-write semaphores should never be used.  As others have pointed out,
> >they cause really intractable priority inversion problems (because a
...
> 
> Read-write semaphores have their use and the current Linux implementation 

Here's the context: the preemption patch puts pressure on Linux to move
from BKL to semaphores and then it will be seen that semaphores need
to have dynamic priority inherit to sort-of-work, and then it will be seen
that read/write lock is a problem! 


> The value of allowing multiple cpus to read the same data simultaneously by 
> far offsets the priority problems IMVHO. At least the way I am using rw 
> semaphores in ntfs it is. Readlocks are grabbed loads and loads of times to 
> serialize meta data access in the page cache while writelocks are a minute 
> number in comparison and because the data required to be accessed may not 

this is absolutely correct. However, once the decision has been made or
fallen into to go to a priority inherit scheme, Linux will find itself
in the same bind as Solaris.

> be cached in memory (page cache page is not read in, is swapped out, 
> whatever) a disk access may be required which means a rw spin lock is no 
> good. In fact ntfs would be the perfect candidate for automatic rw combi 
> locks where the locking switches from spinning to sleeping if the code path 
> reaches a disk access. I can't use a manually controlled lock as the page 

Seem like the lock is simply grabbed way to far up. 


-- 
---------------------------------------------------------
Victor Yodaiken 
Finite State Machine Labs: The RTLinux Company.
 www.fsmlabs.com  www.rtlinux.com


  reply	other threads:[~2002-02-08 20:41 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-02-07 15:38 Martin Wirth
2002-02-07 18:04 ` Daniel Phillips
2002-02-07 18:06 ` Richard Gooch
2002-02-07 18:22 ` Christoph Hellwig
2002-02-07 19:33   ` Daniel Phillips
2002-02-07 19:55   ` Mark Frazer
2002-02-08 12:24   ` Denis Vlasenko
2002-02-07 18:40 ` Robert Love
2002-02-07 19:25   ` Andrew Morton
2002-02-07 19:51     ` Dave Hansen
2002-02-07 20:06       ` Andrew Morton
2002-02-07 20:11       ` Robert Love
2002-02-07 21:27     ` Ingo Molnar
2002-02-07 19:59       ` Andrew Morton
2002-02-08  8:20     ` Nigel Gamble
2002-02-08 17:06       ` Larry McVoy
2002-02-07 19:58   ` yodaiken
2002-02-07 20:08   ` Robert Love
2002-02-07 20:15     ` yodaiken
2002-02-07 20:20     ` Robert Love
2002-02-07 20:36       ` yodaiken
2002-02-07 20:57         ` Daniel Phillips
2002-02-07 21:00           ` yodaiken
2002-02-07 21:10             ` Daniel Phillips
2002-02-07 20:49   ` Martin Wirth
2002-02-08  8:34   ` Martin Wirth
2002-02-08 18:28     ` Linus Torvalds
2002-02-08 18:12       ` Martin Wirth
2002-02-08 18:33         ` Alexander Viro
2002-02-08 20:02         ` Linus Torvalds
2002-02-08 18:54           ` Andrew Morton
2002-02-08 19:11             ` Linus Torvalds
2002-02-08 19:21               ` Alexander Viro
2002-02-08 19:36                 ` Robert Love
2002-02-09  0:18                   ` Alexander Viro
2002-02-08 21:23                 ` Ingo Molnar
2002-02-08 21:36                   ` Linus Torvalds
2002-02-08 20:04                     ` Jeff Garzik
2002-02-08 21:16                       ` Mike Fedyk
2002-02-09  0:09                         ` Alan Cox
2002-02-09  0:05                           ` Mike Fedyk
2002-02-08 21:40                       ` Benjamin Herrenschmidt
2002-02-09 19:32                         ` Linus Torvalds
2002-02-07 19:56 ` yodaiken
2002-02-07 22:09   ` Ingo Molnar
2002-02-07 20:31     ` yodaiken
2002-02-07 20:57       ` Andrew Morton
2002-02-07 21:02         ` yodaiken
2002-02-08 12:31     ` Christoph Hellwig
2002-02-08 16:51       ` Nigel Gamble
2002-02-08 21:55         ` Anton Altaparmakov
2002-02-08 18:41       ` Andrew Morton
2002-02-08 20:47         ` Ingo Molnar
2002-02-08 18:56           ` Alexander Viro
2002-02-08 20:59             ` Ingo Molnar
2002-02-08 19:10               ` Alexander Viro
2002-02-08 20:14       ` Anton Altaparmakov
2002-02-08 20:38         ` yodaiken [this message]
2002-02-08 12:47   ` Denis Vlasenko
2002-02-08 15:13     ` yodaiken
2002-02-08 19:22 ` Horst von Brand

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=20020208133851.B11590@hq.fsmlabs.com \
    --to=yodaiken@fsmlabs.com \
    --cc=Martin.Wirth@dlr.de \
    --cc=aia21@cam.ac.uk \
    --cc=akpm@zip.com.au \
    --cc=hch@ns.caldera.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=nigel@nrg.org \
    --cc=rml@tech9.net \
    --cc=torvalds@transmet.com \
    /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

all inboxes | Powered by JetHome®