Commit fc839ecb authored by Chris Wilson's avatar Chris Wilson Committed by Greg Kroah-Hartman

dma-buf/sw-sync: Fix the is-signaled test to handle u32 wraparound

commit 61894b02 upstream.

Use the canonical __dma_fence_is_later() to compare the fence seqno
against the timeline seqno to check if the fence is signaled.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Sean Paul <seanpaul@chromium.org>
Cc: Gustavo Padovan <gustavo@padovan.org>
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170629125930.821-2-chris@chris-wilson.co.uk
[s/dma_fence/fence/g - gregkh]
Cc: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b53525ea
...@@ -219,7 +219,7 @@ static bool timeline_fence_signaled(struct fence *fence) ...@@ -219,7 +219,7 @@ static bool timeline_fence_signaled(struct fence *fence)
{ {
struct sync_timeline *parent = fence_parent(fence); struct sync_timeline *parent = fence_parent(fence);
return (fence->seqno > parent->value) ? false : true; return !__fence_is_later(fence->seqno, parent->value);
} }
static bool timeline_fence_enable_signaling(struct fence *fence) static bool timeline_fence_enable_signaling(struct fence *fence)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment