Re: [RFC] respect the referenced bit of KVM guest pages?

From: Rik van Riel
Date: Wed Aug 05 2009 - 13:21:12 EST


Andrea Arcangeli wrote:
On Wed, Aug 05, 2009 at 10:40:58AM +0800, Wu Fengguang wrote:
*/
- if ((vm_flags & VM_EXEC) && !PageAnon(page)) {
+ if ((vm_flags & VM_EXEC) || PageAnon(page)) {
list_add(&page->lru, &l_active);
continue;
}


Please nuke the whole check and do an unconditional list_add;
continue; there.

That would reinstate the bug that the VM has no pages
available for evicting. There are very good reasons
that only VM_EXEC file pages get moved to the back of
the active list if they were referenced, and nothing
else.

--
All rights reversed.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/