[PATCH] drm/amdgpu: prevent spurious warning

Russell, Kent Kent.Russell at amd.com
Wed Oct 7 15:12:00 UTC 2020


[AMD Public Use]

Reviewed-by: Kent Russell <kent.russell at amd.com>

 Kent

> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> On Behalf Of Alex Deucher
> Sent: Tuesday, October 6, 2020 9:27 AM
> To: amd-gfx at lists.freedesktop.org
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>
> Subject: [PATCH] drm/amdgpu: prevent spurious warning
> 
> The default auto setting for kcq should not generate
> a warning.
> 
> Fixes: a300de40f66b ("drm/amdgpu: introduce a new parameter to configure how many
> KCQ we want(v5)")
> Signed-off-by: Alex Deucher <alexander.deucher at amd.com>
> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 5a26894dc635..7f26408c0d76 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -1372,7 +1372,9 @@ static int amdgpu_device_check_arguments(struct
> amdgpu_device *adev)
> 
>  	amdgpu_gmc_tmz_set(adev);
> 
> -	if (amdgpu_num_kcq > 8 || amdgpu_num_kcq < 0) {
> +	if (amdgpu_num_kcq == -1) {
> +		amdgpu_num_kcq = 8;
> +	} else if (amdgpu_num_kcq > 8 || amdgpu_num_kcq < 0) {
>  		amdgpu_num_kcq = 8;
>  		dev_warn(adev->dev, "set kernel compute queue number to 8 due to
> invalid parameter provided by user\n");
>  	}
> --
> 2.25.4
> 
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.or
> g%2Fmailman%2Flistinfo%2Famd-
> gfx&data=02%7C01%7Ckent.russell%40amd.com%7C4a54f0460acd4e92a43e08d869fb
> 8d14%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637375876466082586&
> sdata=rRpRoxlz6PIjDnhRPFPCom4Nn599DoVRG4Dl5iOlZRE%3D&reserved=0


More information about the amd-gfx mailing list