summaryrefslogtreecommitdiff
path: root/nouveau/nouveau_notifier.c
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-11-20 14:32:45 +0100
committerFrancisco Jerez <currojerez@riseup.net>2010-11-22 03:49:41 +0100
commitd17681d538ce86a3f8d6d1c7407df3ceb2bcc499 (patch)
treeb678024e9286cda48907ef682fbab36bbaff30b6 /nouveau/nouveau_notifier.c
parent877b2ce15b80975b4dac42657bdfb0a3da833e1c (diff)
nouveau: Add implicit pushbuf flush before gpuobj destruction.
It makes sure that GPU object destruction is executed in order with respect to the previous FIFO commands. Signed-off-by: Francisco Jerez <currojerez@riseup.net> Acked-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'nouveau/nouveau_notifier.c')
-rw-r--r--nouveau/nouveau_notifier.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nouveau/nouveau_notifier.c b/nouveau/nouveau_notifier.c
index f8cfd8b9..513fa635 100644
--- a/nouveau/nouveau_notifier.c
+++ b/nouveau/nouveau_notifier.c
@@ -80,6 +80,8 @@ nouveau_notifier_free(struct nouveau_notifier **notifier)
nvchan = nouveau_channel(nvnotify->base.channel);
nvdev = nouveau_device(nvchan->base.device);
+ FIRE_RING(&nvchan->base);
+
f.channel = nvchan->drm.channel;
f.handle = nvnotify->base.handle;
drmCommandWrite(nvdev->fd, DRM_NOUVEAU_GPUOBJ_FREE, &f, sizeof(f));