* [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment.
@ 2024-10-24 11:29 Jan Sokolowski
2024-10-24 11:40 ` Grzegorzek, Dominik
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jan Sokolowski @ 2024-10-24 11:29 UTC (permalink / raw)
To: igt-dev; +Cc: Jan Sokolowski
On debugger detach-and-reattach, discovery worker will replay events
that have occurred, which leads to a vm event being sent and
vm_open_trigger being re-run, which would lead to us trying
to open a removed vm.
On debugger reattach trigger, remove vm open trigger from list of
triggers.
Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
---
lib/xe/xe_eudebug.c | 25 +++++++++++++++++++++++++
lib/xe/xe_eudebug.h | 2 ++
tests/intel/xe_eudebug_online.c | 6 ++++++
3 files changed, 33 insertions(+)
diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
index 36763a184..62f7e7361 100644
--- a/lib/xe/xe_eudebug.c
+++ b/lib/xe/xe_eudebug.c
@@ -1226,6 +1226,31 @@ void xe_eudebug_debugger_add_trigger(struct xe_eudebug_debugger *d,
igt_debug("added trigger %p\n", t);
}
+/**
+ * xe_eudebug_debugger_remove_trigger:
+ * @d: pointer to the debugger
+ * @type: the type of the event which activates the trigger.
+ * @fn: function to be removed when event of @type was read by the debugger.
+ *
+ * Removes function @fn from the list of triggers activated when event of
+ * @type has been read by worker.
+ */
+void xe_eudebug_debugger_remove_trigger(struct xe_eudebug_debugger *d,
+ int type, xe_eudebug_trigger_fn fn)
+{
+ struct event_trigger *t;
+
+ igt_list_for_each_entry(t, &d->triggers, link) {
+ if (type == t->type && fn == t->fn) {
+ igt_list_del(&t->link);
+ break;
+ }
+ }
+
+ igt_debug("removed trigger %p\n", t);
+ free(t);
+}
+
/**
* xe_eudebug_debugger_start_worker:
* @d: pointer to the debugger
diff --git a/lib/xe/xe_eudebug.h b/lib/xe/xe_eudebug.h
index 6e4666333..9aadbe847 100644
--- a/lib/xe/xe_eudebug.h
+++ b/lib/xe/xe_eudebug.h
@@ -150,6 +150,8 @@ void xe_eudebug_debugger_detach(struct xe_eudebug_debugger *d);
void xe_eudebug_debugger_set_data(struct xe_eudebug_debugger *c, void *ptr);
void xe_eudebug_debugger_add_trigger(struct xe_eudebug_debugger *d, int type,
xe_eudebug_trigger_fn fn);
+void xe_eudebug_debugger_remove_trigger(struct xe_eudebug_debugger *d, int type,
+ xe_eudebug_trigger_fn fn);
void xe_eudebug_debugger_signal_stage(struct xe_eudebug_debugger *d, uint64_t stage);
void xe_eudebug_debugger_wait_stage(struct xe_eudebug_session *s, uint64_t stage);
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index 01ccf45eb..0ef0d8093 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -1785,6 +1785,12 @@ static void eu_attention_debugger_detach_trigger(struct xe_eudebug_debugger *d,
d->fd = ret;
d->target_pid = c_pid;
+ /* Discovery worker will replay events that have occurred, which leads to
+ * a vm event being sent and vm_open_trigger being re-run, which would lead
+ * to us trying to open a removed vm. Thus, remove this trigger from list.
+ */
+ xe_eudebug_debugger_remove_trigger(d, DRM_XE_EUDEBUG_EVENT_VM, vm_open_trigger);
+
/* Let the discovery worker discover resources */
sleep(2);
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. 2024-10-24 11:29 [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment Jan Sokolowski @ 2024-10-24 11:40 ` Grzegorzek, Dominik 2024-10-24 12:59 ` ✗ Fi.CI.BAT: failure for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Grzegorzek, Dominik @ 2024-10-24 11:40 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Sokolowski, Jan Hi Jan! On Thu, 2024-10-24 at 11:29 +0000, Jan Sokolowski wrote: > On debugger detach-and-reattach, discovery worker will replay events > that have occurred, which leads to a vm event being sent and > vm_open_trigger being re-run, which would lead to us trying > to open a removed vm. > > On debugger reattach trigger, remove vm open trigger from list of > triggers. > > Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com> > --- > lib/xe/xe_eudebug.c | 25 +++++++++++++++++++++++++ > lib/xe/xe_eudebug.h | 2 ++ > tests/intel/xe_eudebug_online.c | 6 ++++++ > 3 files changed, 33 insertions(+) > > diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c > index 36763a184..62f7e7361 100644 > --- a/lib/xe/xe_eudebug.c > +++ b/lib/xe/xe_eudebug.c > @@ -1226,6 +1226,31 @@ void xe_eudebug_debugger_add_trigger(struct xe_eudebug_debugger *d, > igt_debug("added trigger %p\n", t); > } > > +/** > + * xe_eudebug_debugger_remove_trigger: > + * @d: pointer to the debugger > + * @type: the type of the event which activates the trigger. > + * @fn: function to be removed when event of @type was read by the debugger. > + * > + * Removes function @fn from the list of triggers activated when event of > + * @type has been read by worker. > + */ > +void xe_eudebug_debugger_remove_trigger(struct xe_eudebug_debugger *d, > + int type, xe_eudebug_trigger_fn fn) > +{ > + struct event_trigger *t; > + > + igt_list_for_each_entry(t, &d->triggers, link) { igt_list_for_each_entry_safe > + if (type == t->type && fn == t->fn) { > + igt_list_del(&t->link); > + break; > + } > + } > + > + igt_debug("removed trigger %p\n", t); > + free(t); What if it has not been found? You would then free the head. Also igt_warn if it was not found would be welcome. > +} > + > /** > * xe_eudebug_debugger_start_worker: > * @d: pointer to the debugger > diff --git a/lib/xe/xe_eudebug.h b/lib/xe/xe_eudebug.h > index 6e4666333..9aadbe847 100644 > --- a/lib/xe/xe_eudebug.h > +++ b/lib/xe/xe_eudebug.h > @@ -150,6 +150,8 @@ void xe_eudebug_debugger_detach(struct xe_eudebug_debugger *d); > void xe_eudebug_debugger_set_data(struct xe_eudebug_debugger *c, void *ptr); > void xe_eudebug_debugger_add_trigger(struct xe_eudebug_debugger *d, int type, > xe_eudebug_trigger_fn fn); > +void xe_eudebug_debugger_remove_trigger(struct xe_eudebug_debugger *d, int type, > + xe_eudebug_trigger_fn fn); > void xe_eudebug_debugger_signal_stage(struct xe_eudebug_debugger *d, uint64_t stage); > void xe_eudebug_debugger_wait_stage(struct xe_eudebug_session *s, uint64_t stage); > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index 01ccf45eb..0ef0d8093 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -1785,6 +1785,12 @@ static void eu_attention_debugger_detach_trigger(struct xe_eudebug_debugger *d, > d->fd = ret; > d->target_pid = c_pid; > > + /* Discovery worker will replay events that have occurred, which leads to > + * a vm event being sent and vm_open_trigger being re-run, which would lead > + * to us trying to open a removed vm. Thus, remove this trigger from list. > + */ > + xe_eudebug_debugger_remove_trigger(d, DRM_XE_EUDEBUG_EVENT_VM, vm_open_trigger); > + Sounds fine for me. Let split this change into two patches, one for lib other for the test. Regards, Dominik > /* Let the discovery worker discover resources */ > sleep(2); > ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.BAT: failure for /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. 2024-10-24 11:29 [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment Jan Sokolowski 2024-10-24 11:40 ` Grzegorzek, Dominik @ 2024-10-24 12:59 ` Patchwork 2024-10-24 14:19 ` ✗ CI.xeBAT: " Patchwork 2024-10-25 15:06 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-10-24 12:59 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12341 bytes --] == Series Details == Series: /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. URL : https://patchwork.freedesktop.org/series/140434/ State : failure == Summary == CI Bug Log - changes from IGT_8082 -> IGTPW_11973 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11973 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11973, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/index.html Participating hosts (45 -> 45) ------------------------------ Additional (2): fi-skl-6600u bat-dg1-6 Missing (2): fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11973: ### IGT changes ### #### Possible regressions #### * igt@i915_hangman@error-state-basic: - fi-pnv-d510: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-pnv-d510/igt@i915_hangman@error-state-basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/fi-pnv-d510/igt@i915_hangman@error-state-basic.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-rpls-4: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-rpls-4/igt@kms_pipe_crc_basic@nonblocking-crc.html Known issues ------------ Here are the changes found in IGTPW_11973 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#12311] / [i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-dg1-6/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - fi-skl-6600u: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-dg1-6: NOTRUN -> [SKIP][8] ([i915#12311]) +54 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-dg1-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-basic: - fi-skl-6600u: NOTRUN -> [SKIP][9] +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/fi-skl-6600u/igt@kms_dsc@dsc-basic.html * igt@prime_vgem@basic-write: - bat-dg1-6: NOTRUN -> [SKIP][10] ([i915#11723] / [i915#12311]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-dg1-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-1: [INCOMPLETE][11] ([i915#12133] / [i915#9413]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-twl-1/igt@i915_selftest@live.html - bat-dg2-9: [ABORT][13] ([i915#12133]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-dg2-9/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-9: [ABORT][15] ([i915#12305]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-dg2-9/igt@i915_selftest@live@client.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][17] ([i915#9413]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][19] ([i915#11621]) -> [PASS][20] +132 other tests pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html #### Warnings #### * igt@debugfs_test@basic-hwmon: - bat-adlm-1: [SKIP][21] ([i915#3826]) -> [SKIP][22] ([i915#3826] / [i915#9900]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@debugfs_test@basic-hwmon.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-adlm-1: [SKIP][23] ([i915#1849] / [i915#2582]) -> [SKIP][24] ([i915#1849] / [i915#2582] / [i915#9900]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@info.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-adlm-1: [SKIP][25] ([i915#2582]) -> [SKIP][26] ([i915#2582] / [i915#9900]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@fbdev@read.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@fbdev@read.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlm-1: [SKIP][27] ([i915#4613]) -> [SKIP][28] ([i915#4613] / [i915#9900]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adlm-1: [SKIP][29] ([i915#3282]) -> [SKIP][30] ([i915#3282] / [i915#9900]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@gem_tiled_pread_basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: [SKIP][31] ([i915#6621]) -> [SKIP][32] ([i915#6621] / [i915#9900]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@i915_pm_rps@basic-api.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: [SKIP][33] ([i915#9875] / [i915#9900]) -> [SKIP][34] ([i915#9900]) +16 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlm-1: [SKIP][35] ([i915#3637]) -> [SKIP][36] ([i915#3637] / [i915#9900]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: [SKIP][37] -> [SKIP][38] ([i915#9900]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: [SKIP][39] ([i915#1849] / [i915#4342]) -> [SKIP][40] ([i915#1849] / [i915#4342] / [i915#9900]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-adlm-1: [SKIP][41] ([i915#5354]) -> [SKIP][42] ([i915#5354] / [i915#9900]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlm-1: [SKIP][43] ([i915#1072] / [i915#9732]) -> [SKIP][44] ([i915#1072] / [i915#9732] / [i915#9900]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: [SKIP][45] ([i915#3555]) -> [SKIP][46] ([i915#3555] / [i915#9900]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-write: - bat-adlm-1: [SKIP][47] ([i915#3708]) -> [SKIP][48] ([i915#3708] / [i915#9900]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-adlm-1/igt@prime_vgem@basic-write.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/bat-adlm-1/igt@prime_vgem@basic-write.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9875]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9875 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8082 -> IGTPW_11973 * Linux: CI_DRM_15576 -> CI_DRM_15588 CI-20190529: 20190529 CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15588: 121cd95da591284c97d6f9ac1c58c7a79d27b201 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11973: fcd97d98074a8eccdd94de83193acaf3871508c2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11973/index.html [-- Attachment #2: Type: text/html, Size: 16347 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeBAT: failure for /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. 2024-10-24 11:29 [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment Jan Sokolowski 2024-10-24 11:40 ` Grzegorzek, Dominik 2024-10-24 12:59 ` ✗ Fi.CI.BAT: failure for " Patchwork @ 2024-10-24 14:19 ` Patchwork 2024-10-25 15:06 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-10-24 14:19 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4968 bytes --] == Series Details == Series: /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. URL : https://patchwork.freedesktop.org/series/140434/ State : failure == Summary == CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11973_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11973_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11973_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11973_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_compute_mode@twice-bindexecqueue: - bat-lnl-2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue.html Known issues ------------ Here are the changes found in XEIGTPW_11973_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-2: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#2687]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#2874]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Possible fixes #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [DMESG-WARN][7] ([Intel XE#2496]) -> [PASS][8] +31 other tests pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][9] ([Intel XE#1861]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-bmg-2: [INCOMPLETE][11] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-lnl-1: [SKIP][13] ([Intel XE#599]) -> [SKIP][14] ([Intel XE#2244]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-1/igt@kms_dsc@dsc-basic.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/bat-lnl-1/igt@kms_dsc@dsc-basic.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11973 * Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2112-26b9d5af7030484e831dd7335a08ec0c3a22f553 IGTPW_11973: fcd97d98074a8eccdd94de83193acaf3871508c2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 xe-2112-26b9d5af7030484e831dd7335a08ec0c3a22f553: 26b9d5af7030484e831dd7335a08ec0c3a22f553 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/index.html [-- Attachment #2: Type: text/html, Size: 5775 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeFULL: failure for /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. 2024-10-24 11:29 [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment Jan Sokolowski ` (2 preceding siblings ...) 2024-10-24 14:19 ` ✗ CI.xeBAT: " Patchwork @ 2024-10-25 15:06 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-10-25 15:06 UTC (permalink / raw) To: Jan Sokolowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87542 bytes --] == Series Details == Series: /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment. URL : https://patchwork.freedesktop.org/series/140434/ State : failure == Summary == CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11973_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11973_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11973_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11973_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip@2x-plain-flip-fb-recreate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@xe_ccs@suspend-resume: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_ccs@suspend-resume.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-8/igt@xe_ccs@suspend-resume.html #### Warnings #### * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: [SKIP][5] ([Intel XE#599]) -> [SKIP][6] +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html Known issues ------------ Here are the changes found in XEIGTPW_11973_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#1426]) +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#877]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2231]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2890]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2669]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][23] ([Intel XE#616]) +8 other tests fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +34 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#373]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1424]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#308]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#3007]) +17 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#701]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1135]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2423] / [i915#2575]) +17 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1421]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#2635]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#886]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: NOTRUN -> [FAIL][42] ([Intel XE#886]) +3 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-dp2: - shard-bmg: [PASS][43] -> [FAIL][44] ([Intel XE#301]) +6 other tests fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [PASS][45] -> [FAIL][46] ([Intel XE#301]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][47] ([Intel XE#1195]) +1 other test incomplete [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1401]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([i915#5274]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#656]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [PASS][52] -> [SKIP][53] ([Intel XE#2890]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2351] / [Intel XE#2890]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#651]) +11 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#653]) +17 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#2927]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#356]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2763]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2763]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1129]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#908]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@drm-resources-equal: - shard-lnl: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#2042]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_pm_rpm@drm-resources-equal.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2446]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms.html - shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#2446]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_prop_blob@basic: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2423] / [i915#2575]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_prop_blob@basic.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2893]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1489]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1128]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#2948]) +1 other test fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_psr@psr2-cursor-render@edp-1: - shard-lnl: NOTRUN -> [FAIL][79] ([Intel XE#2948]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-2/igt@kms_psr@psr2-cursor-render@edp-1.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1437]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#899]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#756]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2905]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2905]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][87] ([Intel XE#1473] / [Intel XE#402]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: [PASS][88] -> [INCOMPLETE][89] ([Intel XE#1473]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#1000]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#688]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@xe_evict@evict-cm-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][93] ([Intel XE#1473]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][94] -> [TIMEOUT][95] ([Intel XE#1473]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_evict@evict-threads-large.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@xe_evict@evict-threads-large.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#1130]) +27 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@many-rebind: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#1130]) +37 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_basic@many-rebind.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@xe_exec_basic@many-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1392]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#288]) +13 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1130]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][103] -> [INCOMPLETE][104] ([Intel XE#2105]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_oa@enable-disable: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2541]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-463/igt@xe_oa@enable-disable.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][106] -> [FAIL][107] ([Intel XE#2249]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2249]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html * igt@xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1420] / [Intel XE#2838]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1173]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#944]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#944]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@xe_query@multigpu-query-gt-list.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [SKIP][115] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-6/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic@atomic-invalid-params: - shard-dg2-set2: [SKIP][117] ([Intel XE#2423] / [i915#2575]) -> [PASS][118] +14 other tests pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_atomic@atomic-invalid-params.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][119] ([Intel XE#2231]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [FAIL][121] ([Intel XE#1659]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][125] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-lnl: [DMESG-WARN][127] ([Intel XE#2055]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][129] ([Intel XE#1541]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][131] ([Intel XE#301]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-lnl: [FAIL][133] ([Intel XE#3036]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][135] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#886]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [FAIL][137] ([Intel XE#301]) -> [PASS][138] +7 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][139] ([Intel XE#1204]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][141] ([Intel XE#301]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][143] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][145] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-dp4: - shard-dg2-set2: [INCOMPLETE][147] ([Intel XE#1195]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_flip@flip-vs-suspend@b-dp4.html * igt@kms_flip@nonexisting-fb: - shard-bmg: [SKIP][149] ([Intel XE#3007]) -> [PASS][150] +12 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-3/igt@kms_flip@nonexisting-fb.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][151] ([Intel XE#886]) -> [PASS][152] +8 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][153] ([Intel XE#2890]) -> [PASS][154] +2 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [FAIL][155] ([Intel XE#3217]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [FAIL][157] ([Intel XE#2948]) -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][159] ([Intel XE#899]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][161] ([Intel XE#2443]) -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@flipline.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_vrr@flipline.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][163] ([Intel XE#1000]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-3/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][165] ([Intel XE#1130]) -> [PASS][166] +21 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][167] ([Intel XE#2754]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_compute_mode@many-execqueues-basic: - shard-dg2-set2: [SKIP][169] ([Intel XE#1130]) -> [PASS][170] +18 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_compute_mode@many-execqueues-basic.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@xe_exec_compute_mode@many-execqueues-basic.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][171] ([Intel XE#2105]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][173] ([Intel XE#1794]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][175] ([Intel XE#2370]) -> [SKIP][176] ([Intel XE#3007]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][177] ([Intel XE#1124]) -> [SKIP][178] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html - shard-dg2-set2: [SKIP][179] ([Intel XE#1124]) -> [SKIP][180] ([Intel XE#2890]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][181] ([Intel XE#2231]) -> [SKIP][182] ([Intel XE#1124]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][183] ([Intel XE#2890]) -> [SKIP][184] ([Intel XE#1124]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][185] ([Intel XE#2231]) -> [SKIP][186] ([Intel XE#2328]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: [SKIP][187] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][188] ([Intel XE#619]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][189] ([Intel XE#607]) -> [SKIP][190] ([Intel XE#2231] / [Intel XE#2890]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][191] ([Intel XE#607]) -> [SKIP][192] ([Intel XE#2351] / [Intel XE#2890]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][193] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][194] ([Intel XE#3007]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html - shard-dg2-set2: [SKIP][195] ([Intel XE#2191]) -> [SKIP][196] ([Intel XE#2423] / [i915#2575]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][197] ([Intel XE#3007]) -> [SKIP][198] ([Intel XE#367]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][199] ([Intel XE#2423] / [i915#2575]) -> [SKIP][200] ([Intel XE#367]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: [SKIP][201] ([Intel XE#2887]) -> [SKIP][202] ([Intel XE#2231] / [Intel XE#2890]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][203] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][204] ([Intel XE#2890]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][205] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][206] ([Intel XE#2231]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][207] ([Intel XE#2907]) -> [SKIP][208] ([Intel XE#2890]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: [SKIP][209] ([Intel XE#2887]) -> [SKIP][210] ([Intel XE#2231]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: [SKIP][211] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][212] ([Intel XE#2887]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][213] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][214] ([Intel XE#455] / [Intel XE#787]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition: - shard-lnl: [SKIP][215] ([Intel XE#314] / [Intel XE#599]) -> [SKIP][216] ([Intel XE#314]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_cdclk@mode-transition.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][217] ([Intel XE#2724]) -> [SKIP][218] ([Intel XE#2231]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_cdclk@plane-scaling.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@degamma: - shard-bmg: [SKIP][219] ([Intel XE#2325]) -> [SKIP][220] ([Intel XE#3007]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_chamelium_color@degamma.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_chamelium_color@degamma.html - shard-dg2-set2: [SKIP][221] ([Intel XE#306]) -> [SKIP][222] ([Intel XE#2423] / [i915#2575]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_chamelium_color@degamma.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][223] ([Intel XE#3007]) -> [SKIP][224] ([Intel XE#2252]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: [SKIP][225] ([Intel XE#2423] / [i915#2575]) -> [SKIP][226] ([Intel XE#373]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: [SKIP][227] ([Intel XE#2252]) -> [SKIP][228] ([Intel XE#3007]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-fast.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-dg2-set2: [SKIP][229] ([Intel XE#373]) -> [SKIP][230] ([Intel XE#2423] / [i915#2575]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-fast.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@legacy: - shard-bmg: [DMESG-FAIL][231] ([Intel XE#3177]) -> [SKIP][232] ([Intel XE#3007]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_content_protection@legacy.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_content_protection@legacy.html - shard-dg2-set2: [FAIL][233] ([Intel XE#1178]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_content_protection@legacy.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#455]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@kms_content_protection@lic-type-1.html - shard-bmg: [SKIP][237] ([Intel XE#3007]) -> [SKIP][238] ([Intel XE#2341]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-5/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][239] ([Intel XE#2320]) -> [SKIP][240] ([Intel XE#3007]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][241] ([Intel XE#2791] / [Intel XE#877]) -> [DMESG-WARN][242] ([Intel XE#877]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: [SKIP][243] ([Intel XE#1508] / [Intel XE#599]) -> [SKIP][244] ([Intel XE#1508]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: [SKIP][245] ([Intel XE#599]) -> [SKIP][246] ([Intel XE#2244]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][247] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][248] ([Intel XE#2244]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][249] ([Intel XE#455]) -> [SKIP][250] ([Intel XE#2890]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: [SKIP][251] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][252] ([Intel XE#2231]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][253] ([Intel XE#455]) -> [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][255] ([Intel XE#651]) -> [SKIP][256] ([Intel XE#2351] / [Intel XE#2890]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][257] ([Intel XE#2311]) -> [SKIP][258] ([Intel XE#2231]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#2890]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][261] ([Intel XE#2311]) -> [SKIP][262] ([Intel XE#2231] / [Intel XE#2890]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][263] ([Intel XE#2231]) -> [SKIP][264] ([Intel XE#2311]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html - shard-dg2-set2: [SKIP][265] ([Intel XE#2890]) -> [SKIP][266] ([Intel XE#651]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][267] ([Intel XE#2333]) -> [SKIP][268] ([Intel XE#2231]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][269] ([Intel XE#2231]) -> [FAIL][270] ([Intel XE#2333]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [FAIL][271] ([Intel XE#2333]) -> [SKIP][272] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][273] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][274] ([Intel XE#2311]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][275] ([Intel XE#2313]) -> [SKIP][276] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html - shard-dg2-set2: [SKIP][277] ([Intel XE#653]) -> [SKIP][278] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][279] ([Intel XE#2231]) -> [SKIP][280] ([Intel XE#2313]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][281] ([Intel XE#2890]) -> [SKIP][282] ([Intel XE#653]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][283] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][284] ([Intel XE#653]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html - shard-bmg: [SKIP][285] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][286] ([Intel XE#2313]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][287] ([Intel XE#2313]) -> [SKIP][288] ([Intel XE#2231]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][289] ([Intel XE#653]) -> [SKIP][290] ([Intel XE#2890]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][291] ([Intel XE#3007]) -> [SKIP][292] ([Intel XE#2340]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: [SKIP][293] ([Intel XE#1503] / [Intel XE#599]) -> [SKIP][294] ([Intel XE#1503]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: [SKIP][295] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#599]) -> [SKIP][296] ([Intel XE#1450] / [Intel XE#2568]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_invalid_mode@clock-too-high.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-lnl: [SKIP][297] ([Intel XE#1450] / [Intel XE#599]) -> [SKIP][298] ([Intel XE#1450]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-1/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][299] ([Intel XE#2231]) -> [SKIP][300] ([Intel XE#346]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-3/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: [SKIP][301] ([Intel XE#2890]) -> [SKIP][302] ([Intel XE#346]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [DMESG-WARN][303] ([Intel XE#3177]) -> [SKIP][304] ([Intel XE#2685]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2-set2: [FAIL][305] ([Intel XE#361]) -> [SKIP][306] ([Intel XE#455]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][307] ([Intel XE#2763]) -> [SKIP][308] ([Intel XE#3007]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - shard-dg2-set2: [SKIP][309] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-bmg: [DMESG-WARN][311] ([Intel XE#3177]) -> [SKIP][312] ([Intel XE#3007]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][313] ([Intel XE#2890]) -> [SKIP][314] ([Intel XE#1489]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][315] ([Intel XE#1489]) -> [SKIP][316] ([Intel XE#2231]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-dg2-set2: [SKIP][317] ([Intel XE#1489]) -> [SKIP][318] ([Intel XE#2890]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][319] ([Intel XE#2231]) -> [SKIP][320] ([Intel XE#1489]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][321] ([Intel XE#2231]) -> [SKIP][322] ([Intel XE#2234] / [Intel XE#2850]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-4/igt@kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][323] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][324] ([Intel XE#2850] / [Intel XE#929]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2-set2: [SKIP][325] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][326] ([Intel XE#2890]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-blt.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-no-drrs: - shard-bmg: [SKIP][327] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][328] ([Intel XE#2234] / [Intel XE#2850]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-3/igt@kms_psr@pr-no-drrs.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2890]) -> [SKIP][330] ([Intel XE#2850] / [Intel XE#929]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: [SKIP][331] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][332] ([Intel XE#2231]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html - shard-dg2-set2: [SKIP][333] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][334] ([Intel XE#2351] / [Intel XE#2890]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-sprite-plane-onoff.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_scaling_modes@scaling-mode-none: - shard-lnl: [SKIP][335] ([Intel XE#2413] / [Intel XE#374] / [Intel XE#599]) -> [SKIP][336] ([Intel XE#2413] / [Intel XE#374]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-none.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2-set2: [SKIP][337] ([Intel XE#455]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_vrr@flip-basic-fastset.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@kms_vrr@flip-basic-fastset.html - shard-bmg: [SKIP][339] ([Intel XE#1499]) -> [SKIP][340] ([Intel XE#3007]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_vrr@flip-basic-fastset.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-lnl: [SKIP][341] ([Intel XE#1499] / [Intel XE#599]) -> [SKIP][342] ([Intel XE#1499]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@kms_vrr@negative-basic.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-lnl-5/igt@kms_vrr@negative-basic.html * igt@xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][343] ([Intel XE#2905]) -> [SKIP][344] ([Intel XE#1130]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-extended-discovery.html * igt@xe_eudebug_online@resume-one: - shard-bmg: [SKIP][345] ([Intel XE#2905]) -> [SKIP][346] ([Intel XE#1130]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@resume-one.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@xe_eudebug_online@resume-one.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][347] ([Intel XE#1130]) -> [SKIP][348] ([Intel XE#2905]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-466/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html - shard-bmg: [SKIP][349] ([Intel XE#1130]) -> [SKIP][350] ([Intel XE#2905]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-bmg: [SKIP][351] ([Intel XE#2322]) -> [SKIP][352] ([Intel XE#1130]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-null.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-bmg: [SKIP][353] ([Intel XE#1130]) -> [SKIP][354] ([Intel XE#2322]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][355] ([Intel XE#288]) -> [SKIP][356] ([Intel XE#1130]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-userptr-imm: - shard-dg2-set2: [SKIP][357] ([Intel XE#1130]) -> [SKIP][358] ([Intel XE#288]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-434/igt@xe_exec_fault_mode@many-userptr-imm.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][359] ([Intel XE#1130]) -> [SKIP][360] ([Intel XE#2284]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-2/igt@xe_pm@d3cold-mocs.html - shard-dg2-set2: [SKIP][361] ([Intel XE#1130]) -> [SKIP][362] ([Intel XE#2284]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pm@d3cold-mocs.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-433/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][363] ([Intel XE#944]) -> [SKIP][364] ([Intel XE#1130]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html - shard-bmg: [SKIP][365] ([Intel XE#944]) -> [SKIP][366] ([Intel XE#1130]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@xe_query@multigpu-query-oa-units.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-1/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][367] ([Intel XE#1130]) -> [SKIP][368] ([Intel XE#944]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][369] ([Intel XE#1130]) -> [SKIP][370] ([Intel XE#944]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-guc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3036]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3036 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177 [Intel XE#3217]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3217 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11973 * Linux: xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 -> xe-2112-26b9d5af7030484e831dd7335a08ec0c3a22f553 IGTPW_11973: fcd97d98074a8eccdd94de83193acaf3871508c2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 xe-2112-26b9d5af7030484e831dd7335a08ec0c3a22f553: 26b9d5af7030484e831dd7335a08ec0c3a22f553 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11973/index.html [-- Attachment #2: Type: text/html, Size: 110358 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-10-25 15:07 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-24 11:29 [PATCH i-g-t v1] /tests/intel/xe_eudebug_online: Remove vm_open_trigger on debugger reattachment Jan Sokolowski 2024-10-24 11:40 ` Grzegorzek, Dominik 2024-10-24 12:59 ` ✗ Fi.CI.BAT: failure for " Patchwork 2024-10-24 14:19 ` ✗ CI.xeBAT: " Patchwork 2024-10-25 15:06 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox