What does HRESULT 0xC0262109 (ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION) mean?

 
Previous Next
ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE

ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION

ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION (0xC0262109) means the memory manager needed to evict an allocation but could not because the allocation was pinned. A pinned allocation must be unpinned or released before it can be moved out of the required segment.

What to check

  • Release locks, mappings, or explicit pins before requesting operations that require the allocation to be evicted.
  • Review the resource budget and avoid keeping large allocations permanently resident without a need.
  • If it follows a device reset, recreate resources rather than trying to preserve pre-reset pin state.

Useful command

Get-CimInstance Win32_VideoController | Select-Object Name, AdapterRAM, DriverVersion

Microsoft: Display/Graphics overview

Microsoft: WDDM timeout detection and recovery

Microsoft: Graphics error codes


Looking for a different code? Search another status or error code.