All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp()
@ 2021-03-05 14:23 Holger Hoffstätte
  2021-03-05 19:24 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: Holger Hoffstätte @ 2021-03-05 14:23 UTC (permalink / raw)
  To: amd-gfx

After fixing nested FPU contexts caused by 41401ac67791 we're still seeing
complaints about spurious kernel_fpu_end(). As it turns out this was
already fixed for dcn20 in commit f41ed88cbd ("drm/amdgpu/display:
use GFP_ATOMIC in dcn20_validate_bandwidth_internal") but never moved
forward to dcn21.

Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
---
  drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
index 072f8c880924..1acadf9f5619 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
@@ -1339,7 +1339,7 @@ static noinline bool dcn21_validate_bandwidth_fp(struct dc *dc,
  	int vlevel = 0;
  	int pipe_split_from[MAX_PIPES];
  	int pipe_cnt = 0;
-	display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_KERNEL);
+	display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC);
  	DC_LOGGER_INIT(dc->ctx->logger);
  
  	BW_VAL_TRACE_COUNT();
-- 
2.30.1
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp()
  2021-03-05 14:23 [PATCH] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp() Holger Hoffstätte
@ 2021-03-05 19:24 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2021-03-05 19:24 UTC (permalink / raw)
  To: Holger Hoffstätte; +Cc: amd-gfx list

On Fri, Mar 5, 2021 at 9:23 AM Holger Hoffstätte
<holger@applied-asynchrony.com> wrote:
>
> After fixing nested FPU contexts caused by 41401ac67791 we're still seeing
> complaints about spurious kernel_fpu_end(). As it turns out this was
> already fixed for dcn20 in commit f41ed88cbd ("drm/amdgpu/display:
> use GFP_ATOMIC in dcn20_validate_bandwidth_internal") but never moved
> forward to dcn21.
>
> Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>

Applied.  Thanks!

Alex

> ---
>   drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
> index 072f8c880924..1acadf9f5619 100644
> --- a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
> +++ b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
> @@ -1339,7 +1339,7 @@ static noinline bool dcn21_validate_bandwidth_fp(struct dc *dc,
>         int vlevel = 0;
>         int pipe_split_from[MAX_PIPES];
>         int pipe_cnt = 0;
> -       display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_KERNEL);
> +       display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC);
>         DC_LOGGER_INIT(dc->ctx->logger);
>
>         BW_VAL_TRACE_COUNT();
> --
> 2.30.1
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2021-03-05 19:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-05 14:23 [PATCH] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp() Holger Hoffstätte
2021-03-05 19:24 ` Alex Deucher

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.