From: Nirmoy Das <nirmoy.das@intel.com>
To: Andi Shyti <andi.shyti@linux.intel.com>,
John Harrison <John.C.Harrison@Intel.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>,
dri-devel <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v3 3/4] drm/i915: Use the new gt_to_guc() wrapper
Date: Thu, 21 Dec 2023 10:21:13 +0100 [thread overview]
Message-ID: <4035a6ea-b80f-4e65-86f2-3172dec42a97@intel.com> (raw)
In-Reply-To: <20231206204644.105064-4-andi.shyti@linux.intel.com>
On 12/6/2023 9:46 PM, Andi Shyti wrote:
> Get the guc reference from the gt using the gt_to_guc() helper.
>
> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> drivers/gpu/drm/i915/i915_debugfs_params.c | 2 +-
> drivers/gpu/drm/i915/selftests/intel_scheduler_helpers.c | 4 ++--
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_debugfs_params.c b/drivers/gpu/drm/i915/i915_debugfs_params.c
> index 8bca02025e09..74b7f2fd8b57 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs_params.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs_params.c
> @@ -43,7 +43,7 @@ static int notify_guc(struct drm_i915_private *i915)
>
> for_each_gt(gt, i915, i) {
> if (intel_uc_uses_guc_submission(>->uc))
> - ret = intel_guc_global_policies_update(>->uc.guc);
> + ret = intel_guc_global_policies_update(gt_to_guc(gt));
> }
>
> return ret;
> diff --git a/drivers/gpu/drm/i915/selftests/intel_scheduler_helpers.c b/drivers/gpu/drm/i915/selftests/intel_scheduler_helpers.c
> index 2990dd4d4a0d..d9d8f0336702 100644
> --- a/drivers/gpu/drm/i915/selftests/intel_scheduler_helpers.c
> +++ b/drivers/gpu/drm/i915/selftests/intel_scheduler_helpers.c
> @@ -65,7 +65,7 @@ int intel_selftest_modify_policy(struct intel_engine_cs *engine,
> if (!intel_engine_uses_guc(engine))
> return 0;
>
> - err = intel_guc_global_policies_update(&engine->gt->uc.guc);
> + err = intel_guc_global_policies_update(gt_to_guc(engine->gt));
> if (err)
> intel_selftest_restore_policy(engine, saved);
>
> @@ -84,7 +84,7 @@ int intel_selftest_restore_policy(struct intel_engine_cs *engine,
> if (!intel_engine_uses_guc(engine))
> return 0;
>
> - return intel_guc_global_policies_update(&engine->gt->uc.guc);
> + return intel_guc_global_policies_update(gt_to_guc(engine->gt));
> }
>
> int intel_selftest_wait_for_rq(struct i915_request *rq)
next prev parent reply other threads:[~2023-12-21 9:21 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-06 20:46 [Intel-gfx] [PATCH v3 0/4] Add gt_to_guc() helper Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 1/4] drm/i915/gt: Create the gt_to_guc() wrapper Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:19 ` Nirmoy Das
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 2/4] drm/i915/guc: Use the new " Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:20 ` Nirmoy Das
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 3/4] drm/i915: " Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:21 ` Nirmoy Das [this message]
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 4/4] drm/i915/guc: Use the ce_to_guc() wrapper whenever possible Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 12:18 ` Nirmoy Das
2023-12-07 0:35 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for Add gt_to_guc() helper Patchwork
2023-12-07 0:53 ` [Intel-gfx] ✗ Fi.CI.BAT: 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=4035a6ea-b80f-4e65-86f2-3172dec42a97@intel.com \
--to=nirmoy.das@intel.com \
--cc=John.C.Harrison@Intel.com \
--cc=andi.shyti@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.