Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Bai, Zongyao" <zongyao.bai@intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <jia.yao@intel.com>,
	<matthew.brost@intel.com>
Subject: Re: [PATCH v5 1/4] drm/xe/forcewake: synchronize engine-cycle access with unplug
Date: Thu, 3 Sep 2026 11:29:49 -0700	[thread overview]
Message-ID: <9f2c10b8-ff61-40c5-a602-0bd1eb08a775@intel.com> (raw)
In-Reply-To: <apmeaQJPDe0aryMJ@intel.com>


On 9/3/2026 9:20 AM, Rodrigo Vivi wrote:
> On Thu, Aug 13, 2026 at 12:06:51AM +0000, Zongyao Bai wrote:
>> Prepare engine-cycle queries for delayed forcewake release by
>> protecting their forcewake and MMIO section with drm_dev_enter(). This
>> lets unplug wait for admitted queries before flushing delayed-release
>> timers.
>>
>> Use drm_dev_unplug() on post-registration probe failure to provide the
>> same synchronization before teardown.
>>
>> Assisted-by: GitHub-Copilot:gpt-5.6-sol
>> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_device.c |  2 +-
>>   drivers/gpu/drm/xe/xe_query.c  | 34 ++++++++++++++++++++++++++--------
>>   2 files changed, 27 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
>> index 71111ad32465..81b31325e581 100644
>> --- a/drivers/gpu/drm/xe/xe_device.c
>> +++ b/drivers/gpu/drm/xe/xe_device.c
>> @@ -1166,7 +1166,7 @@ int xe_device_probe(struct xe_device *xe)
>>   
>>   err_unregister_display:
>>   	xe_display_unregister(xe);
>> -	drm_dev_unregister(&xe->drm);
>> +	drm_dev_unplug(&xe->drm);
>>   
>>   	return err;
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
>> index dc975f595368..3c356bc48e2a 100644
>> --- a/drivers/gpu/drm/xe/xe_query.c
>> +++ b/drivers/gpu/drm/xe/xe_query.c
>> @@ -8,6 +8,7 @@
>>   #include <linux/nospec.h>
>>   #include <linux/sched/clock.h>
>>   
>> +#include <drm/drm_drv.h>
>>   #include <drm/ttm/ttm_placement.h>
>>   #include <generated/xe_wa_oob.h>
>>   #include <uapi/drm/xe_drm.h>
>> @@ -123,6 +124,7 @@ query_engine_cycles(struct xe_device *xe,
>>   	__ktime_func_t cpu_clock;
>>   	struct xe_hw_engine *hwe;
>>   	struct xe_gt *gt;
>> +	int dev_idx, err = 0;
> use ret instead of err, then...
>
>>   
>>   	if (IS_SRIOV_VF(xe))
>>   		return -EOPNOTSUPP;
>> @@ -143,28 +145,44 @@ query_engine_cycles(struct xe_device *xe,
>>   		return -EINVAL;
>>   
>>   	eci = &resp.eci;
>> +	if (!drm_dev_enter(&xe->drm, &dev_idx))
>> +		return -ENODEV;
>> +
>>   	gt = xe_device_get_gt(xe, eci->gt_id);
>> -	if (!gt)
>> -		return -EINVAL;
>> +	if (!gt) {
>> +		err = -EINVAL;
>> +		goto out;
>> +	}
>>   
>> -	if (eci->engine_class >= ARRAY_SIZE(user_to_xe_engine_class))
>> -		return -EINVAL;
>> +	if (eci->engine_class >= ARRAY_SIZE(user_to_xe_engine_class)) {
>> +		err = -EINVAL;
>> +		goto out;
>> +	}
>>   
>>   	hwe = xe_gt_hw_engine(gt, user_to_xe_engine_class[eci->engine_class],
>>   			      eci->engine_instance, true);
>> -	if (!hwe)
>> -		return -EINVAL;
>> +	if (!hwe) {
>> +		err = -EINVAL;
>> +		goto out;
>> +	}
>>   
>>   	fw_domain = xe_hw_engine_to_fw_domain(hwe);
>>   
>>   	xe_with_force_wake(fw_ref, gt_to_fw(gt), fw_domain) {
>> -		if (!xe_force_wake_ref_has_domain(fw_ref.domains, fw_domain))
>> -			return -EIO;
>> +		if (!xe_force_wake_ref_has_domain(fw_ref.domains, fw_domain)) {
>> +			err = -EIO;
>> +			goto out;
>> +		}
>>   
>>   		hwe_read_timestamp(hwe, &resp.engine_cycles, &resp.cpu_timestamp,
>>   				   &resp.cpu_delta, cpu_clock);
>>   	}
>>   
>> +out:
>> +	drm_dev_exit(dev_idx);
>> +	if (err)
> oh no!
> never to the if (err) after the goto! Sashiko is absolutely right!
>
> ... then you move this to the very end and simply:
>
> out:
> 	drm_dev_exit(dev_idx);
> 	return ret;

Thank you Vivi

Got it.

I will try to remove goto label to met both of the review requirements.

=====================================================

Re: [PATCH v5 4/4] drm/xe/forcewake: enable configurable delayed 
forcewake release
 > [Severity: Low]
 > Does this code mix goto-based error handling with scope-based cleanup 
macros?
 >
 > According to the cleanup subsystem guidelines, the expectation is 
that usage of
 > goto and cleanup helpers is never mixed in the same function.

Yes, I agree this is code style issue,
this function contains both a goto out and the 
xe_with_force_wake_delay() scope macro.
And this issue is introduced by path [PATCH v5 1/4], but not in this patch.

It may need split query_engine_cycles to two to avoid goto.
Since this appears to be more of a coding style preference,
I'd like to wait for consensus from other reviewers before updating it.

>
>> +		return err;
>> +
>>   	if (GRAPHICS_VER(xe) >= 20)
>>   		resp.width = 64;
>>   	else
>> -- 
>> 2.43.0
>>

  reply	other threads:[~2026-09-03 18:29 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-01 21:38 [PATCH] drm/xe/forcewake: add delayed-release optimization Zongyao Bai
2026-06-01 22:37 ` ✓ CI.KUnit: success for " Patchwork
2026-06-01 23:15 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-02  8:13 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-11  1:03 ` [PATCH v2] " Zongyao Bai
2026-06-11 11:59   ` Maarten Lankhorst
2026-06-18 21:18     ` Bai, Zongyao
2026-06-11  1:13 ` ✓ CI.KUnit: success for drm/xe/forcewake: add delayed-release optimization (rev2) Patchwork
2026-06-11  1:58 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-11  3:09 ` [PATCH] drm/xe/forcewake: add delayed-release optimization Matthew Brost
2026-06-11  3:15   ` Matthew Brost
2026-06-25  1:37     ` Bai, Zongyao
2026-06-11 11:29 ` ✓ Xe.CI.FULL: success for drm/xe/forcewake: add delayed-release optimization (rev2) Patchwork
2026-06-25  8:19 ` [PATCH v3] drm/xe/forcewake: add delayed-release optimization Zongyao Bai
2026-06-25  8:51 ` ✓ CI.KUnit: success for drm/xe/forcewake: add delayed-release optimization (rev3) Patchwork
2026-06-25  9:26 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-06-25 10:55 ` ✗ Xe.CI.FULL: " Patchwork
2026-07-20 22:13 ` [PATCH v4] drm/xe/forcewake: add delayed-release optimization Zongyao Bai
2026-07-21 22:43   ` Matthew Brost
2026-07-20 22:18 ` ✗ CI.checkpatch: warning for drm/xe/forcewake: add delayed-release optimization (rev4) Patchwork
2026-07-20 22:20 ` ✓ CI.KUnit: success " Patchwork
2026-07-20 22:54 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-21  5:00 ` ✓ Xe.CI.FULL: " Patchwork
2026-08-13  0:06 ` [PATCH v5 0/4] drm/xe/forcewake: add delayed-release optimization Zongyao Bai
2026-08-13  0:06   ` [PATCH v5 1/4] drm/xe/forcewake: synchronize engine-cycle access with unplug Zongyao Bai
2026-08-13  0:21     ` sashiko-bot
2026-08-13 20:48       ` Bai, Zongyao
2026-08-19 18:29     ` Yao, Jia
2026-09-03 16:20     ` Rodrigo Vivi
2026-09-03 18:29       ` Bai, Zongyao [this message]
2026-08-13  0:06   ` [PATCH v5 2/4] drm/xe/forcewake: add delayed-release state machine Zongyao Bai
2026-08-13  0:23     ` sashiko-bot
2026-08-13 21:28       ` Bai, Zongyao
2026-09-03 16:12         ` Rodrigo Vivi
2026-09-04  0:25           ` Bai, Zongyao
2026-08-20 23:07     ` Yao, Jia
2026-08-13  0:06   ` [PATCH v5 3/4] drm/xe/forcewake: flush delayed release at power boundaries Zongyao Bai
2026-08-13  0:23     ` sashiko-bot
2026-08-13 22:06       ` Bai, Zongyao
2026-08-20 23:07     ` Yao, Jia
2026-08-13  0:06   ` [PATCH v5 4/4] drm/xe/forcewake: enable configurable delayed forcewake release Zongyao Bai
2026-08-13  0:18     ` sashiko-bot
2026-08-13 23:14       ` Bai, Zongyao
2026-08-19 18:05     ` Yao, Jia
2026-09-03 18:59   ` [PATCH v5 0/4] drm/xe/forcewake: add delayed-release optimization Umesh Nerlige Ramappa
2026-09-03 23:19     ` Bai, Zongyao
2026-09-03 23:56       ` Umesh Nerlige Ramappa
2026-08-13  0:13 ` ✗ CI.checkpatch: warning for drm/xe/forcewake: add delayed-release optimization (rev5) Patchwork
2026-08-13  0:15 ` ✓ CI.KUnit: success " 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=9f2c10b8-ff61-40c5-a602-0bd1eb08a775@intel.com \
    --to=zongyao.bai@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jia.yao@intel.com \
    --cc=matthew.brost@intel.com \
    --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