mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH][RFC] evict streaming IO cache first
@ 2008-07-15 20:09 Rik van Riel
  2008-07-15 20:48 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Rik van Riel @ 2008-07-15 20:09 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, Lee Schermerhorn, KOSAKI Motohiro

This patch still needs some testing under various workloads
on different hardware - the approach should work but the
threshold may need tweaking.


When there is a lot of streaming IO going on, we do not want
to scan or evict pages from the working set.  The old VM used
to skip any mapped page, but still evict indirect blocks and
other data that is useful to cache.

This patch adds logic to skip scanning the anon lists and
the active file list if most of the file pages are on the
inactive file list (where streaming IO pages live), while
at the lowest scanning priority.

If the system is not doing a lot of streaming IO, eg. the
system is running a database workload, then more often used
file pages will be on the active file list and this logic
is automatically disabled.

Signed-off-by: Rik van Riel <riel@redhat.com>
---
 include/linux/mmzone.h |    1 +
 mm/vmscan.c            |   18 ++++++++++++++++--
 2 files changed, 17 insertions(+), 2 deletions(-)

Index: linux-2.6.26-rc8-mm1/include/linux/mmzone.h
===================================================================
--- linux-2.6.26-rc8-mm1.orig/include/linux/mmzone.h	2008-07-07 15:41:32.000000000 -0400
+++ linux-2.6.26-rc8-mm1/include/linux/mmzone.h	2008-07-15 14:58:50.000000000 -0400
@@ -453,6 +453,7 @@ static inline int zone_is_oom_locked(con
  * queues ("queue_length >> 12") during an aging round.
  */
 #define DEF_PRIORITY 12
+#define PRIO_CACHE_ONLY DEF_PRIORITY+1
 
 /* Maximum number of zones on a zonelist */
 #define MAX_ZONES_PER_ZONELIST (MAX_NUMNODES * MAX_NR_ZONES)
Index: linux-2.6.26-rc8-mm1/mm/vmscan.c
===================================================================
--- linux-2.6.26-rc8-mm1.orig/mm/vmscan.c	2008-07-07 15:41:33.000000000 -0400
+++ linux-2.6.26-rc8-mm1/mm/vmscan.c	2008-07-15 15:10:05.000000000 -0400
@@ -1481,6 +1481,20 @@ static unsigned long shrink_zone(int pri
 		}
 	}
 
+	/*
+	 * If there is a lot of sequential IO going on, most of the
+	 * file pages will be on the inactive file list.  We start
+	 * out by reclaiming those pages, without putting pressure on
+	 * the working set.  We only do this if the bulk of the file pages
+	 * are not in the working set (on the active file list).
+	 */
+	if (priority == PRIO_CACHE_ONLY &&
+			(nr[LRU_INACTIVE_FILE] > nr[LRU_ACTIVE_FILE]))
+		for_each_evictable_lru(l)
+			/* Scan only the inactive_file list. */
+			if (l != LRU_INACTIVE_FILE)
+				nr[l] = 0;
+
 	while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
 					nr[LRU_INACTIVE_FILE]) {
 		for_each_evictable_lru(l) {
@@ -1609,7 +1623,7 @@ static unsigned long do_try_to_free_page
 		}
 	}
 
-	for (priority = DEF_PRIORITY; priority >= 0; priority--) {
+	for (priority = PRIO_CACHE_ONLY; priority >= 0; priority--) {
 		sc->nr_scanned = 0;
 		if (!priority)
 			disable_swap_token();
@@ -1771,7 +1785,7 @@ loop_again:
 	for (i = 0; i < pgdat->nr_zones; i++)
 		temp_priority[i] = DEF_PRIORITY;
 
-	for (priority = DEF_PRIORITY; priority >= 0; priority--) {
+	for (priority = PRIO_CACHE_ONLY; priority >= 0; priority--) {
 		int end_zone = 0;	/* Inclusive.  0 = ZONE_DMA */
 		unsigned long lru_pages = 0;
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][RFC] evict streaming IO cache first
  2008-07-15 20:09 [PATCH][RFC] evict streaming IO cache first Rik van Riel
@ 2008-07-15 20:48 ` Andrew Morton
  2008-07-15 21:52   ` Rik van Riel
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2008-07-15 20:48 UTC (permalink / raw)
  To: Rik van Riel; +Cc: linux-kernel, Lee.Schermerhorn, kosaki.motohiro

On Tue, 15 Jul 2008 16:09:48 -0400
Rik van Riel <riel@redhat.com> wrote:

> This patch still needs some testing under various workloads
> on different hardware - the approach should work but the
> threshold may need tweaking.
> 

More than "some"!

> 
> When there is a lot of streaming IO going on, we do not want
> to scan or evict pages from the working set.  The old VM used
> to skip any mapped page, but still evict indirect blocks and
> other data that is useful to cache.

I'd be surprised if indirect blocks are getting kicked - they tend to
be awfully sticky due to frequent touch_buffer()s or equivalent.

inode blocks tend to be pretty sticky too - this is affected a lot by
whether or not atime updates are enabled.

directory blocks might be less sticky, but that might be what we want
to happen.

> This patch adds logic to skip scanning the anon lists and
> the active file list if most of the file pages are on the
> inactive file list (where streaming IO pages live), while
> at the lowest scanning priority.
> 
> If the system is not doing a lot of streaming IO, eg. the
> system is running a database workload, then more often used
> file pages will be on the active file list and this logic
> is automatically disabled.
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][RFC] evict streaming IO cache first
  2008-07-15 20:48 ` Andrew Morton
@ 2008-07-15 21:52   ` Rik van Riel
  0 siblings, 0 replies; 3+ messages in thread
From: Rik van Riel @ 2008-07-15 21:52 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Lee.Schermerhorn, kosaki.motohiro, lwoodman

On Tue, 15 Jul 2008 13:48:48 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:
> On Tue, 15 Jul 2008 16:09:48 -0400
> Rik van Riel <riel@redhat.com> wrote:
> 
> > This patch still needs some testing under various workloads
> > on different hardware - the approach should work but the
> > threshold may need tweaking.
> 
> More than "some"!

Agreed.  In my initial testing this patch seems to bring the
behaviour of the kernel closer to the behaviour the old VM
had, but it certainly needs lots and lots of testing!

> > When there is a lot of streaming IO going on, we do not want
> > to scan or evict pages from the working set.  The old VM used
> > to skip any mapped page, but still evict indirect blocks and
> > other data that is useful to cache.
> 
> I'd be surprised if indirect blocks are getting kicked - they tend to
> be awfully sticky due to frequent touch_buffer()s or equivalent.

If you rewrite a large enough file, they get kicked.  This
has become noticable some time between 2.6.9 and 2.6.18, but
I don't think we can point to any particular changeset that
caused it - and even if we do, chances are it does more good
than harm :)

-- 
All Rights Reversed

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-15 21:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-15 20:09 [PATCH][RFC] evict streaming IO cache first Rik van Riel
2008-07-15 20:48 ` Andrew Morton
2008-07-15 21:52   ` Rik van Riel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome