Re: [PATCH 09/31] mm, vmscan: by default have direct reclaim only shrink once per node

2016-07-07 Thread Mel Gorman
On Thu, Jul 07, 2016 at 10:43:22AM +0900, Joonsoo Kim wrote: > > @@ -2600,6 +2593,16 @@ static void shrink_zones(struct zonelist *zonelist, > > struct scan_control *sc) > > classzone_idx--; > > > > /* > > +* Shrink each node in the zonelist once. If th

Re: [PATCH 09/31] mm, vmscan: by default have direct reclaim only shrink once per node

2016-07-06 Thread Joonsoo Kim
On Fri, Jul 01, 2016 at 09:01:17PM +0100, Mel Gorman wrote: > Direct reclaim iterates over all zones in the zonelist and shrinking them > but this is in conflict with node-based reclaim. In the default case, > only shrink once per node. > > Signed-off-by: Mel Gorman > Acked-by: Johannes Weiner

[PATCH 09/31] mm, vmscan: by default have direct reclaim only shrink once per node

2016-07-01 Thread Mel Gorman
Direct reclaim iterates over all zones in the zonelist and shrinking them but this is in conflict with node-based reclaim. In the default case, only shrink once per node. Signed-off-by: Mel Gorman Acked-by: Johannes Weiner Acked-by: Vlastimil Babka --- mm/vmscan.c | 19 +++ 1

[PATCH 09/31] mm, vmscan: by default have direct reclaim only shrink once per node

2016-07-01 Thread Mel Gorman
Direct reclaim iterates over all zones in the zonelist and shrinking them but this is in conflict with node-based reclaim. In the default case, only shrink once per node. Link: http://lkml.kernel.org/r/1466518566-30034-10-git-send-email-mgor...@techsingularity.net Signed-off-by: Mel Gorman Acke