On Tue, 2024-02-13 at 10:49 +0200, Jani Nikula wrote:
> The commit below changed drm_err_printer() arguments, but failed to
> update all places.
> 
> Reported-by: Stephen Rothwell <[email protected]>
> Closes:
> https://lore.kernel.org/r/[email protected]
> Fixes: 5e0c04c8c40b ("drm/print: make drm_err_printer() device
> specific by using drm_err()")
> Cc: Luca Coelho <[email protected]>
> Cc: Maxime Ripard <[email protected]>
> Cc: Thomas Hellström <[email protected]>
> Signed-off-by: Jani Nikula <[email protected]>

Reviewed-by: Thomas Hellström <[email protected]>

> 
> ---
> 
> Argh. This is getting embarrassing. This one was hiding behind
> CONFIG_DRM_XE_SIMPLE_ERROR_CAPTURE=y.
> ---
>  drivers/gpu/drm/xe/xe_guc_submit.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 4744668ef60a..0c763ceafbed 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -812,7 +812,8 @@ static void guc_exec_queue_print(struct
> xe_exec_queue *q, struct drm_printer *p)
>  static void simple_error_capture(struct xe_exec_queue *q)
>  {
>       struct xe_guc *guc = exec_queue_to_guc(q);
> -     struct drm_printer p = drm_err_printer("");
> +     struct xe_device *xe = guc_to_xe(guc);
> +     struct drm_printer p = drm_err_printer(&xe->drm, NULL);
>       struct xe_hw_engine *hwe;
>       enum xe_hw_engine_id id;
>       u32 adj_logical_mask = q->logical_mask;

Reply via email to