evicted           207 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 		list_move(&vm_bo->vm_status, &vm->evicted);
evicted           209 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 		list_move_tail(&vm_bo->vm_status, &vm->evicted);
evicted           652 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 	vm->bulk_moveable &= list_empty(&vm->evicted);
evicted           654 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 	list_for_each_entry_safe(bo_base, tmp, &vm->evicted, vm_status) {
evicted           687 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 	return list_empty(&vm->evicted);
evicted          2504 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 			     struct amdgpu_bo *bo, bool evicted)
evicted          2515 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 		if (evicted && bo->tbo.base.resv == vm->root.base.bo->tbo.base.resv) {
evicted          2683 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c 	INIT_LIST_HEAD(&vm->evicted);
evicted           235 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h 	struct list_head	evicted;
evicted           371 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h 			     struct amdgpu_bo *bo, bool evicted);
evicted           297 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	q->properties.is_evicted = !!qpd->evicted;
evicted           578 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (qpd->evicted++ > 0) /* already evicted, do nothing */
evicted           620 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (qpd->evicted++ > 0) /* already evicted, do nothing */
evicted           663 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (WARN_ON_ONCE(!qpd->evicted)) /* already restored, do nothing */
evicted           665 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (qpd->evicted > 1) { /* ref count still > 0, decrement & quit */
evicted           666 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 		qpd->evicted--;
evicted           714 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	qpd->evicted = 0;
evicted           735 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (WARN_ON_ONCE(!qpd->evicted)) /* already restored, do nothing */
evicted           737 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (qpd->evicted > 1) { /* ref count still > 0, decrement & quit */
evicted           738 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 		qpd->evicted--;
evicted           760 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	qpd->evicted = 0;
evicted          1178 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	q->properties.is_evicted = !!qpd->evicted;
evicted           554 drivers/gpu/drm/amd/amdkfd/kfd_priv.h 	unsigned int evicted; /* eviction counter, 0=active */
evicted           747 drivers/gpu/drm/amd/amdkfd/kfd_process.c 	pdd->qpd.evicted = 0;
evicted           393 drivers/gpu/drm/ttm/ttm_bo.c 	if (bo->evicted) {
evicted           399 drivers/gpu/drm/ttm/ttm_bo.c 		bo->evicted = false;
evicted           753 drivers/gpu/drm/ttm/ttm_bo.c 	bo->evicted = true;
evicted           199 include/drm/ttm/ttm_bo_api.h 	bool evicted;
evicted            45 net/netfilter/nf_conntrack_ecache.c 	unsigned int evicted = 0;
evicted            67 net/netfilter/nf_conntrack_ecache.c 		refs[evicted] = ct;
evicted            69 net/netfilter/nf_conntrack_ecache.c 		if (++evicted >= ARRAY_SIZE(refs)) {
evicted            78 net/netfilter/nf_conntrack_ecache.c 	while (evicted)
evicted            79 net/netfilter/nf_conntrack_ecache.c 		nf_ct_put(refs[--evicted]);