Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1424924 > unrolled thread

Re: [PATCH 21/27] mm, vmscan: Only wakeup kswapd once per node for the requested classzone

Started byVlastimil Babka <vbabka@suse.cz>
First post2016-06-17 12:50 +0200
Last post2016-06-17 14:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 21/27] mm, vmscan: Only wakeup kswapd once per node for  the requested classzone Vlastimil Babka <vbabka@suse.cz> - 2016-06-17 12:50 +0200
    Re: [PATCH 21/27] mm, vmscan: Only wakeup kswapd once per node for  the requested classzone Mel Gorman <mgorman@techsingularity.net> - 2016-06-17 14:10 +0200

#1424924 — Re: [PATCH 21/27] mm, vmscan: Only wakeup kswapd once per node for the requested classzone

FromVlastimil Babka <vbabka@suse.cz>
Date2016-06-17 12:50 +0200
SubjectRe: [PATCH 21/27] mm, vmscan: Only wakeup kswapd once per node for the requested classzone
Message-ID<rKZvz-5q4-5@gated-at.bofh.it>
On 06/09/2016 08:04 PM, Mel Gorman wrote:
> kswapd is woken when zones are below the low watermark but the wakeup
> decision is not taking the classzone into account.  Now that reclaim is
> node-based, it is only required to wake kswapd once per node and only if
> all zones are unbalanced for the requested classzone.
>
> Note that one node might be checked multiple times but there is no cheap
> way of tracking what nodes have already been visited for zoneslists that
> be ordered by either zone or node.

Wouldn't it be possible to optimize for node order as you did in direct reclaim? 
Do the zone_balanced checks when going through zonelist, and once node changes 
in iteration, wake up if no eligible zones visited so far were balanced.

> Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
> ---
>  mm/vmscan.c | 13 +++++++++++--
>  1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/mm/vmscan.c b/mm/vmscan.c
> index 7a2d69612231..b9cff9047ac0 100644
> --- a/mm/vmscan.c
> +++ b/mm/vmscan.c
> @@ -3389,6 +3389,7 @@ static int kswapd(void *p)
>  void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx)
>  {
>  	pg_data_t *pgdat;
> +	int z;
>
>  	if (!populated_zone(zone))
>  		return;
> @@ -3402,8 +3403,16 @@ void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx)
>  	pgdat->kswapd_order = max(pgdat->kswapd_order, order);
>  	if (!waitqueue_active(&pgdat->kswapd_wait))
>  		return;
> -	if (zone_balanced(zone, order, 0))
> -		return;
> +
> +	/* Only wake kswapd if all zones are unbalanced */
> +	for (z = 0; z <= classzone_idx; z++) {
> +		zone = pgdat->node_zones + z;
> +		if (!populated_zone(zone))
> +			continue;
> +
> +		if (zone_balanced(zone, order, classzone_idx))
> +			return;
> +	}
>
>  	trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order);
>  	wake_up_interruptible(&pgdat->kswapd_wait);
>

[toc] | [next] | [standalone]


#1424996

FromMel Gorman <mgorman@techsingularity.net>
Date2016-06-17 14:10 +0200
Message-ID<rL0L0-6mx-27@gated-at.bofh.it>
In reply to#1424924
On Fri, Jun 17, 2016 at 12:46:05PM +0200, Vlastimil Babka wrote:
> On 06/09/2016 08:04 PM, Mel Gorman wrote:
> >kswapd is woken when zones are below the low watermark but the wakeup
> >decision is not taking the classzone into account.  Now that reclaim is
> >node-based, it is only required to wake kswapd once per node and only if
> >all zones are unbalanced for the requested classzone.
> >
> >Note that one node might be checked multiple times but there is no cheap
> >way of tracking what nodes have already been visited for zoneslists that
> >be ordered by either zone or node.
> 
> Wouldn't it be possible to optimize for node order as you did in direct
> reclaim? Do the zone_balanced checks when going through zonelist, and once
> node changes in iteration, wake up if no eligible zones visited so far were
> balanced.
> 

Yeah, it is. I'll chuck it in.

-- 
Mel Gorman
SUSE Labs

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web