From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1163922AbdD0R5H (ORCPT ); Thu, 27 Apr 2017 13:57:07 -0400 Received: from mx2.suse.de ([195.135.220.15]:58170 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1163850AbdD0R47 (ORCPT ); Thu, 27 Apr 2017 13:56:59 -0400 Date: Thu, 27 Apr 2017 19:56:54 +0200 From: Michal Hocko To: Florian Fainelli Cc: linux-arm-kernel@lists.infradead.org, Russell King , Catalin Marinas , Will Deacon , Ard Biesheuvel , Andrew Morton , zijun_hu , "Kirill A. Shutemov" , Andrey Ryabinin , Chris Wilson , open list , "open list:MEMORY MANAGEMENT" , angus@angusclark.org Subject: Re: [PATCH v2 1/3] mm: Silence vmap() allocation failures based on caller gfp_flags Message-ID: <20170427175653.GB30672@dhcp22.suse.cz> References: <20170427173900.2538-1-f.fainelli@gmail.com> <20170427173900.2538-2-f.fainelli@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170427173900.2538-2-f.fainelli@gmail.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 Thu 27-04-17 10:38:58, Florian Fainelli wrote: > If the caller has set __GFP_NOWARN don't print the following message: > vmap allocation for size 15736832 failed: use vmalloc= to increase > size. > > This can happen with the ARM/Linux or ARM64/Linux module loader built > with CONFIG_ARM{,64}_MODULE_PLTS=y which does a first attempt at loading > a large module from module space, then falls back to vmalloc space. > > Signed-off-by: Florian Fainelli Acked-by: Michal Hocko just a nit > --- > mm/vmalloc.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/mm/vmalloc.c b/mm/vmalloc.c > index 0b057628a7ba..d8a851634674 100644 > --- a/mm/vmalloc.c > +++ b/mm/vmalloc.c > @@ -521,9 +521,13 @@ static struct vmap_area *alloc_vmap_area(unsigned long size, > } > } > > + if (gfp_mask & __GFP_NOWARN) > + goto out; > + > if (printk_ratelimit()) if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) > pr_warn("vmap allocation for size %lu failed: use vmalloc= to increase size\n", > size); would be shorter and you wouldn't need the goto and a label. > +out: > kfree(va); > return ERR_PTR(-EBUSY); > } > -- > 2.9.3 > -- Michal Hocko SUSE Labs