From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754460AbbJUOdn (ORCPT ); Wed, 21 Oct 2015 10:33:43 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:34026 "EHLO mail-lb0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750844AbbJUOdl (ORCPT ); Wed, 21 Oct 2015 10:33:41 -0400 Date: Wed, 21 Oct 2015 16:33:38 +0200 From: Michal Hocko To: Christoph Lameter Cc: Tetsuo Handa , linux-mm@kvack.org, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, rientjes@google.com, oleg@redhat.com, kwalker@redhat.com, akpm@linux-foundation.org, hannes@cmpxchg.org, vdavydov@parallels.com, skozina@redhat.com, mgorman@suse.de, riel@redhat.com Subject: Re: [PATCH] mm,vmscan: Use accurate values for zone_reclaimable() checks Message-ID: <20151021143337.GD8805@dhcp22.suse.cz> References: <201510212126.JIF90648.HOOFJVFQLMStOF@I-love.SAKURA.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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 On Wed 21-10-15 09:22:40, Christoph Lameter wrote: > On Wed, 21 Oct 2015, Tetsuo Handa wrote: > > > However, if a workqueue which is processed before vmstat_update > > workqueue is processed got stuck inside memory allocation request, > > values in vm_stat_diff[] cannot be merged into vm_stat[]. As a result, > > zone_reclaimable() continues using outdated vm_stat[] values and the > > task which is doing direct reclaim path thinks that there are reclaimable > > pages and therefore continues looping. The consequence is a silent > > livelock (hang up without any kernel messages) because the OOM killer > > will not be invoked. > > The diffs will be merged if they reach a certain threshold regardless. You > can decrease that threshhold. See calculate_pressure_threshhold(). The thing is that they will not reach the threshold. The LRUs in this particular case are empty so there is nothing scanned so NR_PAGES_SCANNED doesn't increase. > Why is the merging not occurring if a process gets stuck? Workrequests are > not blocked by a process being stuck doing memory allocation or reclaim. Because all the WQ workers are stuck somewhere, maybe in the memory allocation which cannot make any progress and the vmstat update work is queued behind them. At least this is my current understanding. -- Michal Hocko SUSE Labs