提交 02f0b8c8 编写于 作者: A Alexandre Courbot 提交者: Ben Skeggs

drm/nve0/fifo: allocate usermem as needed

Memory was always allocated for 4096 channels. Change this to allocate
what we actually need according to the number of channels we use.
Signed-off-by: NAlexandre Courbot <acourbot@nvidia.com>
Reviewed-by: NThierry Reding <treding@nvidia.com>
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 b6c4285a
...@@ -852,8 +852,8 @@ nve0_fifo_ctor(struct nouveau_object *parent, struct nouveau_object *engine, ...@@ -852,8 +852,8 @@ nve0_fifo_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
return ret; return ret;
} }
ret = nouveau_gpuobj_new(nv_object(priv), NULL, 4096 * 0x200, 0x1000, ret = nouveau_gpuobj_new(nv_object(priv), NULL, impl->channels * 0x200,
NVOBJ_FLAG_ZERO_ALLOC, &priv->user.mem); 0x1000, NVOBJ_FLAG_ZERO_ALLOC, &priv->user.mem);
if (ret) if (ret)
return ret; return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册