From: Matthew Wilcox <willy@debian.org>
To: parisc-linux@parisc-linux.org
Subject: [parisc-linux] atomic_t
Date: Sun, 13 Jan 2002 21:15:08 +0000 [thread overview]
Message-ID: <20020113211508.V9193@parcelfarce.linux.theplanet.co.uk> (raw)
Just thinking about atomic_set taking the spinlock to assure
exclusivity... I thought we could eliminate it.
Here's the current code:
static __inline__ void __atomic_set(atomic_t *v, int i)
{
unsigned long flags;
SPIN_LOCK_IRQSAVE(ATOMIC_HASH(v), flags);
v->counter = i;
SPIN_UNLOCK_IRQRESTORE(ATOMIC_HASH(v), flags);
}
static __inline__ int __atomic_add_return(int i, atomic_t *v)
{
int ret;
unsigned long flags;
SPIN_LOCK_IRQSAVE(ATOMIC_HASH(v), flags);
ret = (v->counter += i);
SPIN_UNLOCK_IRQRESTORE(ATOMIC_HASH(v), flags);
return ret;
}
The legitimate effect of having two processors do this at the same time
are:
atomic_t v = 3
case 1:
atomic_add_return(1, &v)
atomic_set(&v, 1)
result: v = 1, a_a_r returns 4.
or case 2:
atomic_set(&v, 1)
atomic_add_return(1, &v)
result: v = 2, a_a_r returns 2.
The spinlocks guarantee this behaviour, but let's look at what happens
if we remove the spinlock from atomic_set. Now atomic_set is just an
assignment, and can occur at any point during atomic_add_ret. We'll have
to drop to psuedo-assembler for this.
atomic_add_ret becomes:
a) lock
b) load v into register r
c) add 1 to r
d) store r to v
e) unlock
f) return r
atomic_set (store 1 to v) can appear to occur at any point -- the CPU
ref manual guarantees it won't cause any problems.
Before step b leads to case 2. after step d leads to case 1. between
steps b and d, it's as if the atomic_set _never_happened_. It results
in v=4, a_a_r returns 4.
The question is whether any code relies on this behaviour. It probably
does in some of the messier bits of networking :-(
--
Revolutions do not require corporate support.
next reply other threads:[~2002-01-13 21:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-01-13 21:15 Matthew Wilcox [this message]
2002-01-14 4:09 ` [parisc-linux] atomic_t Grant Grundler
2002-01-14 4:43 ` Matthew Wilcox
2002-01-14 7:12 ` Grant Grundler
2002-01-14 9:54 ` Alan Cox
-- strict thread matches above, loose matches on Subject: below --
2002-01-14 6:54 John Marvin
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=20020113211508.V9193@parcelfarce.linux.theplanet.co.uk \
--to=willy@debian.org \
--cc=parisc-linux@parisc-linux.org \
/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.