[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/5] mm improvements



Rik van Riel writes:
 > On Wed, 4 Feb 2004, Nick Piggin wrote:
 > > Nick Piggin wrote:
 > > 
 > > > 3/5: vm-lru-info.patch
 > > >     Keep more referenced info in the active list. Should also improve
 > > >     system time in some cases. Helps swapping loads significantly.
 > 
 > I suspect this is one of the more important ones in this
 > batch of patches...

I don't understand how this works. This patch just parks mapped pages on
the "ignored" segment of the active list, where they rest until
reclaim_mapped mode is entered.

This only makes a difference for the pages that were page_referenced():

1. they are moved to the ignored segment rather than to the head of the
active list.

2. their referenced bit is not cleared

Now, as "ignored" segment is not scanned in !reclaim_mode, (2) would
only make a difference when VM rapidly oscillates between reclaim_mapped
and !reclaim_mapped, because after a long period of !reclaim_mapped
operation preserved referenced bit on a page only means "this page has
been referenced in the past, but not necessary recently".

And if (1) affects performance significantly, that something rotten in
the idea of treating mapped pages preferentially by the replacement, and
the same effect can be achieved by simply increasing vm_swappiness.

Nick, can you test what will be an effect of doing something like

	while (!list_empty(&l_hold)) {
		page = lru_to_page(&l_hold);
		list_del(&page->lru);
		if (page_mapped(page)) {
			int referenced;

			referenced = page_referenced(page);
			if (!reclaim_mapped) {
				list_add(&page->lru, &l_ignore);
				continue;
			}
			pte_chain_lock(page);
			if (page_mapped(page) && referenced) {
				pte_chain_unlock(page);
				list_add(&page->lru, &l_active);
				continue;
			}
			pte_chain_unlock(page);
		}
		...

i.e., by cleaning the referenced bit before moving page to the l_ignore?

 > 

Nikita.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>