Re: [RFC][PATCH 5/5] percpu-rwsem: Optimize readers and reduce global impact

From: Linus Torvalds
Date: Fri May 29 2015 - 16:41:20 EST


On Fri, May 29, 2015 at 1:09 PM, Oleg Nesterov <oleg@xxxxxxxxxx> wrote:
>
> Doesn't it need mb() before "state = readers_slow" to ensure
> "release" semantics?

Please don't do any mb() at all. Just do smp_store_release() if
release semantics is what you want.

Basically, strive to avoid "smp_mb()" at all costs. It's insanely
expensive compared to pretty much all other serialization
alternatives.

(And try to make sure to pair it with smp_load_acquire() on the other
side for things to make sense)

Linus
--
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/