/Linux-v4.19/mm/ |
D | zbud.c | 130 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict) in zbud_zpool_evict() 131 return pool->zpool_ops->evict(pool->zpool, handle); in zbud_zpool_evict() 137 .evict = zbud_zpool_evict 508 if (!pool->ops || !pool->ops->evict || list_empty(&pool->lru) || in zbud_reclaim_page() 533 ret = pool->ops->evict(pool, first_handle); in zbud_reclaim_page() 538 ret = pool->ops->evict(pool, last_handle); in zbud_reclaim_page()
|
D | z3fold.c | 42 int (*evict)(struct z3fold_pool *pool, unsigned long handle); member 828 if (!pool->ops || !pool->ops->evict || retries == 0) { in z3fold_reclaim_page() 883 ret = pool->ops->evict(pool, middle_handle); in z3fold_reclaim_page() 888 ret = pool->ops->evict(pool, first_handle); in z3fold_reclaim_page() 893 ret = pool->ops->evict(pool, last_handle); in z3fold_reclaim_page() 1022 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict) in z3fold_zpool_evict() 1023 return pool->zpool_ops->evict(pool->zpool, handle); in z3fold_zpool_evict() 1029 .evict = z3fold_zpool_evict
|
D | zpool.c | 184 zpool->evictable = driver->shrink && ops && ops->evict; in zpool_create_pool()
|
/Linux-v4.19/include/drm/ttm/ |
D | ttm_bo_driver.h | 311 int (*move)(struct ttm_buffer_object *bo, bool evict, 338 bool evict, 832 struct dma_fence *fence, bool evict, 847 struct dma_fence *fence, bool evict,
|
/Linux-v4.19/drivers/gpu/drm/i915/selftests/ |
D | i915_live_selftests.h | 20 selftest(evict, i915_gem_evict_live_selftests)
|
D | i915_mock_selftests.h | 24 selftest(evict, i915_gem_evict_mock_selftests)
|
/Linux-v4.19/include/linux/ |
D | zbud.h | 10 int (*evict)(struct zbud_pool *pool, unsigned long handle); member
|
D | zpool.h | 18 int (*evict)(struct zpool *pool, unsigned long handle); member
|
/Linux-v4.19/drivers/gpu/drm/nouveau/ |
D | nouveau_bo.c | 382 bool force = false, evict = false; in nouveau_bo_pin() local 394 evict = true; in nouveau_bo_pin() 399 if (!(memtype & (1 << bo->mem.mem_type)) || evict) { in nouveau_bo_pin() 409 if (evict) { in nouveau_bo_pin() 1094 nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr, in nouveau_bo_move_m2mf() argument 1122 evict, in nouveau_bo_move_m2mf() 1199 nouveau_bo_move_flipd(struct ttm_buffer_object *bo, bool evict, bool intr, in nouveau_bo_move_flipd() argument 1236 nouveau_bo_move_flips(struct ttm_buffer_object *bo, bool evict, bool intr, in nouveau_bo_move_flips() argument 1272 nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, bool evict, in nouveau_bo_move_ntfy() argument 1331 nouveau_bo_move(struct ttm_buffer_object *bo, bool evict, in nouveau_bo_move() argument [all …]
|
/Linux-v4.19/drivers/gpu/drm/selftests/ |
D | drm_mm_selftests.h | 19 selftest(evict, igt_evict)
|
/Linux-v4.19/arch/powerpc/kvm/ |
D | book3s_32_mmu_host.c | 154 bool evict = false; in kvmppc_mmu_map_page() local 184 evict = true; in kvmppc_mmu_map_page() 191 if (!evict && (pteg[rr] & PTE_V)) { in kvmppc_mmu_map_page()
|
/Linux-v4.19/drivers/infiniband/hw/hfi1/ |
D | mmu_rb.h | 70 int (*evict)(void *ops_arg, struct mmu_rb_node *mnode, member
|
D | mmu_rb.c | 249 if (handler->ops->evict(handler->ops_arg, rbnode, evict_arg, in hfi1_mmu_rb_evict()
|
/Linux-v4.19/drivers/gpu/drm/radeon/ |
D | radeon_ttm.c | 255 bool evict, bool no_wait_gpu, in radeon_move_blit() argument 304 r = ttm_bo_move_accel_cleanup(bo, &fence->base, evict, new_mem); in radeon_move_blit() 310 bool evict, bool interruptible, in radeon_move_vram_ram() argument 357 bool evict, bool interruptible, in radeon_move_ram_vram() argument 396 static int radeon_bo_move(struct ttm_buffer_object *bo, bool evict, in radeon_bo_move() argument 435 r = radeon_move_vram_ram(bo, evict, ctx->interruptible, in radeon_bo_move() 439 r = radeon_move_ram_vram(bo, evict, ctx->interruptible, in radeon_bo_move() 442 r = radeon_move_blit(bo, evict, ctx->no_wait_gpu, in radeon_bo_move()
|
D | radeon_object.h | 153 bool evict,
|
/Linux-v4.19/drivers/gpu/drm/ttm/ |
D | ttm_bo_util.c | 684 bool evict, in ttm_bo_move_accel_cleanup() argument 694 if (evict) { in ttm_bo_move_accel_cleanup() 745 struct dma_fence *fence, bool evict, in ttm_bo_pipeline_move() argument 758 if (!evict) { in ttm_bo_pipeline_move()
|
D | ttm_bo.c | 227 struct ttm_mem_reg *mem, bool evict, in ttm_bo_handle_move_mem() argument 270 bdev->driver->move_notify(bo, evict, mem); in ttm_bo_handle_move_mem() 278 bdev->driver->move_notify(bo, evict, mem); in ttm_bo_handle_move_mem() 284 ret = bdev->driver->move(bo, evict, ctx, mem); in ttm_bo_handle_move_mem()
|
/Linux-v4.19/drivers/gpu/drm/virtio/ |
D | virtgpu_ttm.c | 354 static int virtio_gpu_bo_move(struct ttm_buffer_object *bo, bool evict, in virtio_gpu_bo_move() argument 369 bool evict, in virtio_gpu_bo_move_notify() argument
|
/Linux-v4.19/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_ttm.c | 506 bool evict, bool no_wait_gpu, in amdgpu_move_blit() argument 528 r = ttm_bo_pipeline_move(bo, fence, evict, new_mem); in amdgpu_move_blit() 544 static int amdgpu_move_vram_ram(struct ttm_buffer_object *bo, bool evict, in amdgpu_move_vram_ram() argument 585 r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu, &tmp_mem, old_mem); in amdgpu_move_vram_ram() 602 static int amdgpu_move_ram_vram(struct ttm_buffer_object *bo, bool evict, in amdgpu_move_ram_vram() argument 637 r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu, new_mem, old_mem); in amdgpu_move_ram_vram() 651 static int amdgpu_bo_move(struct ttm_buffer_object *bo, bool evict, in amdgpu_bo_move() argument 685 r = amdgpu_move_vram_ram(bo, evict, ctx, new_mem); in amdgpu_bo_move() 688 r = amdgpu_move_ram_vram(bo, evict, ctx, new_mem); in amdgpu_bo_move() 690 r = amdgpu_move_blit(bo, evict, ctx->no_wait_gpu, in amdgpu_bo_move()
|
D | amdgpu_object.c | 1243 bool evict, in amdgpu_bo_move_notify() argument 1254 amdgpu_vm_bo_invalidate(adev, abo, evict); in amdgpu_bo_move_notify() 1259 if (evict) in amdgpu_bo_move_notify()
|
D | amdgpu_object.h | 277 bool evict,
|
/Linux-v4.19/drivers/gpu/drm/qxl/ |
D | qxl_ttm.c | 323 static int qxl_bo_move(struct ttm_buffer_object *bo, bool evict, in qxl_bo_move() argument 343 bool evict, in qxl_bo_move_notify() argument
|
/Linux-v4.19/Documentation/vm/ |
D | zswap.rst | 59 evict pages from its own compressed pool on an LRU basis and write them back to 78 cannot evict the oldest page, it can only reject new pages.
|
/Linux-v4.19/fs/ |
D | inode.c | 537 static void evict(struct inode *inode) in evict() function 593 evict(inode); in dispose_list() 1547 evict(inode); in iput_final()
|
/Linux-v4.19/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_ttm_buffer.c | 852 bool evict, in vmw_move_notify() argument
|