public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Dixit, Ashutosh" <ashutosh.dixit@intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: intel-gfx@lists.freedesktop.org,
	Dan Carpenter <dan.carpenter@oracle.com>
Subject: Re: [Intel-gfx] [PATCH] drm/i915/slpc: Fix inconsistent locked return
Date: Tue, 30 Aug 2022 14:23:28 -0700	[thread overview]
Message-ID: <877d2pzar3.wl-ashutosh.dixit@intel.com> (raw)
In-Reply-To: <20220830193537.52201-1-rodrigo.vivi@intel.com>

On Tue, 30 Aug 2022 12:35:37 -0700, Rodrigo Vivi wrote:
>
> Fix for intel_guc_slpc_set_min_freq() warn:
> inconsistent returns '&slpc->lock'.
>
> v2: Avoid with_intel_runtime_pm with the
>     internal goto/return. (Ashutosh)
>     Also standardize the 'ret' if this came from
>     the efficient setup. And avoid the 'unlikely'.

Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>

> Fixes: 95ccf312a1e4 ("drm/i915/guc/slpc: Allow SLPC to use efficient frequency")
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
>  drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 40 ++++++++++-----------
>  1 file changed, 20 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> index 9d49ccef03bb..fdd895f73f9f 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> @@ -467,33 +467,33 @@ int intel_guc_slpc_set_min_freq(struct intel_guc_slpc *slpc, u32 val)
>
>	/* Need a lock now since waitboost can be modifying min as well */
>	mutex_lock(&slpc->lock);
> -
> -	with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
> -
> -		/* Ignore efficient freq if lower min freq is requested */
> -		ret = slpc_set_param(slpc,
> -				     SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> -				     val < slpc->rp1_freq);
> -		if (unlikely(ret)) {
> -			i915_probe_error(i915, "Failed to toggle efficient freq (%pe)\n",
> -					 ERR_PTR(ret));
> -			return ret;
> -		}
> -
> -		ret = slpc_set_param(slpc,
> -				     SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> -				     val);
> -
> -		/* Return standardized err code for sysfs calls */
> -		if (ret)
> -			ret = -EIO;
> +	wakeref = intel_runtime_pm_get(&i915->runtime_pm);
> +
> +	/* Ignore efficient freq if lower min freq is requested */
> +	ret = slpc_set_param(slpc,
> +			     SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> +			     val < slpc->rp1_freq);
> +	if (ret) {
> +		i915_probe_error(i915, "Failed to toggle efficient freq (%pe)\n",
> +				 ERR_PTR(ret));
> +		goto out;
>	}
>
> +	ret = slpc_set_param(slpc,
> +			     SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> +			     val);
> +
>	if (!ret)
>		slpc->min_freq_softlimit = val;
>
> +out:
> +	intel_runtime_pm_put(&i915->runtime_pm, wakeref);
>	mutex_unlock(&slpc->lock);
>
> +	/* Return standardized err code for sysfs calls */
> +	if (ret)
> +		ret = -EIO;
> +
>	return ret;
>  }
>
> --
> 2.37.2
>

  reply	other threads:[~2022-08-30 21:23 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-30 15:02 [Intel-gfx] [PATCH] drm/i915/slpc: Fix inconsistent locked return Rodrigo Vivi
2022-08-30 15:23 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2022-08-30 15:30 ` [Intel-gfx] [PATCH] " Dixit, Ashutosh
2022-08-30 19:35   ` Rodrigo Vivi
2022-08-30 21:23     ` Dixit, Ashutosh [this message]
2022-08-30 15:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-08-30 21:17 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/slpc: Fix inconsistent locked return (rev2) Patchwork
2022-08-31 16:22 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877d2pzar3.wl-ashutosh.dixit@intel.com \
    --to=ashutosh.dixit@intel.com \
    --cc=dan.carpenter@oracle.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=rodrigo.vivi@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox