From: Daniel Jacobowitz <dan@debian.org>
To: Harm Verhagen <hverhagen@dse.nl>
Cc: linux-mips@linux-mips.org
Subject: Re: locking problems with mips atomicity ?
Date: Tue, 20 Apr 2004 18:56:26 -0400 [thread overview]
Message-ID: <20040420225626.GA5980@nevyn.them.org> (raw)
In-Reply-To: <1082501636.13783.69.camel@node-d-8d2e.a2000.nl>
On Wed, Apr 21, 2004 at 12:53:56AM +0200, Harm Verhagen wrote:
> On Wed, 2004-04-21 at 00:49, Daniel Jacobowitz wrote:
> > On Wed, Apr 21, 2004 at 12:44:34AM +0200, Harm Verhagen wrote:
> > > The code from linux 2.4.26 arch-mips/atomic.h looks _very_ similar to
> > > the code described in the thread that has a BUG.
> > >
> > > static __inline__ void atomic_add(int i, atomic_t * v)
> > > {
> > > unsigned long temp;
> > >
> > > __asm__ __volatile__(
> > > "1: ll %0, %1 # atomic_add\n"
> > > " addu %0, %2 \n"
> > > " sc %0, %1 \n"
> > > " beqz %0, 1b \n"
> > > : "=&r" (temp), "=m" (v->counter)
> > > : "Ir" (i), "m" (v->counter));
> > > }
> > >
> > > So I wonder if there is a bug here.
> > > Can some MIPS guru check ? :)
> >
> > It won't be a problem in the kernel. The problem only happens when the
> > assembler expands a macro to multiple instructions including a load,
> > and that only happens for position-independent code; the kernel is not
> > PIC.
> Sorry for not understanding completely. What makes the gcc code PIC
> then? The code looks similar, an inline function with inline assembly.
> Could you elaborate ?
You may want to look for documentation describing the MIPS PIC
conventions. Good luck; they're bizarre.
The problem is that in userspace "ll $2, symbol_name" may expand to a
load of the address of symbol_name from the GOT (global offset table).
--
Daniel Jacobowitz
MontaVista Software Debian GNU/Linux Developer
next prev parent reply other threads:[~2004-04-20 22:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-20 22:44 locking problems with mips atomicity ? Harm Verhagen
2004-04-20 22:49 ` Daniel Jacobowitz
2004-04-20 22:53 ` Harm Verhagen
2004-04-20 22:56 ` Daniel Jacobowitz [this message]
2004-04-21 12:43 ` Maciej W. Rozycki
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=20040420225626.GA5980@nevyn.them.org \
--to=dan@debian.org \
--cc=hverhagen@dse.nl \
--cc=linux-mips@linux-mips.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.