From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757259AbcCRKit (ORCPT ); Fri, 18 Mar 2016 06:38:49 -0400 Received: from mail-lf0-f68.google.com ([209.85.215.68]:36197 "EHLO mail-lf0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756900AbcCRKik (ORCPT ); Fri, 18 Mar 2016 06:38:40 -0400 Date: Fri, 18 Mar 2016 11:38:29 +0100 From: Rabin Vincent To: Alexandre Courbot Cc: Russell King , Marek Szyprowski , Thierry Reding , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, gnurou@gmail.com Subject: Re: [PATCH v2] ARM: DMA: Fix kzalloc flags in __dma_alloc Message-ID: <20160318103829.GA15201@lnxrabinv.se.axis.com> References: <1458293329-5519-1-git-send-email-acourbot@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1458293329-5519-1-git-send-email-acourbot@nvidia.com> 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 Fri, Mar 18, 2016 at 06:28:49PM +0900, Alexandre Courbot wrote: > Commit 19e6e5e5392b ("ARM: 8547/1: dma-mapping: store buffer > information") allocates a structure meant for internal buffer management > with the GFP flags of the buffer itself. This can trigger the following > safeguard in the slab/slub allocator: > > if (unlikely(flags & GFP_SLAB_BUG_MASK)) { > pr_emerg("gfp: %u\n", flags & GFP_SLAB_BUG_MASK); > BUG(); > } > > Fix this by filtering the flags that make the slab allocator unhappy. > > Signed-off-by: Alexandre Courbot > Cc: Rabin Vincent > --- > Changes since v1: > - Filter flags that may cause problem instead of forcing GFP_KERNEL > (and risk sleeping in atomic context), as suggested by Rabin. Acked-by: Rabin Vincent Thanks.