On Thu, Oct 10, 2013 at 11:34 AM, Peter Zijlstra <pet...@infradead.org> wrote: > > But my point is that even though there aren't many of these today; with > the growing number of cpus in 'commodity' hardware you want to move away > from using preempt_disable() as hotplug lock.
Umm. Wasn't this pretty much the argument for the COMPLETELY F*CKED UP change to make the vma locking use a semaphore? The whole "it's more convenient to use sleeping locks" argument is PURE AND UTTER SHIT when it comes to really core code. We are *much* better off saying "this is core, we care so deeply about performance that you had better use your brain before you do this". Seriously. Your argument is bad, but more importantly, it is *dangerously* bad. It's crap that results in bad code: and the bad code is almost impossible to fix up later, because once you encourage people to do the easy thing, they'll do so. Yes, preempt_disable() is harder to use than sleeping locks. You need to do pre-allocation etc. But it is much *much* more efficient. And in the kernel, we care. We have the resources. Plus, we can also say "if you can't handle it, don't do it". We don't need new features so badly that we are willing to screw up core code. As to your kernel/events/core.c example, things like that are generally pretty easy to fix. The good thing about preemption-disable is: - it's pretty easily debuggable, because you do get big warnings of "you screwed up exactly _here_" - it's so cheap that especially when it comes to things that can sleep, it's perfectly ok to drop the preemption count, do the sleeping thing, re-disable preemption and then check if we still needed the data. Oh, and I'm sure there are several users that currently depend on being able to sleep over get_online_cpu's. But I'm pretty sure it's "several", not "hundreds", and I think we could fix them up. Linus -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/