Lines Matching refs:ops
32 * @ops: dma_fence_ops associated with this fence
46 * atomic ops (bit_*), so taking the spinlock will not be needed most
67 const struct dma_fence_ops *ops;
263 void dma_fence_init(struct dma_fence *fence, const struct dma_fence_ops *ops, spinlock_t *lock, u64 context, u64 seqno);
407 if (fence->ops->signaled && fence->ops->signaled(fence)) {
437 if (fence->ops->signaled && fence->ops->signaled(fence)) {
449 * @ops: dma_fence_ops associated with the seqno
454 static inline bool __dma_fence_is_later(u64 f1, u64 f2, const struct dma_fence_ops *ops)
460 if (ops->use_64bit_seqno) {
481 return __dma_fence_is_later(f1->seqno, f2->seqno, f1->ops);