/src/sys/external/bsd/drm2/dist/drm/virtio/ |
virtgpu_fence.c | 56 if (atomic64_read(&fence->drv->last_seq) >= fence->f.seqno) 70 snprintf(str, size, "%llu", (u64)atomic64_read(&fence->drv->last_seq)); 120 u64 last_seq) 127 atomic64_set(&vgdev->fence_drv.last_seq, last_seq); 129 if (last_seq < fence->f.seqno)
|
virtgpu_debugfs.c | 67 (u64)atomic64_read(&vgdev->fence_drv.last_seq),
|
virtgpu_drv.h | 96 atomic64_t last_seq; member in struct:virtio_gpu_fence_driver 357 u64 last_seq);
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_fence.c | 130 seq = atomic_read(&drv->last_seq); 246 uint32_t seq, last_seq; local in function:amdgpu_fence_process 250 last_seq = atomic_read(&ring->fence_drv.last_seq); 253 } while (atomic_cmpxchg(&drv->last_seq, last_seq, seq) != last_seq); 259 if (unlikely(seq == last_seq)) 262 last_seq &= drv->num_fences_mask; 268 ++last_seq; [all...] |
amdgpu_debugfs.c | 1060 uint32_t sync_seq, last_seq; local in function:amdgpu_ib_preempt_fences_swap 1062 last_seq = atomic_read(&ring->fence_drv.last_seq); 1065 last_seq &= drv->num_fences_mask; 1071 ++last_seq; 1072 last_seq &= drv->num_fences_mask; 1073 ptr = &drv->fences[last_seq]; 1081 fences[last_seq] = fence; 1083 } while (last_seq != sync_seq); 1127 if (preempt_seq <= atomic_read(&drv->last_seq)) [all...] |
amdgpu_job.c | 52 job->base.sched->name, atomic_read(&ring->fence_drv.last_seq),
|
amdgpu_ring.h | 80 atomic_t last_seq; member in struct:amdgpu_fence_driver
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_fence.c | 105 seq = lower_32_bits(atomic64_read(&drv->last_seq)); 184 seq = atomic64_read(&fence->rdev->fence_drv[fence->ring].last_seq); 225 uint64_t seq, last_seq, last_emitted; local in function:radeon_fence_activity 234 * process needs to update the last_seq btw the atomic read and 240 * polling process and the other process that xchg the last_seq 249 * have temporarly set the last_seq not to the true real last 252 last_seq = atomic64_read(&rdev->fence_drv[ring].last_seq); 256 seq |= last_seq & 0xffffffff00000000LL; 257 if (seq < last_seq) { [all...] |
radeon.h | 382 atomic64_t last_seq; member in struct:radeon_fence_driver
|
/src/sys/fs/nilfs/ |
nilfs_vfsops.c | 462 uint64_t last_pseg, last_cno, last_seq; local in function:nilfs_mount_base 506 last_seq = nilfs_rw64(nilfsdev->super.s_last_seq); 508 nilfsdev->last_seg_seq = last_seq;
|