From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <saurabhg.gupta@intel.com>,
<alex.zuo@intel.com>, <niranjana.vishwanathapura@intel.com>,
<ayaz.siddiqui@intel.com>, <tomasz.mistat@intel.com>
Subject: Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
Date: Tue, 11 Feb 2025 15:44:40 -0500 [thread overview]
Message-ID: <Z6u2uH9hkHyJ5kP4@intel.com> (raw)
In-Reply-To: <20250210193657.96030-1-jonathan.cavitt@intel.com>
On Mon, Feb 10, 2025 at 07:36:57PM +0000, Jonathan Cavitt wrote:
> Add counters to all engines that count the number of pagefaults and
> engine resets that have been triggered on them. Report these values
> during an engine reset.
My fear is that later someone start using this as some form of metric.
Could we keep this behind a debug config?
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> CC: Tomasz Mistat <tomasz.mistat@intel.com>
> CC: Ayaz A Siddiqui <ayaz.siddiqui@intel.com>
> CC: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_pagefault.c | 6 ++++++
> drivers/gpu/drm/xe/xe_guc_submit.c | 9 +++++++--
> drivers/gpu/drm/xe/xe_hw_engine.c | 3 +++
> drivers/gpu/drm/xe/xe_hw_engine_types.h | 4 ++++
> 4 files changed, 20 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_pagefault.c b/drivers/gpu/drm/xe/xe_gt_pagefault.c
> index 46701ca11ce0..04e973b20019 100644
> --- a/drivers/gpu/drm/xe/xe_gt_pagefault.c
> +++ b/drivers/gpu/drm/xe/xe_gt_pagefault.c
> @@ -130,6 +130,7 @@ static int handle_vma_pagefault(struct xe_gt *gt, struct pagefault *pf,
> {
> struct xe_vm *vm = xe_vma_vm(vma);
> struct xe_tile *tile = gt_to_tile(gt);
> + struct xe_hw_engine *hwe = NULL;
> struct drm_exec exec;
> struct dma_fence *fence;
> ktime_t end = 0;
> @@ -140,6 +141,11 @@ static int handle_vma_pagefault(struct xe_gt *gt, struct pagefault *pf,
> xe_gt_stats_incr(gt, XE_GT_STATS_ID_VMA_PAGEFAULT_BYTES, xe_vma_size(vma));
>
> trace_xe_vma_pagefault(vma);
> +
> + hwe = xe_gt_hw_engine(gt, pf->engine_class, pf->engine_instance, false);
> + if (hwe)
> + atomic_inc(&hwe->pagefault_count);
> +
> atomic = access_is_atomic(pf->access_type);
>
> /* Check if VMA is valid */
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 913c74d6e2ae..6f5d74340319 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1972,6 +1972,7 @@ int xe_guc_exec_queue_reset_handler(struct xe_guc *guc, u32 *msg, u32 len)
> {
> struct xe_gt *gt = guc_to_gt(guc);
> struct xe_exec_queue *q;
> + struct xe_hw_engine *hwe;
> u32 guc_id;
>
> if (unlikely(len < 1))
> @@ -1983,8 +1984,12 @@ int xe_guc_exec_queue_reset_handler(struct xe_guc *guc, u32 *msg, u32 len)
> if (unlikely(!q))
> return -EPROTO;
>
> - xe_gt_info(gt, "Engine reset: engine_class=%s, logical_mask: 0x%x, guc_id=%d",
> - xe_hw_engine_class_to_str(q->class), q->logical_mask, guc_id);
> + hwe = q->hwe;
> + atomic_inc(&hwe->reset_count);
> +
> + xe_gt_info(gt, "Engine reset: engine_class=%s, logical_mask: 0x%x, guc_id=%d, pagefault_count=%u, reset_count=%u",
> + xe_hw_engine_class_to_str(q->class), q->logical_mask, guc_id,
> + atomic_read(&hwe->pagefault_count), atomic_read(&hwe->reset_count));
>
> trace_xe_exec_queue_reset(q);
>
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
> index fc447751fe78..0be6c38fe2a4 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine.c
> +++ b/drivers/gpu/drm/xe/xe_hw_engine.c
> @@ -516,6 +516,9 @@ static void hw_engine_init_early(struct xe_gt *gt, struct xe_hw_engine *hwe,
> hwe->fence_irq = >->fence_irq[info->class];
> hwe->engine_id = id;
>
> + atomic_set(&hwe->pagefault_count, 0);
> + atomic_set(&hwe->reset_count, 0);
> +
> hwe->eclass = >->eclass[hwe->class];
> if (!hwe->eclass->sched_props.job_timeout_ms) {
> hwe->eclass->sched_props.job_timeout_ms = 5 * 1000;
> diff --git a/drivers/gpu/drm/xe/xe_hw_engine_types.h b/drivers/gpu/drm/xe/xe_hw_engine_types.h
> index e4191a7a2c31..635dc3da6523 100644
> --- a/drivers/gpu/drm/xe/xe_hw_engine_types.h
> +++ b/drivers/gpu/drm/xe/xe_hw_engine_types.h
> @@ -150,6 +150,10 @@ struct xe_hw_engine {
> struct xe_oa_unit *oa_unit;
> /** @hw_engine_group: the group of hw engines this one belongs to */
> struct xe_hw_engine_group *hw_engine_group;
> + /** @pagefault_count: number of pagefaults associated with this engine */
> + atomic_t pagefault_count;
> + /** @reset_count: number of engine resets associated with this engine */
> + atomic_t reset_count;
> };
>
> enum xe_hw_engine_snapshot_source_id {
> --
> 2.43.0
>
next prev parent reply other threads:[~2025-02-11 20:45 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-10 19:36 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
2025-02-10 19:51 ` ✓ CI.Patch_applied: success for " Patchwork
2025-02-10 19:51 ` ✓ CI.checkpatch: " Patchwork
2025-02-10 19:52 ` ✓ CI.KUnit: " Patchwork
2025-02-10 20:09 ` ✓ CI.Build: " Patchwork
2025-02-10 20:11 ` ✓ CI.Hooks: " Patchwork
2025-02-10 20:12 ` ✓ CI.checksparse: " Patchwork
2025-02-11 6:38 ` ✓ CI.Patch_applied: success for drm/xe: Add per-engine pagefault and reset counts (rev2) Patchwork
2025-02-11 6:38 ` ✓ CI.checkpatch: " Patchwork
2025-02-11 6:40 ` ✓ CI.KUnit: " Patchwork
2025-02-11 6:56 ` ✓ CI.Build: " Patchwork
2025-02-11 6:58 ` ✗ CI.Hooks: failure " Patchwork
2025-02-11 6:59 ` ✗ CI.checksparse: warning " Patchwork
2025-02-11 7:19 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-11 15:16 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-11 20:44 ` Rodrigo Vivi [this message]
2025-02-12 5:37 ` [PATCH] drm/xe: Add per-engine pagefault and reset counts Lucas De Marchi
2025-02-12 5:56 ` Matthew Brost
2025-02-12 20:48 ` Lucas De Marchi
2025-02-12 23:45 ` Matthew Brost
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=Z6u2uH9hkHyJ5kP4@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=alex.zuo@intel.com \
--cc=ayaz.siddiqui@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=jonathan.cavitt@intel.com \
--cc=niranjana.vishwanathapura@intel.com \
--cc=saurabhg.gupta@intel.com \
--cc=tomasz.mistat@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