[gem-intel] Don't clear write_domain until flush completes
authorKeith Packard <keithp@keithp.com>
Tue, 5 Aug 2008 21:44:53 +0000 (14:44 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 5 Aug 2008 21:44:53 +0000 (14:44 -0700)
commitceb3d5e3834452f9d54f974b8066f90168467443
treefc04302cf176bf9fe059c2ab5c68c9ec70f3f6db
parent8e41ce17b4ab72f526cc6e9acd75c3fa81a60433
[gem-intel] Don't clear write_domain until flush completes

In i915_gem_object_wait_rendering, if the object write domain is being
written by the GPU, the appropriate flushing commands are written to the
device and an additional request queued to mark that flush. Finally, the
function blocks on that new request.

The bug was that the write_domain in the object was cleared before the
function blocked.

If the wait is interrupted by a signal, the flushing commands may still be
pending. With the current write_domain information lost, the restarted
syscall will drop right through the write_domain test as that value was
lost, and so the function will not block at all. Oops.

Fixed by simply moving the write_domain clear until after the wait_request
succeeds. Note that the restarted system call will generate an additional
flush sequence and request, but that should be 'harmless', aside from a
slight performance impact.

Someday we'll track flushing more accurately and clear write_domains more
efficiently, but for now, this should suffice.

This bug was discovered in the 2d gem development by running x11perf
-copypixwin500 and noticing that the window got cleared accidentally.
linux-core/i915_gem.c