Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754294AbdDGIAY (ORCPT ); Fri, 7 Apr 2017 04:00:24 -0400 Received: from mx2.suse.de ([195.135.220.15]:56658 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752775AbdDGIAQ (ORCPT ); Fri, 7 Apr 2017 04:00:16 -0400 Date: Fri, 7 Apr 2017 10:00:13 +0200 From: Michal Hocko To: David Rientjes Cc: Andrew Morton , Johannes Weiner , Vladimir Davydov , KAMEZAWA Hiroyuki , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [patch] mm, swap_cgroup: reschedule when neeed in swap_cgroup_swapoff() Message-ID: <20170407080012.GA16392@dhcp22.suse.cz> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 957 Lines: 36 On Thu 06-04-17 13:16:24, David Rientjes wrote: > We got need_resched() warnings in swap_cgroup_swapoff() because > swap_cgroup_ctrl[type].length is particularly large. > > Reschedule when needed. > > Signed-off-by: David Rientjes Acked-by: Michal Hocko > --- > mm/swap_cgroup.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/mm/swap_cgroup.c b/mm/swap_cgroup.c > --- a/mm/swap_cgroup.c > +++ b/mm/swap_cgroup.c > @@ -201,6 +201,8 @@ void swap_cgroup_swapoff(int type) > struct page *page = map[i]; > if (page) > __free_page(page); > + if (!(i % SWAP_CLUSTER_MAX)) > + cond_resched(); > } > vfree(map); > } > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org -- Michal Hocko SUSE Labs