Re: [PATCH] Fixes for RCU handling of task_struct

From: Andrew Morton
Date: Sun Nov 06 2005 - 16:54:05 EST


Ingo Molnar <mingo@xxxxxxx> wrote:
>
> ...
>
> RCU signal handling: send signals RCU-read-locked instead of
> tasklist_lock read-locked. This is a scalability improvement on SMP and
> a preemption-latency improvement under PREEMPT_RCU.
>
> Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxx>
> Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
>
> ...
> +static inline int get_task_struct_rcu(struct task_struct *t)
> +{
> + int oldusage;
> +
> + do {
> + oldusage = atomic_read(&t->usage);
> + if (oldusage == 0) {
> + return 0;
> + }
> + } while (cmpxchg(&t->usage.counter,
> + oldusage, oldusage + 1) != oldusage);
> + return 1;
> +}

arm (at least) does not implement cmpxchg.

I think Nick is working on patches which implement cmpxchg on all
architectures?
-
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/