diff options
author | Ilia Mirkin <[email protected]> | 2018-01-01 14:54:17 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2018-01-07 11:14:51 -0500 |
commit | adcd241b563f44b2e3e92f5d840e2f617bc25836 (patch) | |
tree | 97b499e397014d7a7d08715ce34f1fbe1cfc172e /src/gallium/drivers/nouveau | |
parent | be144e251c548b45d0c4f9eb757a21110a73725b (diff) |
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 <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 02562dd4eb2..cac4bb89271 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -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; |