On Fri, Nov 30, 2012 at 11:58 AM, Ingo Molnar <mingo@xxxxxxxxxx> wrote: > > When pushed hard enough via threaded workloads (for example via the > numa02 test) then the upstream page migration code in mm/migration.c > becomes unscalable, resulting in lot of scheduling on the anon vma > mutex and a subsequent drop in performance. Ugh. I wonder if migration really needs that thing to be a mutex? I may be wrong, but the anon_vma lock only protects the actual rmap chains, and migration only ever changes the pte *contents*, not the actual chains of pte's themselves, right? So if this is a migration-specific scalability issue, then it might be possible to solve by making the mutex be a rwsem instead, and have migration only take it for reading. Of course, I'm quite possibly wrong, and the code depends on full mutual exclusion. Just a thought, in case it makes somebody go "Hmm.." Linus -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>