On Mon 18-05-15 15:49:51, Tejun Heo wrote: > If move_charge flag is set, memcg tries to move memory charges to the > destnation css. The current implementation migrates memory whenever > any thread of a process is migrated making the behavior somewhat > arbitrary. This is not true. We have: mm = get_task_mm(p); if (!mm) return 0; /* We move charges only when we move a owner of the mm */ if (mm->owner == p) { So we are ignoring threads which are not owner of the mm struct and that should be the thread group leader AFAICS. mm_update_next_owner is rather complex (maybe too much and it would deserve some attention) so there might really be some corner cases but the whole memcg code relies on mm->owner rather than thread group leader so I would keep the same logic here. > Let's tie memory operations to the threadgroup leader so > that memory is migrated only when the leader is migrated. This would lead to another strange behavior when the group leader is not owner (if that is possible at all) and the memory wouldn't get migrated at all. I am trying to wrap my head around mm_update_next_owner and maybe we can change it to use the thread group leader but this needs more thinking... > While this is a behavior change, given the inherent fuziness, this > change is not too likely to be noticed and allows us to clearly define > who owns the memory (always the leader) and helps the planned atomic > multi-process migration. > > Signed-off-by: Tejun Heo <tj@xxxxxxxxxx> > Cc: Johannes Weiner <hannes@xxxxxxxxxxx> > Cc: Michal Hocko <mhocko@xxxxxxx> > --- > mm/memcontrol.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > index b1b834d..74fcea3 100644 > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -5014,6 +5014,9 @@ static int mem_cgroup_can_attach(struct cgroup_subsys_state *css, > return 0; > > p = cgroup_taskset_first(tset); > + if (!thread_group_leader(p)) > + return 0; > + > from = mem_cgroup_from_task(p); > > VM_BUG_ON(from == memcg); > -- > 2.4.0 > -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>