@@ -33,50 +33,9 @@ static void mock_fence_release(struct dma_fence *f)
kmem_cache_free(slab_fences, to_mock_fence(f));
}
-struct wait_cb {
- struct dma_fence_cb cb;
- struct task_struct *task;
-};
-
-static void mock_wakeup(struct dma_fence *f, struct dma_fence_cb *cb)
-{
- wake_up_process(container_of(cb, struct wait_cb, cb)->task);
-}
-
-static long mock_wait(struct dma_fence *f, bool intr, long timeout)
-{
- const int state = intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
- struct wait_cb cb = { .task = current };
-
- if (dma_fence_add_callback(f, &cb.cb, mock_wakeup))
- return timeout;
-
- while (timeout) {
- set_current_state(state);
-
- if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &f->flags))
- break;
-
- if (signal_pending_state(state, current))
- break;
-
- timeout = schedule_timeout(timeout);
- }
- __set_current_state(TASK_RUNNING);
-
- if (!dma_fence_remove_callback(f, &cb.cb))
- return timeout;
-
- if (signal_pending_state(state, current))
- return -ERESTARTSYS;
-
- return -ETIME;
-}
-
static const struct dma_fence_ops mock_ops = {
.get_driver_name = mock_name,
.get_timeline_name = mock_name,
- .wait = mock_wait,
.release = mock_fence_release,
};
No need to micro-optmize when we're waiting in a mocked object ... Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Cc: Sumit Semwal <sumit.semwal@linaro.org> Cc: linux-media@vger.kernel.org Cc: linaro-mm-sig@lists.linaro.org --- drivers/dma-buf/st-dma-fence.c | 41 ---------------------------------- 1 file changed, 41 deletions(-)