Skip to content

Commit 7aec9ec

Browse files
committed
Revert "drm/amdgpu: Set no-retry as default."
This reverts commit 51bfac7. 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 <[email protected]> Reviewed-by: Christian König <[email protected]> Signed-off-by: Alex Deucher <[email protected]> Cc: [email protected]
1 parent a6204fc commit 7aec9ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ int amdgpu_async_gfx_ring = 1;
142142
int amdgpu_mcbp = 0;
143143
int amdgpu_discovery = -1;
144144
int amdgpu_mes = 0;
145-
int amdgpu_noretry = 1;
145+
int amdgpu_noretry;
146146
int amdgpu_force_asic_type = -1;
147147

148148
struct amdgpu_mgpu_info mgpu_info = {
@@ -588,7 +588,7 @@ MODULE_PARM_DESC(mes,
588588
module_param_named(mes, amdgpu_mes, int, 0444);
589589

590590
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)");
592592
module_param_named(noretry, amdgpu_noretry, int, 0644);
593593

594594
/**

0 commit comments

Comments
 (0)