-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from mariux64/amdgpu-gpurecovery
Set module parameter gpu_recovery=1 for amdgpu
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Sometimes we have this on "fenchurch": | ||
# | ||
# kernel: [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, signaled seq=16634335, emitted seq=16634337 | ||
# kernel: [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process Xorg pid 718 thread Xorg:cs0 pid 719 | ||
# kernel: amdgpu 0000:01:00.0: amdgpu: GPU recovery disabled. | ||
# | ||
# From drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c: | ||
# | ||
# ** | ||
# * DOC: gpu_recovery (int) | ||
# * Set to enable GPU recovery mechanism (1 = enable, 0 = disable). The default is -1 (auto, disabled except SRIOV). | ||
# */ | ||
# MODULE_PARM_DESC(gpu_recovery, "Enable GPU recovery mechanism, (2 = advanced tdr mode, 1 = enable, 0 = disable, -1 = auto)"); | ||
# module_param_named(gpu_recovery, amdgpu_gpu_recovery, int, 0444); | ||
# | ||
# So give it a try | ||
|
||
options amdgpu gpu_recovery=1 |