| /linux/net/core/ |
| A D | netdev_rx_queue.c | 12 void *new_mem, *old_mem; in netdev_rx_queue_restart() local 27 old_mem = kvzalloc(dev->queue_mgmt_ops->ndo_queue_mem_size, GFP_KERNEL); in netdev_rx_queue_restart() 28 if (!old_mem) { in netdev_rx_queue_restart() 41 err = dev->queue_mgmt_ops->ndo_queue_stop(dev, old_mem, rxq_idx); in netdev_rx_queue_restart() 49 dev->queue_mgmt_ops->ndo_queue_mem_free(dev, old_mem); in netdev_rx_queue_restart() 51 kvfree(old_mem); in netdev_rx_queue_restart() 64 if (dev->queue_mgmt_ops->ndo_queue_start(dev, old_mem, rxq_idx)) { in netdev_rx_queue_restart() 68 dev->queue_mgmt_ops->ndo_queue_mem_free(dev, old_mem); in netdev_rx_queue_restart() 75 kvfree(old_mem); in netdev_rx_queue_restart()
|
| /linux/drivers/gpu/drm/radeon/ |
| A D | radeon_ttm.c | 136 struct ttm_resource *old_mem) in radeon_move_blit() argument 146 old_start = (u64)old_mem->start << PAGE_SHIFT; in radeon_move_blit() 149 switch (old_mem->mem_type) { in radeon_move_blit() 157 DRM_ERROR("Unknown placement %d\n", old_mem->mem_type); in radeon_move_blit() 193 struct ttm_resource *old_mem = bo->resource; in radeon_bo_move() local 208 if (!old_mem || (old_mem->mem_type == TTM_PL_SYSTEM && in radeon_bo_move() 213 if (old_mem->mem_type == TTM_PL_SYSTEM && in radeon_bo_move() 219 if (old_mem->mem_type == TTM_PL_TT && in radeon_bo_move() 228 if ((old_mem->mem_type == TTM_PL_SYSTEM && in radeon_bo_move() 230 (old_mem->mem_type == TTM_PL_VRAM && in radeon_bo_move() [all …]
|
| /linux/drivers/gpu/drm/ttm/tests/ |
| A D | ttm_kunit_helpers.c | 65 struct ttm_resource *old_mem = bo->resource; in mock_move() local 67 if (!old_mem || (old_mem->mem_type == TTM_PL_SYSTEM && !bo->ttm)) { in mock_move() 81 if ((old_mem->mem_type == TTM_PL_SYSTEM && in mock_move() 83 (old_mem->mem_type == TTM_PL_TT && in mock_move()
|
| /linux/drivers/gpu/drm/qxl/ |
| A D | qxl_ttm.c | 141 struct ttm_resource *old_mem = bo->resource; in qxl_bo_move() local 144 if (!old_mem) { in qxl_bo_move() 161 if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) { in qxl_bo_move()
|
| /linux/drivers/gpu/drm/loongson/ |
| A D | lsdc_ttm.c | 165 struct ttm_resource *old_mem = tbo->resource; in lsdc_bo_move() local 178 if (!old_mem) { in lsdc_bo_move() 186 if (old_mem->mem_type == TTM_PL_SYSTEM && !tbo->ttm) { in lsdc_bo_move() 193 if (old_mem->mem_type == TTM_PL_SYSTEM && in lsdc_bo_move() 201 if (old_mem->mem_type == TTM_PL_TT && in lsdc_bo_move() 212 lsdc_mem_type_to_str(old_mem->mem_type), in lsdc_bo_move()
|
| /linux/drivers/gpu/drm/amd/amdgpu/ |
| A D | amdgpu_ttm.c | 376 struct ttm_resource *old_mem) in amdgpu_move_blit() argument 386 src.mem = old_mem; in amdgpu_move_blit() 399 if (old_mem->mem_type == TTM_PL_VRAM && in amdgpu_move_blit() 505 if (!old_mem || (old_mem->mem_type == TTM_PL_SYSTEM && in amdgpu_bo_move() 511 if (old_mem->mem_type == TTM_PL_SYSTEM && in amdgpu_bo_move() 518 if ((old_mem->mem_type == TTM_PL_TT || in amdgpu_bo_move() 532 if (old_mem->mem_type == AMDGPU_PL_GDS || in amdgpu_bo_move() 533 old_mem->mem_type == AMDGPU_PL_GWS || in amdgpu_bo_move() 534 old_mem->mem_type == AMDGPU_PL_OA || in amdgpu_bo_move() 548 old_mem->mem_type != TTM_PL_VRAM) { in amdgpu_bo_move() [all …]
|
| A D | amdgpu_object.c | 1153 struct ttm_resource *old_mem = bo->resource; in amdgpu_bo_move_notify() local 1165 old_mem && old_mem->mem_type != TTM_PL_SYSTEM) in amdgpu_bo_move_notify() 1170 old_mem ? old_mem->mem_type : -1); in amdgpu_bo_move_notify()
|
| /linux/drivers/gpu/drm/nouveau/ |
| A D | nouveau_bo.c | 827 struct nouveau_mem *old_mem = nouveau_mem(bo->resource); in nouveau_bo_move_prep() local 832 ret = nvif_vmm_get(vmm, LAZY, false, old_mem->mem.page, 0, in nouveau_bo_move_prep() 833 old_mem->mem.size, &old_mem->vma[0]); in nouveau_bo_move_prep() 838 new_mem->mem.size, &old_mem->vma[1]); in nouveau_bo_move_prep() 842 ret = nouveau_mem_map(old_mem, vmm, &old_mem->vma[0]); in nouveau_bo_move_prep() 846 ret = nouveau_mem_map(new_mem, vmm, &old_mem->vma[1]); in nouveau_bo_move_prep() 849 nvif_vmm_put(vmm, &old_mem->vma[1]); in nouveau_bo_move_prep() 850 nvif_vmm_put(vmm, &old_mem->vma[0]); in nouveau_bo_move_prep()
|
| /linux/drivers/gpu/drm/xe/ |
| A D | xe_bo.c | 609 struct ttm_resource *old_mem = ttm_bo->resource; in xe_bo_move_notify() local 610 u32 old_mem_type = old_mem ? old_mem->mem_type : XE_PL_SYSTEM; in xe_bo_move_notify() 652 struct ttm_resource *old_mem = ttm_bo->resource; in xe_bo_move() local 653 u32 old_mem_type = old_mem ? old_mem->mem_type : XE_PL_SYSTEM; in xe_bo_move() 665 if ((!old_mem && ttm) && !handle_system_ccs) { in xe_bo_move() 683 move_lacks_source = !old_mem || (handle_system_ccs ? (!bo->ccs_cleared) : in xe_bo_move() 816 fence = xe_migrate_copy(migrate, bo, bo, old_mem, in xe_bo_move()
|
| /linux/drivers/gpu/drm/vmwgfx/ |
| A D | vmwgfx_ttm_buffer.c | 472 struct ttm_resource *old_mem, in vmw_move_notify() argument 476 vmw_query_move_notify(bo, old_mem, new_mem); in vmw_move_notify()
|
| A D | vmwgfx_resource.c | 839 struct ttm_resource *old_mem, in vmw_query_move_notify() argument 849 if (old_mem && in vmw_query_move_notify() 851 old_mem->mem_type == VMW_PL_MOB) { in vmw_query_move_notify()
|
| A D | vmwgfx_drv.h | 822 struct ttm_resource *old_mem,
|