* [PATCH] drm/xe: Add per-engine pagefault and reset counts
@ 2025-02-10 19:35 Jonathan Cavitt
2025-02-10 19:37 ` Cavitt, Jonathan
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Jonathan Cavitt @ 2025-02-10 19:35 UTC (permalink / raw)
To: intel-gfx
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat
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.
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
^ permalink raw reply related [flat|nested] 14+ messages in thread* RE: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
@ 2025-02-10 19:37 ` Cavitt, Jonathan
2025-02-11 4:28 ` Matthew Brost
2025-02-10 20:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Cavitt, Jonathan @ 2025-02-10 19:37 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, Vishwanathapura, Niranjana,
Siddiqui, Ayaz A, Mistat, Tomasz
Wrong mailing list. Sorry. Please ignore this email.
-Jonathan Cavitt
-----Original Message-----
From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Sent: Monday, February 10, 2025 11:36 AM
To: intel-gfx@lists.freedesktop.org
Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>; Vishwanathapura, Niranjana <niranjana.vishwanathapura@intel.com>; Siddiqui, Ayaz A <ayaz.siddiqui@intel.com>; Mistat, Tomasz <tomasz.mistat@intel.com>
Subject: [PATCH] drm/xe: Add per-engine pagefault and reset counts
>
> 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.
>
> 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
>
>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:37 ` Cavitt, Jonathan
@ 2025-02-11 4:28 ` Matthew Brost
0 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2025-02-11 4:28 UTC (permalink / raw)
To: Cavitt, Jonathan
Cc: intel-gfx@lists.freedesktop.org, Gupta, saurabhg, Zuo, Alex,
Vishwanathapura, Niranjana, Siddiqui, Ayaz A, Mistat, Tomasz
On Mon, Feb 10, 2025 at 07:37:36PM +0000, Cavitt, Jonathan wrote:
> Wrong mailing list. Sorry. Please ignore this email.
> -Jonathan Cavitt
>
I replied here... I guess continue this conversation here? Almost
everyone in on both lists...
Matt
> -----Original Message-----
> From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Sent: Monday, February 10, 2025 11:36 AM
> To: intel-gfx@lists.freedesktop.org
> Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>; Vishwanathapura, Niranjana <niranjana.vishwanathapura@intel.com>; Siddiqui, Ayaz A <ayaz.siddiqui@intel.com>; Mistat, Tomasz <tomasz.mistat@intel.com>
> Subject: [PATCH] drm/xe: Add per-engine pagefault and reset counts
> >
> > 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.
> >
> > 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
> >
> >
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
2025-02-10 19:37 ` Cavitt, Jonathan
@ 2025-02-10 20:21 ` Patchwork
2025-02-10 22:17 ` ✓ i915.CI.BAT: success " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-02-10 20:21 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-gfx
== Series Details ==
Series: drm/xe: Add per-engine pagefault and reset counts
URL : https://patchwork.freedesktop.org/series/144622/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ i915.CI.BAT: success for drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
2025-02-10 19:37 ` Cavitt, Jonathan
2025-02-10 20:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork
@ 2025-02-10 22:17 ` Patchwork
2025-02-11 3:54 ` [PATCH] " Matthew Brost
` (2 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-02-10 22:17 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4478 bytes --]
== Series Details ==
Series: drm/xe: Add per-engine pagefault and reset counts
URL : https://patchwork.freedesktop.org/series/144622/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16103 -> Patchwork_144622v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_144622v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][3] -> [FAIL][4] ([i915#13633])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-twl-1/igt@i915_selftest@live.html
- bat-twl-2: [PASS][6] -> [ABORT][7] ([i915#12919] / [i915#13503])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-twl-2/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: NOTRUN -> [ABORT][8] ([i915#12919])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@gt_timelines:
- bat-twl-2: [PASS][9] -> [ABORT][10] ([i915#12919])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-twl-2/igt@i915_selftest@live@gt_timelines.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-twl-2/igt@i915_selftest@live@gt_timelines.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][11] -> [SKIP][12] ([i915#9197]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-adlp-9: [INCOMPLETE][13] ([i915#9413]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-adlp-9/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-adlp-9/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* Linux: CI_DRM_16103 -> Patchwork_144622v1
CI-20190529: 20190529
CI_DRM_16103: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8227: 8227
Patchwork_144622v1: 93f37b8d57cb5f1db7818eb395ad810ad1ed8b77 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/index.html
[-- Attachment #2: Type: text/html, Size: 5535 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
` (2 preceding siblings ...)
2025-02-10 22:17 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-02-11 3:54 ` Matthew Brost
2025-02-11 4:12 ` Matthew Brost
2025-02-11 5:44 ` ✓ i915.CI.Full: success for " Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2025-02-11 3:54 UTC (permalink / raw)
To: Jonathan Cavitt
Cc: intel-gfx, saurabhg.gupta, alex.zuo, niranjana.vishwanathapura,
ayaz.siddiqui, tomasz.mistat
On Mon, Feb 10, 2025 at 07:35:44PM +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.
>
I'm not opposed to adding stats for engines, but if we do, I think it
should be done in a generic way. See xe_gt_stats* for an example—that
is, do not use specific variables for counters; instead, use an array
indexed by an enum. I'd also probably wire to debugfs while here using
the aforementioned example as a template.
> 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);
> +
Page faults are a critical path so anything that is debug related (e.g.
stats) likely should compile out in non-debug builds.
> 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));
Can you explain why this information is helpful? A better option than
dmesg might be a devcoredump too. I'll need a little more background
here I guess.
Matt
>
> 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
>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
` (3 preceding siblings ...)
2025-02-11 3:54 ` [PATCH] " Matthew Brost
@ 2025-02-11 4:12 ` Matthew Brost
2025-02-11 5:44 ` ✓ i915.CI.Full: success for " Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2025-02-11 4:12 UTC (permalink / raw)
To: Jonathan Cavitt
Cc: intel-gfx, saurabhg.gupta, alex.zuo, niranjana.vishwanathapura,
ayaz.siddiqui, tomasz.mistat
On Mon, Feb 10, 2025 at 07:35:44PM +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.
>
> 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);
Missed this my previous reply, we zalloc basically everything in Xe,
certainly heavy weight things like enigines, so no need explictly set as
zero during init.
Matt
> +
> 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
>
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ i915.CI.Full: success for drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
` (4 preceding siblings ...)
2025-02-11 4:12 ` Matthew Brost
@ 2025-02-11 5:44 ` Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-02-11 5:44 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100275 bytes --]
== Series Details ==
Series: drm/xe: Add per-engine pagefault and reset counts
URL : https://patchwork.freedesktop.org/series/144622/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16103_full -> Patchwork_144622v1_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_144622v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: [PASS][3] -> [ABORT][4] ([i915#12817] / [i915#5507])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2-9: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_caching@reads.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#13008])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][17] -> [FAIL][18] ([i915#9561]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-10/igt@gem_ctx_freq@sysfs.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-6/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_persistence@hang:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_ctx_sseu@engines.html
- shard-dg2-9: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-dg2-9: NOTRUN -> [ABORT][23] ([i915#7975])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4812]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_exec_fence@submit67.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-before-default.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +9 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +10 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preemptive-hang:
- shard-rkl: NOTRUN -> [DMESG-WARN][38] ([i915#12964]) +20 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@gem_exec_schedule@preemptive-hang.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [TIMEOUT][47] ([i915#5493]) +1 other test timeout
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +14 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@gem_partial_pwrite_pread@write-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@snoop:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [TIMEOUT][58] ([i915#12917] / [i915#12964])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [PASS][59] -> [TIMEOUT][60] ([i915#12964])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][61] ([i915#12964]) +1 other test timeout
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][71] ([i915#12941])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@reset-fd:
- shard-mtlp: [PASS][81] -> [ABORT][82] ([i915#13193])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-mtlp-1/igt@gem_workarounds@reset-fd.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][83] +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@gen9_exec_parse@bb-oversize.html
- shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][91] -> [ABORT][92] ([i915#9820])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][93] -> [ABORT][94] ([i915#10887] / [i915#12817] / [i915#9820])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#6412])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#7091])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#6590]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2-9: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4387])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4077]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#7707])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#12454] / [i915#12712])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#8709]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#8709]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#9531])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg1: NOTRUN -> [FAIL][113] ([i915#5956]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][118] +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3638]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6187])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +14 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +9 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +91 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-edp-1:
- shard-mtlp: [PASS][130] -> [INCOMPLETE][131] ([i915#12796]) +1 other test incomplete
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +180 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#6095]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +19 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#12313])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +187 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +9 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#11616] / [i915#7213]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +9 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-9: NOTRUN -> [SKIP][148] +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_color@deep-color:
- shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#3555]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_color@deep-color.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#7116] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#6944] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8814])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#13049])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#13049]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][165] ([i915#13049])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-dg1: [PASS][167] -> [DMESG-WARN][168] ([i915#4423])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg1-17/igt@kms_cursor_edge_walk@128x128-top-edge.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#13046] / [i915#5354]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][170] +17 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#13046] / [i915#5354]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#4103]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#4103])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#9833])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3555]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#8588])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#8812])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840] / [i915#9053])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3840] / [i915#9053])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9053])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3469])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3469])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#4854])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#658])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#4881])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#9934]) +9 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#9934]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9934]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9934]) +8 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3637]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [PASS][199] -> [FAIL][200] ([i915#11989]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1:
- shard-glk: [PASS][201] -> [FAIL][202] ([i915#13027]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2:
- shard-dg2-9: NOTRUN -> [FAIL][204] ([i915#11989]) +3 other tests fail
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555] / [i915#8813])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#8813])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672] / [i915#3555])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#2672]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555] / [i915#5190])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][218] ([i915#2672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#8708]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][220] -> [FAIL][221] ([i915#6880])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-9: NOTRUN -> [FAIL][222] ([i915#6880])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8708]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#5354]) +9 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5439])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +11 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +26 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5354]) +18 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][229] +17 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][230] +41 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3458]) +15 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg2-9: NOTRUN -> [SKIP][232] ([i915#3458]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8708]) +11 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][234] +19 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#1825]) +41 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1825]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3023]) +17 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#3555] / [i915#8228])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#10656])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#12388])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#12339])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12339])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#12339]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#6301])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [PASS][250] -> [INCOMPLETE][251] ([i915#12756])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#6953] / [i915#9423])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247]) +10 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#12247]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247]) +18 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#5354])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#12343])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][260] -> [DMESG-WARN][261] ([i915#12964]) +1 other test dmesg-warn
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-8/igt@kms_pm_dc@dc5-dpms-negative.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#9685])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#3828])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#3361])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#4281])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#9340])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#9340])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#8430])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#9519])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [PASS][270] -> [SKIP][271] ([i915#9519])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#9519])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#6524]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#11520]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#11520]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#11520]) +9 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#11520]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#11520])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9808])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12316]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#11520]) +6 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#9683])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#9683])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#9683])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9732]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2-9: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9688]) +4 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +20 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +11 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +22 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9732]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#4235])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#5289])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#5289])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-9: NOTRUN -> [SKIP][296] ([i915#12755] / [i915#5190])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#5289]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#12755])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#3555]) +12 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#8623])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@negative-basic:
- shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#9906])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#9906])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#2437])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#2437])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2437])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#7387])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@perf@global-sseu-config.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#7387])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#2434])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf_pmu@invalid-init:
- shard-dg2: NOTRUN -> [FAIL][311] ([i915#13663])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@perf_pmu@invalid-init.html
- shard-dg1: NOTRUN -> [FAIL][312] ([i915#13663])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-12/igt@perf_pmu@invalid-init.html
- shard-mtlp: NOTRUN -> [FAIL][313] ([i915#13663])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#8516])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-9/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#3708])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#3291] / [i915#3708])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#3708]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-4/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#9917]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#9917])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#9917]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-mtlp: NOTRUN -> [FAIL][322] ([i915#12910])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][323] ([i915#13356]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-1/igt@gem_ccs@suspend-resume.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][325] ([i915#12392] / [i915#13356]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-mtlp: [ABORT][327] ([i915#13193]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-mtlp-7/igt@gem_eio@in-flight-contexts-immediate.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-1/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: [TIMEOUT][329] ([i915#12964]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][331] ([i915#4270]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [TIMEOUT][333] ([i915#12917] / [i915#12964]) -> [PASS][334] +1 other test pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [SKIP][335] ([i915#13328]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][337] ([i915#13566]) -> [PASS][338] +4 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [FAIL][339] ([i915#13566]) -> [PASS][340] +11 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
- shard-rkl: [DMESG-WARN][341] ([i915#12964]) -> [PASS][342] +11 other tests pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-mtlp: [FAIL][343] ([i915#11989]) -> [PASS][344] +1 other test pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-tglu: [FAIL][345] ([i915#11989]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][347] ([i915#6880]) -> [PASS][348] +1 other test pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_pipe_crc_basic@read-crc:
- shard-dg1: [DMESG-WARN][349] ([i915#4423]) -> [PASS][350] +2 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg1-13/igt@kms_pipe_crc_basic@read-crc.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-17/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][351] ([i915#9519]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][353] ([i915#9519]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][355] ([i915#4349]) -> [PASS][356] +4 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][357] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][358] ([i915#10131] / [i915#9820])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][359] ([i915#10887] / [i915#9820]) -> [ABORT][360] ([i915#9820])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: [SKIP][361] ([i915#4212] / [i915#4423]) -> [SKIP][362] ([i915#4212])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg1: [SKIP][363] ([i915#4423]) -> [SKIP][364] +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg1-18/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-14/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][365] ([i915#10433] / [i915#3458]) -> [SKIP][366] ([i915#3458]) +4 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][367] ([i915#3458] / [i915#4423]) -> [SKIP][368] ([i915#3458])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][369] ([i915#3458]) -> [SKIP][370] ([i915#10433] / [i915#3458]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: [SKIP][371] -> [FAIL][372] ([i915#10959])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html
* igt@perf_pmu@module-unload:
- shard-glk: [ABORT][373] -> [INCOMPLETE][374] ([i915#1982])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16103/shard-glk8/igt@perf_pmu@module-unload.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/shard-glk4/igt@perf_pmu@module-unload.html
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144622v1/index.html
[-- Attachment #2: Type: text/html, Size: 125642 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] drm/xe: Add per-engine pagefault and reset counts
@ 2025-02-10 19:36 Jonathan Cavitt
2025-02-11 20:44 ` Rodrigo Vivi
0 siblings, 1 reply; 14+ messages in thread
From: Jonathan Cavitt @ 2025-02-10 19:36 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat
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.
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
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-10 19:36 [PATCH] " Jonathan Cavitt
@ 2025-02-11 20:44 ` Rodrigo Vivi
2025-02-12 5:37 ` Lucas De Marchi
0 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2025-02-11 20:44 UTC (permalink / raw)
To: Jonathan Cavitt
Cc: intel-xe, saurabhg.gupta, alex.zuo, niranjana.vishwanathapura,
ayaz.siddiqui, tomasz.mistat
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
>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-11 20:44 ` Rodrigo Vivi
@ 2025-02-12 5:37 ` Lucas De Marchi
2025-02-12 5:56 ` Matthew Brost
0 siblings, 1 reply; 14+ messages in thread
From: Lucas De Marchi @ 2025-02-12 5:37 UTC (permalink / raw)
To: Rodrigo Vivi
Cc: Jonathan Cavitt, intel-xe, saurabhg.gupta, alex.zuo,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat,
Matthew Brost
On Tue, Feb 11, 2025 at 03:44:40PM -0500, Rodrigo Vivi wrote:
>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",
I don't think the message was accurate here about being an engine reset
and this is probably making it worse. +Matthew Brost
In any case, instead of polluting this, what about printing the counter
under the "stats" file in debugfs?
Lucas De Marchi
>> + 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
>>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-12 5:37 ` Lucas De Marchi
@ 2025-02-12 5:56 ` Matthew Brost
2025-02-12 20:48 ` Lucas De Marchi
0 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-02-12 5:56 UTC (permalink / raw)
To: Lucas De Marchi
Cc: Rodrigo Vivi, Jonathan Cavitt, intel-xe, saurabhg.gupta, alex.zuo,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat
On Tue, Feb 11, 2025 at 11:37:12PM -0600, Lucas De Marchi wrote:
> On Tue, Feb 11, 2025 at 03:44:40PM -0500, Rodrigo Vivi wrote:
> > 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",
>
> I don't think the message was accurate here about being an engine reset
> and this is probably making it worse. +Matthew Brost
>
A bit confused by why we need this information in dmesg, but also not
opposed to more information.
> In any case, instead of polluting this, what about printing the counter
> under the "stats" file in debugfs?
Agree. I already suggested this [1] but accidentally replied to the
wrong list / post.
The current stats interface for a GT but IMO is light weight enough we
can more or less copy / paste for other scopes (e.g. device, tile,
engines) hooking into debugfs. The idea for this 'stats' interface was
for IGTs or quick profiling of workloads in a generic way. This seems to
fit with this use case.
[1] https://patchwork.freedesktop.org/patch/636270/?series=144622&rev=1#comment_1162350
Matt
>
> Lucas De Marchi
>
>
> > > + 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
> > >
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-12 5:56 ` Matthew Brost
@ 2025-02-12 20:48 ` Lucas De Marchi
2025-02-12 23:45 ` Matthew Brost
0 siblings, 1 reply; 14+ messages in thread
From: Lucas De Marchi @ 2025-02-12 20:48 UTC (permalink / raw)
To: Matthew Brost
Cc: Rodrigo Vivi, Jonathan Cavitt, intel-xe, saurabhg.gupta, alex.zuo,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat
On Tue, Feb 11, 2025 at 09:56:02PM -0800, Matthew Brost wrote:
>On Tue, Feb 11, 2025 at 11:37:12PM -0600, Lucas De Marchi wrote:
>> On Tue, Feb 11, 2025 at 03:44:40PM -0500, Rodrigo Vivi wrote:
>> > 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",
>>
>> I don't think the message was accurate here about being an engine reset
>> and this is probably making it worse. +Matthew Brost
>>
>
>A bit confused by why we need this information in dmesg, but also not
>opposed to more information.
what I meant by message not being accurate is that this is a handler
for:
process_g2h_msg()
XE_GUC_ACTION_CONTEXT_RESET_NOTIFICATION -> xe_guc_exec_queue_reset_handler
Do we get that notification on each exec queue? wouldn't that show
multiple "engine reset" for a single reset?
Lucas De Marchi
>
>> In any case, instead of polluting this, what about printing the counter
>> under the "stats" file in debugfs?
>
>Agree. I already suggested this [1] but accidentally replied to the
>wrong list / post.
>
>The current stats interface for a GT but IMO is light weight enough we
>can more or less copy / paste for other scopes (e.g. device, tile,
>engines) hooking into debugfs. The idea for this 'stats' interface was
>for IGTs or quick profiling of workloads in a generic way. This seems to
>fit with this use case.
>
>[1] https://patchwork.freedesktop.org/patch/636270/?series=144622&rev=1#comment_1162350
>
>Matt
>
>>
>> Lucas De Marchi
>>
>>
>> > > + 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
>> > >
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH] drm/xe: Add per-engine pagefault and reset counts
2025-02-12 20:48 ` Lucas De Marchi
@ 2025-02-12 23:45 ` Matthew Brost
0 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2025-02-12 23:45 UTC (permalink / raw)
To: Lucas De Marchi
Cc: Rodrigo Vivi, Jonathan Cavitt, intel-xe, saurabhg.gupta, alex.zuo,
niranjana.vishwanathapura, ayaz.siddiqui, tomasz.mistat
On Wed, Feb 12, 2025 at 02:48:28PM -0600, Lucas De Marchi wrote:
> On Tue, Feb 11, 2025 at 09:56:02PM -0800, Matthew Brost wrote:
> > On Tue, Feb 11, 2025 at 11:37:12PM -0600, Lucas De Marchi wrote:
> > > On Tue, Feb 11, 2025 at 03:44:40PM -0500, Rodrigo Vivi wrote:
> > > > 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",
> > >
> > > I don't think the message was accurate here about being an engine reset
> > > and this is probably making it worse. +Matthew Brost
> > >
> >
> > A bit confused by why we need this information in dmesg, but also not
> > opposed to more information.
>
> what I meant by message not being accurate is that this is a handler
> for:
>
> process_g2h_msg()
> XE_GUC_ACTION_CONTEXT_RESET_NOTIFICATION -> xe_guc_exec_queue_reset_handler
>
> Do we get that notification on each exec queue? wouldn't that show
We get a notification for the exec queue which has hung.
> multiple "engine reset" for a single reset?
No.
>
Also noticed the code as written is not accurate for virtual or parallel
queues. q->hwe is not guaranteed to be the engine where the queue is
running when it hung in these cases. So that itself is also a problem. I
don't have an immediate idea of how to resolve this.
I wanted to remove q->hwe at one point to avoid this confusion but
haven't gotten around to it.
Matt
> Lucas De Marchi
>
> >
> > > In any case, instead of polluting this, what about printing the counter
> > > under the "stats" file in debugfs?
> >
> > Agree. I already suggested this [1] but accidentally replied to the
> > wrong list / post.
> >
> > The current stats interface for a GT but IMO is light weight enough we
> > can more or less copy / paste for other scopes (e.g. device, tile,
> > engines) hooking into debugfs. The idea for this 'stats' interface was
> > for IGTs or quick profiling of workloads in a generic way. This seems to
> > fit with this use case.
> >
> > [1] https://patchwork.freedesktop.org/patch/636270/?series=144622&rev=1#comment_1162350
> >
> > Matt
> >
> > >
> > > Lucas De Marchi
> > >
> > >
> > > > > + 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
> > > > >
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-02-12 23:44 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 19:35 [PATCH] drm/xe: Add per-engine pagefault and reset counts Jonathan Cavitt
2025-02-10 19:37 ` Cavitt, Jonathan
2025-02-11 4:28 ` Matthew Brost
2025-02-10 20:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork
2025-02-10 22:17 ` ✓ i915.CI.BAT: success " Patchwork
2025-02-11 3:54 ` [PATCH] " Matthew Brost
2025-02-11 4:12 ` Matthew Brost
2025-02-11 5:44 ` ✓ i915.CI.Full: success for " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-02-10 19:36 [PATCH] " Jonathan Cavitt
2025-02-11 20:44 ` Rodrigo Vivi
2025-02-12 5:37 ` 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
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.