From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752832AbcD1Mfv (ORCPT ); Thu, 28 Apr 2016 08:35:51 -0400 Received: from mail-wm0-f65.google.com ([74.125.82.65]:33060 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752316AbcD1Mfs (ORCPT ); Thu, 28 Apr 2016 08:35:48 -0400 Date: Thu, 28 Apr 2016 14:35:45 +0200 From: Michal Hocko To: Vlastimil Babka Cc: Andrew Morton , Linus Torvalds , Johannes Weiner , Mel Gorman , David Rientjes , Tetsuo Handa , Joonsoo Kim , Hillf Danton , linux-mm@kvack.org, LKML Subject: Re: [PATCH 09/14] mm: use compaction feedback for thp backoff conditions Message-ID: <20160428123545.GG31489@dhcp22.suse.cz> References: <1461181647-8039-1-git-send-email-mhocko@kernel.org> <1461181647-8039-10-git-send-email-mhocko@kernel.org> <5721CF7E.9020106@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5721CF7E.9020106@suse.cz> 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 Thu 28-04-16 10:53:18, Vlastimil Babka wrote: > On 04/20/2016 09:47 PM, Michal Hocko wrote: > >From: Michal Hocko > > > >THP requests skip the direct reclaim if the compaction is either > >deferred or contended to reduce stalls which wouldn't help the > >allocation success anyway. These checks are ignoring other potential > >feedback modes which we have available now. > > > >It clearly doesn't make much sense to go and reclaim few pages if the > >previous compaction has failed. > > > >We can also simplify the check by using compaction_withdrawn which > >checks for both COMPACT_CONTENDED and COMPACT_DEFERRED. This check > >is however covering more reasons why the compaction was withdrawn. > >None of them should be a problem for the THP case though. > > > >It is safe to back of if we see COMPACT_SKIPPED because that means > >that compaction_suitable failed and a single round of the reclaim is > >unlikely to make any difference here. We would have to be close to > >the low watermark to reclaim enough and even then there is no guarantee > >that the compaction would make any progress while the direct reclaim > >would have caused the stall. > > > >COMPACT_PARTIAL_SKIPPED is slightly different because that means that we > >have only seen a part of the zone so a retry would make some sense. But > >it would be a compaction retry not a reclaim retry to perform. We are > >not doing that and that might indeed lead to situations where THP fails > >but this should happen only rarely and it would be really hard to > >measure. > > > >Signed-off-by: Michal Hocko > > THP's don't compact by default in page fault path anymore, so we don't need > to restrict them even more. And hopefully we'll replace the > is_thp_gfp_mask() hack with something better soon, so this might be just > extra code churn. But I don't feel strongly enough to nack it. My main point was to simplify the code and get rid of as much compaction specific hacks as possible. We might very well drop this later on but it would be at least less code to grasp through. I do not have any problem with dropping this but I think this shouldn't collide with other patches much so reducing the number of lines is worth it. -- Michal Hocko SUSE Labs