sna: Only couple up a proxy->rq when inserting into the request->buffers list

Otherwise, we may never decouple it again afterwards leading to a
dangling pointer dereference.

Bugzilla: https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1289923
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2014-03-12 12:17:55 +00:00
parent 2f50261539
commit 08d73f1a44
2 changed files with 5 additions and 1 deletions

View File

@ -5841,11 +5841,13 @@ struct kgem_bo *kgem_create_proxy(struct kgem *kgem,
bo->proxy = kgem_bo_reference(target);
bo->delta = offset;
/* Proxies are only tracked for busyness on the current rq */
if (target->exec && !bo->io) {
assert(RQ(target->rq) == kgem->next_request);
list_move_tail(&bo->request, &kgem->next_request->buffers);
bo->exec = &_kgem_dummy_exec;
bo->rq = target->rq;
}
bo->rq = target->rq;
return bo;
}

View File

@ -630,6 +630,8 @@ static inline void __kgem_bo_mark_dirty(struct kgem_bo *bo)
bo->handle, bo->proxy != NULL));
assert(bo->refcnt);
assert(bo->exec);
assert(bo->rq);
bo->exec->flags |= LOCAL_EXEC_OBJECT_WRITE;
bo->needs_flush = bo->gpu_dirty = true;