All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ray Bryant <raybry@sgi.com>
To: Nick Piggin <piggin@cyberone.com.au>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>,
	William Lee Irwin III <wli@holomorphy.com>,
	Marcelo Tosatti <marcelo.tosatti@cyclades.com>,
	Con Kolivas <kernel@kolivas.org>, Andrew Morton <akpm@osdl.org>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	riel@redhat.com
Subject: Re: swapping and the value of /proc/sys/vm/swappiness
Date: Tue, 28 Sep 2004 23:23:11 -0500	[thread overview]
Message-ID: <415A38AF.7000807@sgi.com> (raw)
In-Reply-To: <415A0378.9030007@cyberone.com.au>

Nick Piggin wrote:
> 
> 
> Nick Piggin wrote:
> 
>>
>> Thanks Ray. From looking over your old results, it appears that 
>> -kswapdfix
>> probably has the nicest swappiness ramp, which is probably to be 
>> expected,
>> as the problem that is being fixed did exist in all other kernels you 
>> tested,
>> but the later ones just had other aggrivating changes.
>>
>> The swappiness=60 weirdness might just be some obscure interaction 
>> with the
>> workload. If that is the case, it is probably not too important, 
>> however it
>> could be due to a possible oversight in my patch....
>>
> 
> Here is a patch on top of the last one - if you can give it a test
> some time, that would be great.
> 
> Thanks
> Nick
> 
> 

Nick,

I'll put it on my list of TODO's.  FYI, a full test like the ones I have been
running, at 6 swappiness levels, takes around 5 hours of machine time, so it
sometimes we have to wait for a slot that big to open up.  :-)

Ray
> ------------------------------------------------------------------------
> 
> 
> 
> 
> ---
> 
>  linux-2.6-npiggin/mm/vmscan.c |    9 +++++++--
>  1 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff -puN mm/vmscan.c~vm-no-wild-kswapd2 mm/vmscan.c
> --- linux-2.6/mm/vmscan.c~vm-no-wild-kswapd2	2004-09-29 10:30:49.000000000 +1000
> +++ linux-2.6-npiggin/mm/vmscan.c	2004-09-29 10:34:00.000000000 +1000
> @@ -991,6 +991,7 @@ out:
>  static int balance_pgdat(pg_data_t *pgdat, int nr_pages)
>  {
>  	int to_free = nr_pages;
> +	int all_zones_ok;
>  	int priority;
>  	int i;
>  	int total_scanned, total_reclaimed;
> @@ -1013,10 +1014,11 @@ loop_again:
>  	}
>  
>  	for (priority = DEF_PRIORITY; priority >= 0; priority--) {
> -		int all_zones_ok = 1;
>  		int end_zone = 0;	/* Inclusive.  0 = ZONE_DMA */
>  		unsigned long lru_pages = 0;
>  
> +		all_zones_ok = 1;
> +
>  		if (nr_pages == 0) {
>  			/*
>  			 * Scan in the highmem->dma direction for the highest
> @@ -1106,7 +1108,7 @@ scan:
>  		 * on zone->*_priority.
>  		 */
>  		if (total_reclaimed >= SWAP_CLUSTER_MAX)
> -			goto loop_again;
> +			break;
>  	}
>  out:
>  	for (i = 0; i < pgdat->nr_zones; i++) {
> @@ -1114,6 +1116,9 @@ out:
>  
>  		zone->prev_priority = zone->temp_priority;
>  	}
> +	if (!all_zones_ok)
> +		goto loop_again;
> +
>  	return total_reclaimed;
>  }
>  
> 
> _


-- 
Best Regards,
Ray
-----------------------------------------------
                   Ray Bryant
512-453-9679 (work)         512-507-7807 (cell)
raybry@sgi.com             raybry@austin.rr.com
The box said: "Requires Windows 98 or better",
            so I installed Linux.
-----------------------------------------------


WARNING: multiple messages have this Message-ID (diff)
From: Ray Bryant <raybry@sgi.com>
To: Nick Piggin <piggin@cyberone.com.au>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>,
	William Lee Irwin III <wli@holomorphy.com>,
	Marcelo Tosatti <marcelo.tosatti@cyclades.com>,
	Con Kolivas <kernel@kolivas.org>, Andrew Morton <akpm@osdl.org>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	riel@redhat.com
Subject: Re: swapping and the value of /proc/sys/vm/swappiness
Date: Tue, 28 Sep 2004 23:23:11 -0500	[thread overview]
Message-ID: <415A38AF.7000807@sgi.com> (raw)
In-Reply-To: <415A0378.9030007@cyberone.com.au>

Nick Piggin wrote:
> 
> 
> Nick Piggin wrote:
> 
>>
>> Thanks Ray. From looking over your old results, it appears that 
>> -kswapdfix
>> probably has the nicest swappiness ramp, which is probably to be 
>> expected,
>> as the problem that is being fixed did exist in all other kernels you 
>> tested,
>> but the later ones just had other aggrivating changes.
>>
>> The swappiness=60 weirdness might just be some obscure interaction 
>> with the
>> workload. If that is the case, it is probably not too important, 
>> however it
>> could be due to a possible oversight in my patch....
>>
> 
> Here is a patch on top of the last one - if you can give it a test
> some time, that would be great.
> 
> Thanks
> Nick
> 
> 

Nick,

I'll put it on my list of TODO's.  FYI, a full test like the ones I have been
running, at 6 swappiness levels, takes around 5 hours of machine time, so it
sometimes we have to wait for a slot that big to open up.  :-)

Ray
> ------------------------------------------------------------------------
> 
> 
> 
> 
> ---
> 
>  linux-2.6-npiggin/mm/vmscan.c |    9 +++++++--
>  1 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff -puN mm/vmscan.c~vm-no-wild-kswapd2 mm/vmscan.c
> --- linux-2.6/mm/vmscan.c~vm-no-wild-kswapd2	2004-09-29 10:30:49.000000000 +1000
> +++ linux-2.6-npiggin/mm/vmscan.c	2004-09-29 10:34:00.000000000 +1000
> @@ -991,6 +991,7 @@ out:
>  static int balance_pgdat(pg_data_t *pgdat, int nr_pages)
>  {
>  	int to_free = nr_pages;
> +	int all_zones_ok;
>  	int priority;
>  	int i;
>  	int total_scanned, total_reclaimed;
> @@ -1013,10 +1014,11 @@ loop_again:
>  	}
>  
>  	for (priority = DEF_PRIORITY; priority >= 0; priority--) {
> -		int all_zones_ok = 1;
>  		int end_zone = 0;	/* Inclusive.  0 = ZONE_DMA */
>  		unsigned long lru_pages = 0;
>  
> +		all_zones_ok = 1;
> +
>  		if (nr_pages == 0) {
>  			/*
>  			 * Scan in the highmem->dma direction for the highest
> @@ -1106,7 +1108,7 @@ scan:
>  		 * on zone->*_priority.
>  		 */
>  		if (total_reclaimed >= SWAP_CLUSTER_MAX)
> -			goto loop_again;
> +			break;
>  	}
>  out:
>  	for (i = 0; i < pgdat->nr_zones; i++) {
> @@ -1114,6 +1116,9 @@ out:
>  
>  		zone->prev_priority = zone->temp_priority;
>  	}
> +	if (!all_zones_ok)
> +		goto loop_again;
> +
>  	return total_reclaimed;
>  }
>  
> 
> _


-- 
Best Regards,
Ray
-----------------------------------------------
                   Ray Bryant
512-453-9679 (work)         512-507-7807 (cell)
raybry@sgi.com             raybry@austin.rr.com
The box said: "Requires Windows 98 or better",
            so I installed Linux.
-----------------------------------------------

