Re: [PATCH] drm/radeon: make fence wait in suballocator uninterrruptable

2023-09-07 Thread Christian König
Am 06.09.23 um 21:55 schrieb Alex Deucher: Commit 254986e324ad ("drm/radeon: Use the drm suballocation manager implementation.") made the fence wait in amdgpu_sa_bo_new() interruptible but there is no code to handle an interrupt. This caused the kernel to randomly explode in high-VRAM-pressure s

[PATCH] drm/radeon: make fence wait in suballocator uninterrruptable

2023-09-06 Thread Alex Deucher
Commit 254986e324ad ("drm/radeon: Use the drm suballocation manager implementation.") made the fence wait in amdgpu_sa_bo_new() interruptible but there is no code to handle an interrupt. This caused the kernel to randomly explode in high-VRAM-pressure situations so make it uninterruptible again.