Re: [patch] Re: using long instead of atomic_t when only set/readis required

From: Mark Lord
Date: Thu Mar 06 2008 - 10:58:44 EST


Linus Torvalds wrote:

On Mon, 3 Mar 2008, Alan Stern wrote:
Consider a routine like the following:

static task_struct *the_task;

void store_task(void)
{
the_task = current;
}

Is it possible to say whether readers examining "the_task" are guaranteed to see a coherent value?

Yes, we do depend on this. All the RCU stuff (and in general *anything* that depends on memory ordering as opposed to full locking, and we have quite a lot of it) is very fundamentally dependent on the fact that things like pointers get read and written atomically.
..

But also consider something like this:

void store_task(void)
{
*the_task = current;
}

In this case, there is no guarantee that the assignment
can be done atomically on all CPU types. Some RISC archs
(eg. MIPS R2xxx) require an (interruptible) instruction pair
to store values to a potentially unaligned address.

This was a BIG issue on a different system that I once worked on.

Cheers
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/