Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1286416
| From | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] MIPS: Fix DMA contiguous allocation |
| Date | 2015-12-08 13:20 +0100 |
| Message-ID | <qDppn-2eU-1@gated-at.bofh.it> (permalink) |
| References | <qDnxg-Xg-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 12/8/2015 1:18 PM, Qais Yousef wrote:
> Recent changes to how GFP_ATOMIC is defined seems to have broken the condition
> to use mips_alloc_from_contiguous() in mips_dma_alloc_coherent().
>
> I couldn't bottom out the exact change but I think it's this one
>
> d0164adc89f6 (mm, page_alloc: distinguish between being unable to sleep,
> unwilling to sleep and avoiding waking kswapd)
>
> From what I see GFP_ATOMIC has multiple bits set and the check for !(gfp
> & GFP_ATOMIC) isn't enough. To verify if the flag is atomic we need to make
> sure that (gfp & GFP_ATOMIC) == GFP_ATOMIC to verify that all bits rquired to
Required.
> satisfy GFP_ATOMIC condition are set.
>
> Signed-off-by: Qais Yousef <qais.yousef@imgtec.com>
> ---
> arch/mips/mm/dma-default.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/mips/mm/dma-default.c b/arch/mips/mm/dma-default.c
> index d8117be729a2..d6b8a1445a3a 100644
> --- a/arch/mips/mm/dma-default.c
> +++ b/arch/mips/mm/dma-default.c
> @@ -145,7 +145,7 @@ static void *mips_dma_alloc_coherent(struct device *dev, size_t size,
>
> gfp = massage_gfp_flags(dev, gfp);
>
> - if (IS_ENABLED(CONFIG_DMA_CMA) && !(gfp & GFP_ATOMIC))
> + if (IS_ENABLED(CONFIG_DMA_CMA) && ((gfp & GFP_ATOMIC) != GFP_ATOMIC))
() around != not necessary.
[...]
MBR, Sergei
--
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/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] MIPS: Fix DMA contiguous allocation Qais Yousef <qais.yousef@imgtec.com> - 2015-12-08 11:20 +0100
Re: [PATCH] MIPS: Fix DMA contiguous allocation Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-12-08 13:20 +0100
Re: [PATCH] MIPS: Fix DMA contiguous allocation Andrew Morton <akpm@linux-foundation.org> - 2015-12-08 23:20 +0100
Re: [PATCH] MIPS: Fix DMA contiguous allocation Mel Gorman <mgorman@techsingularity.net> - 2015-12-09 12:40 +0100
Re: [PATCH] MIPS: Fix DMA contiguous allocation Qais Yousef <qais.yousef@imgtec.com> - 2015-12-09 15:40 +0100
csiph-web