Lines Matching refs:syncs
882 struct xe_sync_entry *syncs, u32 num_syncs);
2038 find_ufence_get(struct xe_sync_entry *syncs, u32 num_syncs)
2043 struct xe_sync_entry *e = &syncs[i];
3230 ufence = find_ufence_get(vops->syncs, vops->num_syncs);
3245 xe_sync_entry_signal(vops->syncs + i, fence);
3429 struct xe_sync_entry *syncs,
3435 fence = xe_sync_in_fence_get(syncs, num_syncs,
3441 xe_sync_entry_signal(&syncs[i], fence);
3452 struct xe_sync_entry *syncs, u32 num_syncs)
3458 vops->syncs = syncs;
3529 struct xe_sync_entry *syncs = NULL;
3626 syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
3627 if (!syncs) {
3633 syncs_user = u64_to_user_ptr(args->syncs);
3635 err = xe_sync_entry_parse(xe, xef, &syncs[num_syncs],
3644 if (xe_sync_is_ufence(&syncs[num_syncs]))
3658 xe_vma_ops_init(&vops, vm, q, syncs, num_syncs);
3720 err = vm_bind_ioctl_signal_fences(vm, q, syncs, num_syncs);
3722 xe_sync_entry_cleanup(&syncs[num_syncs]);
3724 kfree(syncs);