mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
drm/msm: use correct gfp flag for vram allocation
We want at least __GFP_WAIT, otherwise dma-mapping tries to use coherent pool rather than CMA pool. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
a0906a023b
commit
543d3011f1
@ -220,7 +220,7 @@ static int msm_load(struct drm_device *dev, unsigned long flags)
|
|||||||
* is bogus, but non-null if allocation succeeded:
|
* is bogus, but non-null if allocation succeeded:
|
||||||
*/
|
*/
|
||||||
p = dma_alloc_attrs(dev->dev, size,
|
p = dma_alloc_attrs(dev->dev, size,
|
||||||
&priv->vram.paddr, 0, &attrs);
|
&priv->vram.paddr, GFP_KERNEL, &attrs);
|
||||||
if (!p) {
|
if (!p) {
|
||||||
dev_err(dev->dev, "failed to allocate VRAM\n");
|
dev_err(dev->dev, "failed to allocate VRAM\n");
|
||||||
priv->vram.paddr = 0;
|
priv->vram.paddr = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user