]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/msm: for array in-fences, check if all backing fences are from our own context...
authorPhilipp Zabel <p.zabel@pengutronix.de>
Fri, 17 Mar 2017 18:38:40 +0000 (19:38 +0100)
committerRob Clark <robdclark@gmail.com>
Sat, 27 May 2017 17:48:28 +0000 (13:48 -0400)
Use the dma_fence_match_context helper to check if all backing fences
are from our own context, in which case we don't have to wait.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Gustavo Padovan <gustavo.padovan@collabora.com>
[rebased on code-motion]
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/msm_gem_submit.c

index 1c545ebe6a5a0f875a995b1db3a1204b0b21d57e..8ac4ca443914652a5fc65b00b9ca686e7f04412a 100644 (file)
@@ -410,12 +410,11 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
                if (!in_fence)
                        return -EINVAL;
 
-               /* TODO if we get an array-fence due to userspace merging multiple
-                * fences, we need a way to determine if all the backing fences
-                * are from our own context..
+               /*
+                * Wait if the fence is from a foreign context, or if the fence
+                * array contains any fence from a foreign context.
                 */
-
-               if (in_fence->context != gpu->fctx->context) {
+               if (!dma_fence_match_context(in_fence, gpu->fctx->context)) {
                        ret = dma_fence_wait(in_fence, true);
                        if (ret)
                                return ret;