public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* atomic_cmpxchg and 64-bit values
@ 2007-01-17 20:57 Brent Casavant
  2007-01-17 21:36 ` Andreas Schwab
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Brent Casavant @ 2007-01-17 20:57 UTC (permalink / raw)
  To: linux-ia64

Hello,

I have what I hope is an easy to answer question.

The IA64 atomic_cmpxchg macro reads as follows (line continuation inserted):

	#define atomic_cmpxchg(v, old, new) \
		((int)cmpxchg(&((v)->counter), old, new))

Note that there's an integer cast on the return from cmpxchg().
This seems strange considering that the entire compxchg() code
path takes care to make sure that correctly-sized data types are
used throughout, including the return path.  The atomic_xchg()
macro

Is there some particular reason we need the cast to int on the
return path for atomic_cmpxchg()?  It looks to me as if this
macro would work equally well with an atomic_t or an atomic64_t.

Thanks,
Brent

-- 
Brent Casavant                          All music is folk music.  I ain't
bcasavan@sgi.com                        never heard a horse sing a song.
Silicon Graphics, Inc.                    -- Louis Armstrong

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: atomic_cmpxchg and 64-bit values
  2007-01-17 20:57 atomic_cmpxchg and 64-bit values Brent Casavant
@ 2007-01-17 21:36 ` Andreas Schwab
  2007-01-18 18:13 ` Christoph Lameter
  2007-01-18 23:43 ` Brent Casavant
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Schwab @ 2007-01-17 21:36 UTC (permalink / raw)
  To: linux-ia64

Brent Casavant <bcasavan@sgi.com> writes:

> Is there some particular reason we need the cast to int on the
> return path for atomic_cmpxchg()?  It looks to me as if this
> macro would work equally well with an atomic_t or an atomic64_t.

No, this is won't work, atomic_cmpxchg is strictly only defined for
atomic_t.  See commit 4a6dae6d382e9edf3ff440b819e554ed706359bc.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: atomic_cmpxchg and 64-bit values
  2007-01-17 20:57 atomic_cmpxchg and 64-bit values Brent Casavant
  2007-01-17 21:36 ` Andreas Schwab
@ 2007-01-18 18:13 ` Christoph Lameter
  2007-01-18 23:43 ` Brent Casavant
  2 siblings, 0 replies; 4+ messages in thread
From: Christoph Lameter @ 2007-01-18 18:13 UTC (permalink / raw)
  To: linux-ia64

On Wed, 17 Jan 2007, Andreas Schwab wrote:

> Brent Casavant <bcasavan@sgi.com> writes:
> 
> > Is there some particular reason we need the cast to int on the
> > return path for atomic_cmpxchg()?  It looks to me as if this
> > macro would work equally well with an atomic_t or an atomic64_t.
> 
> No, this is won't work, atomic_cmpxchg is strictly only defined for
> atomic_t.  See commit 4a6dae6d382e9edf3ff440b819e554ed706359bc.

Use cmpxchg instead of atomic_cmpxchg.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: atomic_cmpxchg and 64-bit values
  2007-01-17 20:57 atomic_cmpxchg and 64-bit values Brent Casavant
  2007-01-17 21:36 ` Andreas Schwab
  2007-01-18 18:13 ` Christoph Lameter
@ 2007-01-18 23:43 ` Brent Casavant
  2 siblings, 0 replies; 4+ messages in thread
From: Brent Casavant @ 2007-01-18 23:43 UTC (permalink / raw)
  To: linux-ia64

On Thu, 18 Jan 2007, Christoph Lameter wrote:

> On Wed, 17 Jan 2007, Andreas Schwab wrote:
> 
> > Brent Casavant <bcasavan@sgi.com> writes:
> > 
> > > Is there some particular reason we need the cast to int on the
> > > return path for atomic_cmpxchg()?  It looks to me as if this
> > > macro would work equally well with an atomic_t or an atomic64_t.
> > 
> > No, this is won't work, atomic_cmpxchg is strictly only defined for
> > atomic_t.  See commit 4a6dae6d382e9edf3ff440b819e554ed706359bc.
> 
> Use cmpxchg instead of atomic_cmpxchg.

There was a better solution anyway.  I was trying to stash a pointer
in the atomic as an ownership token, and that of course was fraught with
peril as you need an atomic_t or atomic64_t, depending on platform.

In the end I decided to use a non-pointer unique token rather than
deal with the 32/64-bit hassle, which also sidestepped the whole
question about the (int) cast.

Thanks you both for the responses though.

Brent

-- 
Brent Casavant                          All music is folk music.  I ain't
bcasavan@sgi.com                        never heard a horse sing a song.
Silicon Graphics, Inc.                    -- Louis Armstrong

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-01-18 23:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-17 20:57 atomic_cmpxchg and 64-bit values Brent Casavant
2007-01-17 21:36 ` Andreas Schwab
2007-01-18 18:13 ` Christoph Lameter
2007-01-18 23:43 ` Brent Casavant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox