All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "drm/amdgpu: Set no-retry as default."
@ 2020-01-06 20:45 Alex Deucher
  2020-01-06 21:39 ` Felix Kuehling
  2020-01-07  8:02 ` Christian König
  0 siblings, 2 replies; 3+ messages in thread
From: Alex Deucher @ 2020-01-06 20:45 UTC (permalink / raw)
  To: amd-gfx; +Cc: Alex Deucher

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
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 0ffc9447b573..3036ec883fb4 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -142,7 +142,7 @@ int amdgpu_async_gfx_ring = 1;
 int amdgpu_mcbp = 0;
 int amdgpu_discovery = -1;
 int amdgpu_mes = 0;
-int amdgpu_noretry = 1;
+int amdgpu_noretry;
 int amdgpu_force_asic_type = -1;
 
 struct amdgpu_mgpu_info mgpu_info = {
@@ -588,7 +588,7 @@ MODULE_PARM_DESC(mes,
 module_param_named(mes, amdgpu_mes, int, 0444);
 
 MODULE_PARM_DESC(noretry,
-	"Disable retry faults (0 = retry enabled, 1 = retry disabled (default))");
+	"Disable retry faults (0 = retry enabled (default), 1 = retry disabled)");
 module_param_named(noretry, amdgpu_noretry, int, 0644);
 
 /**
-- 
2.24.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Revert "drm/amdgpu: Set no-retry as default."
  2020-01-06 20:45 [PATCH] Revert "drm/amdgpu: Set no-retry as default." Alex Deucher
@ 2020-01-06 21:39 ` Felix Kuehling
  2020-01-07  8:02 ` Christian König
  1 sibling, 0 replies; 3+ messages in thread
From: Felix Kuehling @ 2020-01-06 21:39 UTC (permalink / raw)
  To: amd-gfx, Deucher, Alexander

On 2020-01-06 3:45 p.m., Alex Deucher wrote:
> 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
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>


> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> index 0ffc9447b573..3036ec883fb4 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> @@ -142,7 +142,7 @@ int amdgpu_async_gfx_ring = 1;
>   int amdgpu_mcbp = 0;
>   int amdgpu_discovery = -1;
>   int amdgpu_mes = 0;
> -int amdgpu_noretry = 1;
> +int amdgpu_noretry;
>   int amdgpu_force_asic_type = -1;
>   
>   struct amdgpu_mgpu_info mgpu_info = {
> @@ -588,7 +588,7 @@ MODULE_PARM_DESC(mes,
>   module_param_named(mes, amdgpu_mes, int, 0444);
>   
>   MODULE_PARM_DESC(noretry,
> -	"Disable retry faults (0 = retry enabled, 1 = retry disabled (default))");
> +	"Disable retry faults (0 = retry enabled (default), 1 = retry disabled)");
>   module_param_named(noretry, amdgpu_noretry, int, 0644);
>   
>   /**
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Revert "drm/amdgpu: Set no-retry as default."
  2020-01-06 20:45 [PATCH] Revert "drm/amdgpu: Set no-retry as default." Alex Deucher
  2020-01-06 21:39 ` Felix Kuehling
@ 2020-01-07  8:02 ` Christian König
  1 sibling, 0 replies; 3+ messages in thread
From: Christian König @ 2020-01-07  8:02 UTC (permalink / raw)
  To: Alex Deucher, amd-gfx; +Cc: Alex Deucher

Am 06.01.20 um 21:45 schrieb Alex Deucher:
> 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
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> index 0ffc9447b573..3036ec883fb4 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> @@ -142,7 +142,7 @@ int amdgpu_async_gfx_ring = 1;
>   int amdgpu_mcbp = 0;
>   int amdgpu_discovery = -1;
>   int amdgpu_mes = 0;
> -int amdgpu_noretry = 1;
> +int amdgpu_noretry;
>   int amdgpu_force_asic_type = -1;
>   
>   struct amdgpu_mgpu_info mgpu_info = {
> @@ -588,7 +588,7 @@ MODULE_PARM_DESC(mes,
>   module_param_named(mes, amdgpu_mes, int, 0444);
>   
>   MODULE_PARM_DESC(noretry,
> -	"Disable retry faults (0 = retry enabled, 1 = retry disabled (default))");
> +	"Disable retry faults (0 = retry enabled (default), 1 = retry disabled)");
>   module_param_named(noretry, amdgpu_noretry, int, 0644);
>   
>   /**

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-07  8:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-06 20:45 [PATCH] Revert "drm/amdgpu: Set no-retry as default." Alex Deucher
2020-01-06 21:39 ` Felix Kuehling
2020-01-07  8:02 ` Christian König

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.