From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932805AbbCROhf (ORCPT ); Wed, 18 Mar 2015 10:37:35 -0400 Received: from cantor2.suse.de ([195.135.220.15]:59117 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932677AbbCROhe (ORCPT ); Wed, 18 Mar 2015 10:37:34 -0400 Date: Wed, 18 Mar 2015 15:37:33 +0100 From: Michal Hocko To: Rik van Riel Cc: Andrew Morton , Al Viro , Johannes Weiner , Mel Gorman , Neil Brown , Tetsuo Handa , Sage Weil , Mark Fasheh , linux-mm@kvack.org, LKML Subject: Re: [PATCH] mm: Use GFP_KERNEL allocation for the page cache in page_cache_read Message-ID: <20150318143733.GI17241@dhcp22.suse.cz> References: <1426687766-518-1-git-send-email-mhocko@suse.cz> <55098C99.9040104@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55098C99.9040104@redhat.com> 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 On Wed 18-03-15 10:32:57, Rik van Riel wrote: > On 03/18/2015 10:09 AM, Michal Hocko wrote: > > > diff --git a/mm/filemap.c b/mm/filemap.c > > index 968cd8e03d2e..26f62ba79f50 100644 > > --- a/mm/filemap.c > > +++ b/mm/filemap.c > > @@ -1752,7 +1752,7 @@ static int page_cache_read(struct file *file, pgoff_t offset) > > int ret; > > > > do { > > - page = page_cache_alloc_cold(mapping); > > + page = __page_cache_alloc(GFP_KERNEL|__GFP_COLD); > > if (!page) > > return -ENOMEM; > > Won't this break on highmem systems, by failing to > allocate the page cache from highmem, where previously > it would? It will! This is broken. I can see inode_init_always now. We need to add GFP_HIGHUSER_MOVABLE here. Thanks for pointing this out! -- Michal Hocko SUSE Labs