From: "David S. Miller" <davem@redhat.com>
To: grundler@cup.hp.com
Cc: linux-kernel@vger.kernel.org, alan@lxorguk.ukuu.org.uk,
parisc-linux@thepuffingroup.com
Subject: Re: [PATCH] move xchg/cmpxchg to atomic.h
Date: Tue, 2 Jan 2001 01:03:48 -0800 [thread overview]
Message-ID: <200101020903.BAA14334@pizda.ninka.net> (raw)
In-Reply-To: <200101020811.AAA26525@milano.cup.hp.com> (message from Grant Grundler on Tue, 2 Jan 2001 00:11:57 -0800 (PST))
In-Reply-To: <200101020811.AAA26525@milano.cup.hp.com>
Date: Tue, 2 Jan 2001 00:11:57 -0800 (PST)
From: Grant Grundler <grundler@cup.hp.com>
Fundemental problem is parisc only supports one atomic operation
(LDCW/LDCD) and uses spinlocks for all atomic operations including
xchg/cmpxchg.
Using spinlocks for the implementation of xchg on SMP might be
problematic.
If you implement things like this, several subtle things might
break. For example, there is code in a few spots (or, at least at one
time there was) which assumed the update of the datum itself is atomic
and uses this assumption to do lock-free read-only accesses of the
data.
If you require an external agent (f.e. your spinlock) because you
cannot implement xchg with a real atomic sequence, this breaks the
above assumptions.
It is very common to do things like:
producer(elem)
{
elem->next = list->head;
xchg(&list->head, elem);
}
consumer()
{
local_list = xchg(&list->head, NULL);
for_each(elem, local_list)
do_something(elem);
}
In fact we had code excatly like this in the buffer cache at one
point in time.
Later,
David S. Miller
davem@redhat.com
-
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-02 9:53 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-01-02 11:22 Matthew Wilcox
2001-01-02 8:11 ` Grant Grundler
2001-01-02 9:03 ` David S. Miller [this message]
2001-01-02 11:21 ` David S. Miller
2001-01-02 20:44 ` Roman Zippel
2001-01-02 22:05 ` Daniel Phillips
2001-01-02 20:39 ` Grant Grundler
2001-01-02 11:59 ` Andi Kleen
2001-01-02 17:18 ` Alan Cox
2001-01-02 19:51 ` Linus Torvalds
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=200101020903.BAA14334@pizda.ninka.net \
--to=davem@redhat.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=grundler@cup.hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=parisc-linux@thepuffingroup.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®