From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753544AbcDUP44 (ORCPT ); Thu, 21 Apr 2016 11:56:56 -0400 Received: from mail-yw0-f172.google.com ([209.85.161.172]:33481 "EHLO mail-yw0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752875AbcDUP4y (ORCPT ); Thu, 21 Apr 2016 11:56:54 -0400 Date: Thu, 21 Apr 2016 11:56:52 -0400 From: Tejun Heo To: Andrew Morton Cc: Johannes Weiner , Michal Hocko , Petr Mladek , cgroups@vger.kernel.org, Cyril Hrubis , linux-kernel@vger.kernel.org Subject: [PATCH for-4.6-fixes] memcg: remove lru_add_drain_all() invocation from mem_cgroup_move_charge() Message-ID: <20160421155652.GM7822@mtj.duckdns.org> References: <20160413094216.GC5774@pathway.suse.cz> <20160413183309.GG3676@htj.duckdns.org> <20160413192313.GA30260@dhcp22.suse.cz> <20160414175055.GA6794@cmpxchg.org> <20160415191719.GK12583@htj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160415191719.GK12583@htj.duckdns.org> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org mem_cgroup_move_charge() invokes lru_add_drain_all() so that the pvec pages can be moved too. lru_add_drain_all() schedules and flushes work items on system_wq which depends on being able to create new kworkers to make forward progress. Since 1ed1328792ff ("sched, cgroup: replace signal_struct->group_rwsem with a global percpu_rwsem"), a new task can't be created while in the cgroup migration path and the described lru_add_drain_all() invocation can easily lead to a deadlock. Charge moving is best-effort and whether the pvec pages are migrated or not doesn't really matter. Don't call it during charge moving. Eventually, we want to move the actual charge moving outside the migration path. Signed-off-by: Tejun Heo Debugged-and-tested-by: Petr Mladek Reported-by: Cyril Hrubis Reported-by: Johannes Weiner Suggested-by: Michal Hocko Acked-by: Michal Hocko Fixes: 1ed1328792ff ("sched, cgroup: replace signal_struct->group_rwsem with a global percpu_rwsem") Cc: stable@vger.kernel.org # v4.4+ --- Hello, Andrew. This fixes an easily triggered deadlock when using memcg charge moving. While the issue requires more invasive changes, which are being worked on, to plug completely, this works around the immediate issue. Can you please route this through -mm? Thanks. mm/memcontrol.c | 1 - 1 file changed, 1 deletion(-) diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 36db05f..56060c7 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -4859,7 +4859,6 @@ static void mem_cgroup_move_charge(struct mm_struct *mm) .mm = mm, }; - lru_add_drain_all(); /* * Signal lock_page_memcg() to take the memcg's move_lock * while we're moving its pages to another memcg. Then wait