On Wed, Jul 03, 2013 at 03:21:39PM +0100, Mel Gorman wrote: > @@ -1587,10 +1588,11 @@ int migrate_misplaced_page(struct page *page, int node) > LIST_HEAD(migratepages); > > /* > + * Don't migrate file pages that are mapped in multiple processes > + * with execute permissions as they are probably shared libraries. > */ > + if (page_mapcount(page) != 1 && page_is_file_cache(page) && > + (vma->vm_flags & VM_EXEC)) > goto out; So we will migrate DSOs that are mapped but once. That's fair enough I suppose. -- 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>