[PATCH] drm/xe/debugfs: Add missing xe_pm_runtime_put in wedge_mode_set

Rodrigo Vivi rodrigo.vivi at intel.com
Thu Feb 13 23:22:30 UTC 2025


On Thu, Feb 13, 2025 at 11:03:22PM +0000, Shuicheng Lin wrote:
> xe_pm_runtime_put is missed in the failure path.
> 
> Cc: Rodrigo Vivi <rodrigo.vivi at intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin at intel.com>
> ---
>  drivers/gpu/drm/xe/xe_debugfs.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
> index 56cb3788e752..761e00cb6437 100644
> --- a/drivers/gpu/drm/xe/xe_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
> @@ -176,6 +176,7 @@ static ssize_t wedged_mode_set(struct file *f, const char __user *ubuf,
>  		ret = xe_guc_ads_scheduler_policy_toggle_reset(&gt->uc.guc.ads);
>  		if (ret) {
>  			xe_gt_err(gt, "Failed to update GuC ADS scheduler policy. GuC may still cause engine reset even with wedged_mode=2\n");
> +			xe_pm_runtime_put(xe);

to ensure a git-grep alignment in the balance we try to use goto
in cases like this...

so it would be something like

ssize_t ret = size;

- return -EIO;
+ ret = -EIO;
+ goto out;


+out
xe_pm_runtime_put(xe);

- return size;
+ return ret;

But well, the code itself is right and better to protect.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi at intel.com>

just let me know if you are taking the goto approach or if I should
get this one merged.

Thanks,
Rodrigo.

>  			return -EIO;
>  		}
>  	}
> -- 
> 2.25.1
> 


More information about the Intel-xe mailing list