lkml.org 
[lkml]   [2012]   [Apr]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH -mm V2] do_migrate_pages() calls migrate_to_node() even if task is already on a correct node
> diff --git a/mm/mempolicy.c b/mm/mempolicy.c
> index 47296fe..6c189fa 100644
> --- a/mm/mempolicy.c
> +++ b/mm/mempolicy.c
> @@ -1012,6 +1012,16 @@ int do_migrate_pages(struct mm_struct *mm,
> int dest = 0;
>
> for_each_node_mask(s, tmp) {
> +
> + /* IFF there is an equal number of source and
> + * destination nodes, maintain relative node distance
> + * even when source and destination nodes overlap.
> + * However, when the node weight is unequal, never move
> + * memory out of any destination nodes */

Please use

/*
* foo bar
*/

style comment. and this comment only explain how code work but don't explain why.
I hope the comment describe HPC usecase require to migrate if src and dest have the
same weight.

Otherwise looks ok. please feel free to use my ack to your next spin.
Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>



> + if ((nodes_weight(*from_nodes) != nodes_weight(*to_nodes)) &&
> + (node_isset(s, *to_nodes)))
> + continue;
> +




\
 
 \ /
  Last update: 2012-04-24 18:21    [W:0.510 / U:0.084 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site