On Sun, 30 Sep 2012, Hugh Dickins wrote: > Andrea's point about ksm_migrate_page() is an important one, and I've > answered that against his mail, but here's some other easier points. There's another point that I completely forgot to make once I got down to the details of your patch. Somewhere, I didn't decide exactly where, perhaps near the memcmp_pages() call in unstable_tree_search_insert(), you do need to check that the page "in" the unstable tree still belongs to the NUMAnode of the page we're comparing with. While that is, of course, the NUMAnode of the unstable tree we're searching, the unstable tree places no hold on the pages "in" it (it's actually a tree of rmap_items, not of pages), so they could get migrated to a different NUMAnode (or faulted out and then faulted back in on a different NUMAnode) since the rmap_item was placed in that tree. This is little different from the other instabilities of the unstable tree, it's not a big deal, and gets corrected (usually) next time around; but you do want to check, to avoid promoting such a mismatch into the stable tree. Hugh -- 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>