mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
nvc0: ensure that pushbuf keeps ref to old text/tls bos
If we free the bo, then the PTE may get deallocated immediately. We have to make sure that the submission includes a ref to the old bo so that it remains mapped for the duration of the command execution. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
be144e251c
commit
adcd241b56
1 changed files with 13 additions and 0 deletions
|
|
@ -741,6 +741,13 @@ nvc0_screen_resize_tls_area(struct nvc0_screen *screen,
|
|||
NULL, &bo);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Make sure that the pushbuf has acquired a reference to the old tls
|
||||
* segment, as it may have commands that will reference it.
|
||||
*/
|
||||
if (screen->tls)
|
||||
PUSH_REFN(screen->base.pushbuf, screen->tls,
|
||||
NV_VRAM_DOMAIN(&screen->base) | NOUVEAU_BO_RDWR);
|
||||
nouveau_bo_ref(NULL, &screen->tls);
|
||||
screen->tls = bo;
|
||||
return 0;
|
||||
|
|
@ -758,6 +765,12 @@ nvc0_screen_resize_text_area(struct nvc0_screen *screen, uint64_t size)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Make sure that the pushbuf has acquired a reference to the old text
|
||||
* segment, as it may have commands that will reference it.
|
||||
*/
|
||||
if (screen->text)
|
||||
PUSH_REFN(push, screen->text,
|
||||
NV_VRAM_DOMAIN(&screen->base) | NOUVEAU_BO_RD);
|
||||
nouveau_bo_ref(NULL, &screen->text);
|
||||
screen->text = bo;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue