All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/v3d: fix broken build
@ 2018-12-05 19:44 Christian König
  2018-12-05 21:00 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: Christian König @ 2018-12-05 19:44 UTC (permalink / raw)
  To: dri-devel, eric

I missed one case during the recent revert of the replace_fence
interface change.

Fixes: 0b258ed1a219 drm: revert "expand replace_fence to support timeline point v2"

Signed-off-by: Christian König <christian.koenig@amd.com>
---
 drivers/gpu/drm/v3d/v3d_gem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/v3d/v3d_gem.c b/drivers/gpu/drm/v3d/v3d_gem.c
index cb99e53f7607..05ca6319065e 100644
--- a/drivers/gpu/drm/v3d/v3d_gem.c
+++ b/drivers/gpu/drm/v3d/v3d_gem.c
@@ -716,7 +716,7 @@ v3d_submit_tfu_ioctl(struct drm_device *dev, void *data,
 	/* Update the return sync object */
 	sync_out = drm_syncobj_find(file_priv, args->out_sync);
 	if (sync_out) {
-		drm_syncobj_replace_fence(sync_out, 0, sched_done_fence);
+		drm_syncobj_replace_fence(sync_out, sched_done_fence);
 		drm_syncobj_put(sync_out);
 	}
 	dma_fence_put(sched_done_fence);
-- 
2.17.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] drm/v3d: fix broken build
  2018-12-05 19:44 [PATCH] drm/v3d: fix broken build Christian König
@ 2018-12-05 21:00 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2018-12-05 21:00 UTC (permalink / raw)
  To: Christian König; +Cc: Maling list - DRI developers

On Wed, Dec 5, 2018 at 2:44 PM Christian König
<ckoenig.leichtzumerken@gmail.com> wrote:
>
> I missed one case during the recent revert of the replace_fence
> interface change.
>
> Fixes: 0b258ed1a219 drm: revert "expand replace_fence to support timeline point v2"
>
> Signed-off-by: Christian König <christian.koenig@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  drivers/gpu/drm/v3d/v3d_gem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/v3d/v3d_gem.c b/drivers/gpu/drm/v3d/v3d_gem.c
> index cb99e53f7607..05ca6319065e 100644
> --- a/drivers/gpu/drm/v3d/v3d_gem.c
> +++ b/drivers/gpu/drm/v3d/v3d_gem.c
> @@ -716,7 +716,7 @@ v3d_submit_tfu_ioctl(struct drm_device *dev, void *data,
>         /* Update the return sync object */
>         sync_out = drm_syncobj_find(file_priv, args->out_sync);
>         if (sync_out) {
> -               drm_syncobj_replace_fence(sync_out, 0, sched_done_fence);
> +               drm_syncobj_replace_fence(sync_out, sched_done_fence);
>                 drm_syncobj_put(sync_out);
>         }
>         dma_fence_put(sched_done_fence);
> --
> 2.17.1
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-12-05 21:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-05 19:44 [PATCH] drm/v3d: fix broken build Christian König
2018-12-05 21:00 ` Alex Deucher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.