--
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>

  reply	other threads:[~2004-09-29  4:19 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-09-06 19:11 swapping and the value of /proc/sys/vm/swappiness Ray Bryant
2004-09-06 20:10 ` Andrew Morton
2004-09-06 20:10   ` Andrew Morton
2004-09-06 21:22   ` Ray Bryant
2004-09-06 21:22     ` Ray Bryant
2004-09-06 21:36     ` Andrew Morton
2004-09-06 21:36       ` Andrew Morton
2004-09-06 22:37     ` William Lee Irwin III
2004-09-06 22:37       ` William Lee Irwin III
2004-09-06 23:51       ` Nick Piggin
2004-09-06 23:51         ` Nick Piggin
2004-09-07  0:31         ` Ray Bryant
2004-09-07  0:31           ` Ray Bryant
2004-09-06 22:48 ` William Lee Irwin III
2004-09-06 22:48   ` William Lee Irwin III
2004-09-06 23:09 ` Con Kolivas
2004-09-06 23:09   ` Con Kolivas
2004-09-06 23:27   ` Andrew Morton
2004-09-06 23:27     ` Andrew Morton
2004-09-06 23:34     ` Con Kolivas
2004-09-06 23:34       ` Con Kolivas
2004-09-07  0:03       ` Marcelo Tosatti
2004-09-07  0:03         ` Marcelo Tosatti
2004-09-07  1:34         ` Con Kolivas
2004-09-07  1:34           ` Con Kolivas
2004-09-07 10:38         ` Nick Piggin
2004-09-07 10:38           ` Nick Piggin
2004-09-07 10:56           ` Con Kolivas
2004-09-08 16:45             ` Marcelo Tosatti
2004-09-08 16:45               ` Marcelo Tosatti
2004-09-09  1:12               ` Con Kolivas
2004-09-07 17:03           ` Ray Bryant
2004-09-07 17:03             ` Ray Bryant
2004-09-07 21:20         ` Marcelo Tosatti
2004-09-07 21:20           ` Marcelo Tosatti
2004-09-08  2:18           ` Marcelo Tosatti
2004-09-08  2:18             ` Marcelo Tosatti
2004-09-08 14:20           ` Ray Bryant
2004-09-08 16:54             ` Marcelo Tosatti
2004-09-08 16:54               ` Marcelo Tosatti
2004-09-08 19:35               ` Ray Bryant
2004-09-08 19:35                 ` Ray Bryant
2004-09-08 19:30                 ` Marcelo Tosatti
2004-09-08 19:30                   ` Marcelo Tosatti
2004-09-09  3:06                   ` Ray Bryant
2004-09-09  3:06                     ` Ray Bryant
2004-09-09  2:14                     ` Marcelo Tosatti
2004-09-09  2:14                       ` Marcelo Tosatti
2004-09-09 14:21                       ` Ray Bryant
2004-09-09 14:21                         ` Ray Bryant
2004-09-09  3:09                     ` William Lee Irwin III
2004-09-09  3:09                       ` William Lee Irwin III
2004-09-09 14:16                       ` Ray Bryant
2004-09-09 17:23                         ` William Lee Irwin III
2004-09-09 17:23                           ` William Lee Irwin III
2004-09-28  1:54                       ` Ray Bryant
2004-09-28  3:36                         ` Nick Piggin
2004-09-28  3:36                           ` Nick Piggin
2004-09-29  0:36                           ` Nick Piggin
2004-09-29  4:23                             ` Ray Bryant [this message]
2004-09-29  4:23                               ` Ray Bryant
2004-09-30 17:15                             ` Ray Bryant
2004-09-30 17:15                               ` Ray Bryant
2004-09-08 17:31             ` Martin J. Bligh
2004-09-08 17:31               ` Martin J. Bligh
2004-09-08 18:04               ` Rik van Riel
2004-09-08 18:04                 ` Rik van Riel
2004-09-08 19:50                 ` Diego Calleja
2004-09-08 19:50                   ` Diego Calleja
2004-09-08 21:10                   ` Martin J. Bligh
2004-09-08 21:10                     ` Martin J. Bligh
2004-09-08 21:55                     ` Diego Calleja
2004-09-08 21:55                       ` Diego Calleja
2004-09-08 22:20                       ` Martin J. Bligh
2004-09-08 22:20                         ` Martin J. Bligh
2004-09-08 23:22                         ` Rik van Riel
2004-09-08 23:22                           ` Rik van Riel
2004-09-09 16:26                         ` Bill Davidsen
2004-09-08 22:28                     ` Alan Cox
2004-09-08 22:28                       ` Alan Cox
2004-09-08 23:42                       ` Martin J. Bligh
2004-09-08 23:42                         ` Martin J. Bligh
2004-09-08 19:54               ` Ray Bryant
2004-09-08 19:54                 ` Ray Bryant
2004-09-08 15:19           ` Ray Bryant
2004-09-08 15:19             ` Ray Bryant
2004-09-14 18:31     ` Florin Andrei
2004-09-14 20:15       ` Marcelo Tosatti
2004-09-14 22:53         ` Con Kolivas
2004-09-14 21:41           ` Marcelo Tosatti
2004-09-15  0:22             ` Con Kolivas
2004-09-16 18:50               ` Marcelo Tosatti
2004-09-17  0:22                 ` Con Kolivas
2004-09-15 16:54         ` Florin Andrei

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=415A38AF.7000807@sgi.com \
    --to=raybry@sgi.com \
    --cc=akpm@osdl.org \
    --cc=kernel@kolivas.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=marcelo.tosatti@cyclades.com \
    --cc=nickpiggin@yahoo.com.au \
    --cc=piggin@cyberone.com.au \
    --cc=riel@redhat.com \
    --cc=wli@holomorphy.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.