Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Mika Kuoppala <mika.kuoppala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915/gt: Mark up intel_rps.active for racy reads
Date: Mon, 09 Mar 2020 14:52:50 +0200	[thread overview]
Message-ID: <87pndl3d25.fsf@gaia.fi.intel.com> (raw)
In-Reply-To: <20200309113623.24208-1-chris@chris-wilson.co.uk>

Chris Wilson <chris@chris-wilson.co.uk> writes:

> We read the current state of intel_rps.active outside of the lock, so
> mark up the racy access.
>
> [  525.037073] BUG: KCSAN: data-race in intel_rps_boost [i915] / intel_rps_park [i915]
> [  525.037091]
> [  525.037103] write to 0xffff8881f145efa1 of 1 bytes by task 192 on cpu 2:
> [  525.037331]  intel_rps_park+0x72/0x230 [i915]
> [  525.037552]  __gt_park+0x61/0xa0 [i915]
> [  525.037771]  ____intel_wakeref_put_last+0x42/0x90 [i915]
> [  525.037991]  __intel_wakeref_put_work+0xd3/0xf0 [i915]
> [  525.038008]  process_one_work+0x3b1/0x690
> [  525.038022]  worker_thread+0x80/0x670
> [  525.038037]  kthread+0x19a/0x1e0
> [  525.038051]  ret_from_fork+0x1f/0x30
> [  525.038062]
> [  525.038074] read to 0xffff8881f145efa1 of 1 bytes by task 733 on cpu 3:
> [  525.038304]  intel_rps_boost+0x67/0x1f0 [i915]
> [  525.038535]  i915_request_wait+0x562/0x5d0 [i915]
> [  525.038764]  i915_gem_object_wait_fence+0x81/0xa0 [i915]
> [  525.038994]  i915_gem_object_wait_reservation+0x489/0x520 [i915]
> [  525.039224]  i915_gem_wait_ioctl+0x167/0x2b0 [i915]
> [  525.039241]  drm_ioctl_kernel+0xe4/0x120
> [  525.039255]  drm_ioctl+0x297/0x4c7
> [  525.039269]  ksys_ioctl+0x89/0xb0
> [  525.039282]  __x64_sys_ioctl+0x42/0x60
> [  525.039296]  do_syscall_64+0x6e/0x2c0
> [  525.039311]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>

> ---
>  drivers/gpu/drm/i915/gt/intel_rps.c | 12 ++++++++----
>  1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/intel_rps.c b/drivers/gpu/drm/i915/gt/intel_rps.c
> index 8794d399f5cd..506738dede16 100644
> --- a/drivers/gpu/drm/i915/gt/intel_rps.c
> +++ b/drivers/gpu/drm/i915/gt/intel_rps.c
> @@ -644,7 +644,7 @@ void intel_rps_mark_interactive(struct intel_rps *rps, bool interactive)
>  {
>  	mutex_lock(&rps->power.mutex);
>  	if (interactive) {
> -		if (!rps->power.interactive++ && rps->active)
> +		if (!rps->power.interactive++ && READ_ONCE(rps->active))
>  			rps_set_power(rps, HIGH_POWER);
>  	} else {
>  		GEM_BUG_ON(!rps->power.interactive);
> @@ -721,11 +721,15 @@ void intel_rps_unpark(struct intel_rps *rps)
>  	 * performance, jump directly to RPe as our starting frequency.
>  	 */
>  	mutex_lock(&rps->lock);
> -	rps->active = true;
> +
> +	WRITE_ONCE(rps->active, true);
> +
>  	freq = max(rps->cur_freq, rps->efficient_freq),
>  	freq = clamp(freq, rps->min_freq_softlimit, rps->max_freq_softlimit);
>  	intel_rps_set(rps, freq);
> +
>  	rps->last_adj = 0;
> +
>  	mutex_unlock(&rps->lock);
>  
>  	if (INTEL_GEN(rps_to_i915(rps)) >= 6)
> @@ -745,7 +749,7 @@ void intel_rps_park(struct intel_rps *rps)
>  	if (INTEL_GEN(i915) >= 6)
>  		rps_disable_interrupts(rps);
>  
> -	rps->active = false;
> +	WRITE_ONCE(rps->active, false);
>  	if (rps->last_freq <= rps->idle_freq)
>  		return;
>  
> @@ -772,7 +776,7 @@ void intel_rps_boost(struct i915_request *rq)
>  	struct intel_rps *rps = &rq->engine->gt->rps;
>  	unsigned long flags;
>  
> -	if (i915_request_signaled(rq) || !rps->active)
> +	if (i915_request_signaled(rq) || !READ_ONCE(rps->active))
>  		return;
>  
>  	/* Serializes with i915_request_retire() */
> -- 
> 2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2020-03-09 12:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-09 11:36 [Intel-gfx] [PATCH] drm/i915/gt: Mark up intel_rps.active for racy reads Chris Wilson
2020-03-09 12:52 ` Mika Kuoppala [this message]
2020-03-09 13:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2020-03-09 19:41 ` [Intel-gfx] ✓ Fi.CI.IGT: " 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=87pndl3d25.fsf@gaia.fi.intel.com \
    --to=mika.kuoppala@linux.intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    /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