Commit 22c806c2 authored by Simon Farnsworth's avatar Simon Farnsworth Committed by Dave Airlie

drm/via: Fix dmablit when blit queue is full

fd.o bug 11542

Acked-by: Thomas Hellstrom
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 7ea4d4bd
...@@ -560,7 +560,7 @@ via_init_dmablit(struct drm_device *dev) ...@@ -560,7 +560,7 @@ via_init_dmablit(struct drm_device *dev)
blitq->head = 0; blitq->head = 0;
blitq->cur = 0; blitq->cur = 0;
blitq->serviced = 0; blitq->serviced = 0;
blitq->num_free = VIA_NUM_BLIT_SLOTS; blitq->num_free = VIA_NUM_BLIT_SLOTS - 1;
blitq->num_outstanding = 0; blitq->num_outstanding = 0;
blitq->is_active = 0; blitq->is_active = 0;
blitq->aborting = 0; blitq->aborting = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment