From: Vernon Mauery <vernux@xxxxxxxxxx> Date: Wed, 18 Mar 2009 14:49:17 -0700 > Yes, the double context switches surely hurt the temporal and > spatial locality of the vanilla codepath, but it also induces a > longer penalty for blocking on a lock -- instead of a nanoseconds > or a few microseconds, the task gets delayed for tens of > microseconds. So really, the -rt kernel has more to fix than > the vanilla kernel in this case, but any improvement in the lock > contention in the vanilla case would be magnified and would cause > dramatic improvements in the -rt kernel. Contention on a shared resource is not implicitly bad. And with upstream spinlocks the cost is relatively low for a case like this where a thread of control goes in and only holds the lock for long enough to unlink a packet from the list and immediately the lock is released. The cost should be, cache line move from cpu-to-cpu, atomic lock, linked list unlink, a store, and a memory barrier. And that's all it is upstream. If the -rt kernel makes this 10 times more expensive, I really don't see why that is an upstream concern at the current point in time. That's the tradeoff, common situations where locks are held by multiple threads with contention, but only for mere cycles, are seemingly a lot more expensive in the -rt kernel. I mean, for example, why doesn't the -rt kernel just spin for a little while like a normal spinlock would instead of always entering that expensive contended code path? It would be a huge win here, but I have yet to see discussion of changes in that area of the -rt kernel to combat these effects. Is it the networking that always has to change for the sake of -rt? :-) -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html