Lines Matching refs:ops
131 if (!dma_fence_stub.ops) {
477 if (fence->ops->wait) {
478 ret = fence->ops->wait(fence, intr, timeout);
501 "Fence %s:%s:%llx:%llx released with pending signals!\n", fence->ops->get_driver_name(fence),
502 fence->ops->get_timeline_name(fence), fence->context, fence->seqno)) {
518 if (fence->ops->release) {
519 fence->ops->release(fence);
551 if (!was_set && fence->ops->enable_signaling) {
554 if (!fence->ops->enable_signaling(fence)) {
887 * @ops: the dma_fence_ops for operations on this fence
899 void dma_fence_init(struct dma_fence *fence, const struct dma_fence_ops *ops, spinlock_t *lock, u64 context, u64 seqno)
902 BUG_ON(!ops || !ops->get_driver_name || !ops->get_timeline_name);
905 fence->ops = ops;