Commit 875abdb6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

mm-cma-allocation-trigger-fix

s/CONFIG_CMA_ALIGNMENT/0/, per Joonsoo

Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Laura Abbott <lauraa@codeaurora.org>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8325330b
...@@ -103,7 +103,7 @@ static int cma_alloc_mem(struct cma *cma, int count) ...@@ -103,7 +103,7 @@ static int cma_alloc_mem(struct cma *cma, int count)
if (!mem) if (!mem)
return -ENOMEM; return -ENOMEM;
p = cma_alloc(cma, count, CONFIG_CMA_ALIGNMENT); p = cma_alloc(cma, count, 0);
if (!p) { if (!p) {
kfree(mem); kfree(mem);
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment