Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754118AbbFCNmR (ORCPT ); Wed, 3 Jun 2015 09:42:17 -0400 Received: from cantor2.suse.de ([195.135.220.15]:50689 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753512AbbFCNmG (ORCPT ); Wed, 3 Jun 2015 09:42:06 -0400 Date: Wed, 3 Jun 2015 15:42:04 +0200 From: Michal Hocko To: Tetsuo Handa Cc: akpm@linux-foundation.org, linux-mm@kvack.org, david@fromorbit.com, neilb@suse.de, hannes@cmpxchg.org, viro@zeniv.linux.org.uk, mgorman@suse.de, riel@redhat.com, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [RFC 0/2] mapping_gfp_mask from the page fault path Message-ID: <20150603134204.GC16201@dhcp22.suse.cz> References: <1433163603-13229-1-git-send-email-mhocko@suse.cz> <20150602132241.26fbbc98be71920da8485b73@linux-foundation.org> <201506032204.GAI56216.OOSVJHFLOQtMFF@I-love.SAKURA.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201506032204.GAI56216.OOSVJHFLOQtMFF@I-love.SAKURA.ne.jp> 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: 1284 Lines: 34 On Wed 03-06-15 22:04:22, Tetsuo Handa wrote: [...] > Michal Hocko wrote: > > Initialize the default to (mapping_gfp_mask | GFP_IOFS) because this > > should be safe from the page fault path normally. Why do we care > > about mapping_gfp_mask at all then? Because this doesn't hold only > > reclaim protection flags but it also might contain zone and movability > > restrictions (GFP_DMA32, __GFP_MOVABLE and others) so we have to respect > > those. > > [2/2] says that mapping_gfp_mask(mapping) might contain bits which are not > in !GFP_KERNEL. If we do > > GFP_KERNEL & mapping_gfp_mask(mapping) > > we will drop such bits and will cause problems. No we won't. > Thus, "GFP_KERNEL" > in patch [1/1] should be replaced with "mapping_gfp_mask(mapping)" than > "GFP_KERNEL & mapping_gfp_mask(mapping)" ? Those gfp_masks are for LRU handling and that is GFP_KERNEL by default. We only need to drop those which are not compatible with mapping_gfp_mask. We do not care about __GFP_MOVABLE, GFP_DMA32 etc... -- Michal Hocko SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/