Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Brost <matthew.brost@intel.com>
To: Nirmoy Das <nirmoy.das@intel.com>
Cc: <intel-xe@lists.freedesktop.org>,
	Jonathan Cavitt <jonathan.cavitt@intel.com>,
	Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>,
	Matthew Auld <matthew.auld@intel.com>,
	Tejas Upadhyay <tejas.upadhyay@intel.com>
Subject: Re: [PATCH v2] drm/xe: Don't restart parallel queues multiple times on GT reset
Date: Tue, 22 Oct 2024 17:52:36 +0000	[thread overview]
Message-ID: <ZxfmZFL7JsFPm70x@DUT025-TGLU.fm.intel.com> (raw)
In-Reply-To: <20241022103555.731557-1-nirmoy.das@intel.com>

On Tue, Oct 22, 2024 at 12:35:55PM +0200, Nirmoy Das wrote:
> In case of parallel submissions multiple GuC id will point to the
> same exec queue and on GT reset such exec queues will get restarted
> multiple times which is not desirable.
> 
> v2: don't use exec_queue_enabled() which could race,
>     do the same for xe_guc_submit_stop (Matt B)
> 
> Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2295
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> Cc: Tejas Upadhyay <tejas.upadhyay@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_guc_submit.c | 14 ++++++++++++--
>  1 file changed, 12 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 0b81972ff651..0a7c4cb9272d 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1745,8 +1745,13 @@ void xe_guc_submit_stop(struct xe_guc *guc)
>  
>  	mutex_lock(&guc->submission_state.lock);
>  
> -	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q)
> +	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
> +		/* Prevent redundant attempts to stop parallel queues */
> +		if (q->guc->id != index)
> +			continue;
> +
>  		guc_exec_queue_stop(guc, q);
> +	}
>  
>  	mutex_unlock(&guc->submission_state.lock);
>  
> @@ -1784,8 +1789,13 @@ int xe_guc_submit_start(struct xe_guc *guc)
>  
>  	mutex_lock(&guc->submission_state.lock);
>  	atomic_dec(&guc->submission_state.stopped);
> -	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q)
> +	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
> +		/* Prevent redundant attempts to start parallel queues */
> +		if (q->guc->id != index)
> +			continue;
> +
>  		guc_exec_queue_start(q);
> +	}
>  	mutex_unlock(&guc->submission_state.lock);
>  
>  	wake_up_all(&guc->ct.wq);
> -- 
> 2.46.0
> 

      parent reply	other threads:[~2024-10-22 17:53 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-22 10:35 [PATCH v2] drm/xe: Don't restart parallel queues multiple times on GT reset Nirmoy Das
2024-10-22 11:39 ` ✓ CI.Patch_applied: success for drm/xe: Don't restart parallel queues multiple times on GT reset (rev2) Patchwork
2024-10-22 11:39 ` ✓ CI.checkpatch: " Patchwork
2024-10-22 11:40 ` ✓ CI.KUnit: " Patchwork
2024-10-22 11:51 ` ✓ CI.Build: " Patchwork
2024-10-22 11:54 ` ✓ CI.Hooks: " Patchwork
2024-10-22 11:55 ` ✓ CI.checksparse: " Patchwork
2024-10-22 12:16 ` ✓ CI.BAT: " Patchwork
2024-10-22 14:34 ` ✗ CI.FULL: failure " Patchwork
2024-10-23 11:30   ` Nirmoy Das
2024-10-22 17:52 ` Matthew Brost [this message]

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=ZxfmZFL7JsFPm70x@DUT025-TGLU.fm.intel.com \
    --to=matthew.brost@intel.com \
    --cc=himal.prasad.ghimiray@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jonathan.cavitt@intel.com \
    --cc=matthew.auld@intel.com \
    --cc=nirmoy.das@intel.com \
    --cc=tejas.upadhyay@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