OSDN Git Service

drm/syncobj: fix leaking dma_fence in drm_syncobj_query_ioctl
authorChristian König <christian.koenig@amd.com>
Mon, 22 Jul 2019 12:56:25 +0000 (14:56 +0200)
committerChristian König <christian.koenig@amd.com>
Tue, 30 Jul 2019 10:27:39 +0000 (12:27 +0200)
We need to check the context number instead if the previous sequence to detect
an error and if an error is detected we need to drop the reference to the
current fence or otherwise would leak it.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 27b575a9aa2f ("drm/syncobj: add timeline payload query ioctl v6")
Link: https://patchwork.freedesktop.org/patch/319123/
drivers/gpu/drm/drm_syncobj.c

index 75cb4bb..1438dcb 100644 (file)
@@ -1298,14 +1298,14 @@ int drm_syncobj_query_ioctl(struct drm_device *dev, void *data,
                        struct dma_fence *iter, *last_signaled = NULL;
 
                        dma_fence_chain_for_each(iter, fence) {
-                               if (!iter)
-                                       break;
-                               dma_fence_put(last_signaled);
-                               last_signaled = dma_fence_get(iter);
-                               if (!to_dma_fence_chain(last_signaled)->prev_seqno)
+                               if (iter->context != fence->context) {
+                                       dma_fence_put(iter);
                                        /* It is most likely that timeline has
                                         * unorder points. */
                                        break;
+                               }
+                               dma_fence_put(last_signaled);
+                               last_signaled = dma_fence_get(iter);
                        }
                        point = dma_fence_is_signaled(last_signaled) ?
                                last_signaled->seqno :