Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Revert "drm/amdgpu: Set no-retry as default."

This reverts commit 51bfac71cade386966791a8db87a5912781d249f.

This causes stability issues on some raven boards. Revert
for now until a proper fix is completed.

Bug: https://gitlab.freedesktop.org/drm/amd/issues/934
Bug: https://bugzilla.kernel.org/show_bug.cgi?id=206017
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

+2 -2
+2 -2
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
··· 142 142 int amdgpu_mcbp = 0; 143 143 int amdgpu_discovery = -1; 144 144 int amdgpu_mes = 0; 145 - int amdgpu_noretry = 1; 145 + int amdgpu_noretry; 146 146 int amdgpu_force_asic_type = -1; 147 147 148 148 struct amdgpu_mgpu_info mgpu_info = { ··· 588 588 module_param_named(mes, amdgpu_mes, int, 0444); 589 589 590 590 MODULE_PARM_DESC(noretry, 591 - "Disable retry faults (0 = retry enabled, 1 = retry disabled (default))"); 591 + "Disable retry faults (0 = retry enabled (default), 1 = retry disabled)"); 592 592 module_param_named(noretry, amdgpu_noretry, int, 0644); 593 593 594 594 /**