* Esben Nielsen <[EMAIL PROTECTED]> wrote:

> +static inline void rcu_read_lock(void)
> +{    
> +     preempt_disable(); 
> +     __get_cpu_var(rcu_data).active_readers++;
> +     preempt_enable();
> +}

this is buggy. Nothing guarantees that we'll do the rcu_read_unlock() on
the same CPU, and hence ->active_readers can get out of sync.

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

Reply via email to