* [PATCH v2 i-g-t] lib/igt_core: Refactor libpciaccess init/cleanup wrappers
@ 2024-09-11 14:13 Marcin Bernatowicz
2024-09-12 6:42 ` ✗ Fi.CI.BAT: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Marcin Bernatowicz @ 2024-09-11 14:13 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Peter Senna Tschudin, Adam Miszczak,
Lukasz Laguna, Jakub Kolakowski, Janusz Krzysztofik, Chris Wilson
Enable reinitialization of the libpciaccess global state, necessary
to correctly handle dynamic add/remove of PCI devices, such as the
creation/removal of Virtual Functions (VFs). Update
igt_pci_system_cleanup() to conditionally call pci_system_cleanup()
based on the initialization state. Introduce igt_pci_system_reinit()
for explicit reinitialization of the libpciaccess global state,
particularly useful after PCI device changes, to be used in
subsequent patches.
v2:
- Change pci_system_initialized type from int to bool for consistency
with install_handler (Peter)
- Simplify conditional logic in igt_pci_system_init by removing
redundant assignments
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Chris Wilson <chris.p.wilson@intel.com>
Cc: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
lib/igt_core.c | 40 ++++++++++++++++++++++++++++++++++------
lib/igt_core.h | 36 ++++++++++++++++++++++++------------
2 files changed, 58 insertions(+), 18 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 88b5af732..407f7b551 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -3483,23 +3483,51 @@ void igt_srandom(void)
}
/* IGT wrappers around libpciaccess init/cleanup functions */
+static bool pci_system_initialized;
+static pthread_mutex_t pci_system_mutex = PTHREAD_MUTEX_INITIALIZER;
+
+void igt_pci_system_cleanup(void)
+{
+ pthread_mutex_lock(&pci_system_mutex);
+ if (pci_system_initialized) {
+ pci_system_cleanup();
+ pci_system_initialized = false;
+ }
+ pthread_mutex_unlock(&pci_system_mutex);
+}
static void pci_system_exit_handler(int sig)
{
- pci_system_cleanup();
+ igt_pci_system_cleanup();
}
-static void __pci_system_init(void)
+int igt_pci_system_init(void)
{
- if (!igt_warn_on_f(pci_system_init(), "Could not initialize libpciaccess global data\n"))
+ int ret = 0;
+ bool install_handler = false;
+
+ pthread_mutex_lock(&pci_system_mutex);
+ if (!pci_system_initialized) {
+ ret = igt_warn_on_f(pci_system_init(),
+ "Could not initialize libpciaccess global data\n");
+ if (!ret) {
+ pci_system_initialized = true;
+ install_handler = true;
+ }
+ }
+ pthread_mutex_unlock(&pci_system_mutex);
+
+ if (install_handler)
igt_install_exit_handler(pci_system_exit_handler);
+
+ return ret;
}
-int igt_pci_system_init(void)
+int igt_pci_system_reinit(void)
{
- static pthread_once_t once_control = PTHREAD_ONCE_INIT;
+ igt_pci_system_cleanup();
- return pthread_once(&once_control, __pci_system_init);
+ return igt_pci_system_init();
}
/**
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 58864c2bc..90f57402f 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -1530,29 +1530,41 @@ void igt_kmsg(const char *format, ...);
* igt_pci_system_init:
* IGT wrapper around pci_system_init()
*
- * Runs pci_system_init() and installs pci_system_cleanup() as IGT exit handler when
- * called first per thread, subsequent calls are noop. Tests should use this wrapper
+ * Runs pci_system_init() and installs igt_pci_system_cleanup() as IGT exit handler when
+ * called first per thread, subsequent calls are noop. Tests should use this wrapper
* instead of pci_system_init() to avoid memory leaking which happens each time a call
* to pci_system_init() is repeated not preceded by pci_system_cleanup() (may easily
* happen in consequence of long jumps performed by IGT flow control functions).
*
- * Return value: equal return value of pthread_once() (return value of pci_system_init()
- * can't be passed through pthread_once())
+ * Return:
+ * Return value of pci_system_init() or 0 if pci system is already initialized.
*/
int igt_pci_system_init(void);
+/**
+ * igt_pci_system_reinit:
+ * Reinitialize libpciaccess global data.
+ *
+ * Executes igt_pci_system_cleanup() and igt_pci_system_init() to refresh
+ * the PCI system state, typically needed after PCI devices are added or
+ * removed.
+ *
+ * Note: All previously obtained handles (pci_dev, mmio) become invalid
+ * after this call. Do not use old handles post-reinitialization.
+ *
+ * Return: Outcome of igt_pci_system_init().
+ */
+int igt_pci_system_reinit(void);
+
/**
* igt_pci_system_cleanup():
- * IGT replacement for pci_system_cleanup()
+ * IGT wrapper around pci_system_cleanup()
*
- * For use in IGT library and tests to avoid destroying libpciaccess global data.
- * Direct calls to pci_system_cleanup() should be either dropped or replaced with this
- * wrapper (for code clarity), otherwise subsequent access to libpciaccess global data
- * may be lost unless preceded by direct call to pci_system_init() (not recommended).
+ * Runs pci_system_cleanup() if igt_pci_system_init() was successfully called
+ * before. This allows to refresh the libpciaccess global data when followed
+ * by igt_pci_system_init(), see igt_pci_system_reinit().
*/
-static inline void igt_pci_system_cleanup(void)
-{
-}
+void igt_pci_system_cleanup(void);
void igt_emit_ignore_dmesg_regex(const char *ignore_dmesg_regex);
--
2.31.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* ✗ Fi.CI.BAT: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
2024-09-11 14:13 [PATCH v2 i-g-t] lib/igt_core: Refactor libpciaccess init/cleanup wrappers Marcin Bernatowicz
@ 2024-09-12 6:42 ` Patchwork
2024-09-12 7:09 ` ✓ CI.xeBAT: success " Patchwork
2024-09-12 11:57 ` ✗ CI.xeFULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-09-12 6:42 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13595 bytes --]
== Series Details ==
Series: lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
URL : https://patchwork.freedesktop.org/series/137949/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15400 -> IGTPW_11725
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11725 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11725, 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_11725/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (1): bat-dg2-11
Missing (3): bat-dg1-7 fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11725:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@memory_region:
- bat-arls-2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-2/igt@i915_selftest@live@memory_region.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-2/igt@i915_selftest@live@memory_region.html
Known issues
------------
Here are the changes found in IGTPW_11725 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [PASS][6] -> [DMESG-WARN][7] ([i915#11621] / [i915#180] / [i915#1982] / [i915#9925])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#11681] / [i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arls-2: [PASS][9] -> [DMESG-FAIL][10] ([i915#10262] / [i915#10341])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-arls-5: NOTRUN -> [DMESG-WARN][11] ([i915#11637]) +27 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_mocs:
- bat-arls-1: [PASS][12] -> [DMESG-WARN][13] ([i915#11349] / [i915#12133])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-1/igt@i915_selftest@live@gt_mocs.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-1/igt@i915_selftest@live@gt_mocs.html
- bat-arls-5: NOTRUN -> [DMESG-WARN][14] ([i915#11637] / [i915#12133]) +2 other tests dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@late_gt_pm:
- bat-arls-2: [PASS][15] -> [DMESG-FAIL][16] ([i915#10262]) +8 other tests dmesg-fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@objects:
- bat-arls-5: NOTRUN -> [DMESG-WARN][17] ([i915#10341] / [i915#11637]) +2 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@i915_selftest@live@objects.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][18] -> [DMESG-WARN][19] ([i915#11621]) +81 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#4212]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][23] -> [DMESG-WARN][24] ([i915#180])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#3840])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][27]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][28] ([i915#5274])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- fi-kbl-7567u: [PASS][29] -> [DMESG-WARN][30] ([i915#180] / [i915#9925]) +14 other tests dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][31] ([i915#9197]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
- bat-arls-5: [PASS][32] -> [INCOMPLETE][33] ([i915#11320])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#5354])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][35] -> [DMESG-WARN][36] ([i915#11621] / [i915#180] / [i915#9925]) +36 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][37] ([i915#1072] / [i915#9732]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#3555])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][39] ([i915#3708])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#3708] / [i915#4077]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-11: NOTRUN -> [SKIP][41] ([i915#3291] / [i915#3708]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-dg2-11/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [DMESG-WARN][42] ([i915#11349]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-1/igt@i915_selftest@live@hangcheck.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arls-5: [ABORT][44] ([i915#12175]) -> [DMESG-WARN][45] ([i915#10341] / [i915#12133])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-5/igt@i915_selftest@live.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][46] ([i915#12061]) -> [DMESG-WARN][47] ([i915#10341] / [i915#11637])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15400/bat-arls-5/igt@i915_selftest@live@workarounds.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11320]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11320
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12175]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12175
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8013 -> IGTPW_11725
CI-20190529: 20190529
CI_DRM_15400: 1b37d4587b45639327eeb4cce29f77d487f7700a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11725: add847cc1283a0d85670d86ed168797186311bb7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8013: 8013
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11725/index.html
[-- Attachment #2: Type: text/html, Size: 16636 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* ✓ CI.xeBAT: success for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
2024-09-11 14:13 [PATCH v2 i-g-t] lib/igt_core: Refactor libpciaccess init/cleanup wrappers Marcin Bernatowicz
2024-09-12 6:42 ` ✗ Fi.CI.BAT: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2) Patchwork
@ 2024-09-12 7:09 ` Patchwork
2024-09-12 11:57 ` ✗ CI.xeFULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-09-12 7:09 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1699 bytes --]
== Series Details ==
Series: lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
URL : https://patchwork.freedesktop.org/series/137949/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8013_BAT -> XEIGTPW_11725_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11725_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
- bat-lnl-1: [FAIL][1] ([Intel XE#1069]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
Build changes
-------------
* IGT: IGT_8013 -> IGTPW_11725
* Linux: xe-1929-45bec37c098c2f6232d233c8116236f09327d2b8 -> xe-1932-1b37d4587b45639327eeb4cce29f77d487f7700a
IGTPW_11725: add847cc1283a0d85670d86ed168797186311bb7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8013: 8013
xe-1929-45bec37c098c2f6232d233c8116236f09327d2b8: 45bec37c098c2f6232d233c8116236f09327d2b8
xe-1932-1b37d4587b45639327eeb4cce29f77d487f7700a: 1b37d4587b45639327eeb4cce29f77d487f7700a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/index.html
[-- Attachment #2: Type: text/html, Size: 2275 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* ✗ CI.xeFULL: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
2024-09-11 14:13 [PATCH v2 i-g-t] lib/igt_core: Refactor libpciaccess init/cleanup wrappers Marcin Bernatowicz
2024-09-12 6:42 ` ✗ Fi.CI.BAT: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2) Patchwork
2024-09-12 7:09 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-09-12 11:57 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-09-12 11:57 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 65982 bytes --]
== Series Details ==
Series: lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2)
URL : https://patchwork.freedesktop.org/series/137949/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8013_full -> XEIGTPW_11725_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11725_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11725_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_11725_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_drm_fdinfo@utilization-others-full-load:
- shard-lnl: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-7/igt@xe_drm_fdinfo@utilization-others-full-load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-full-load.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html
- shard-lnl: [PASS][4] -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@xe_wedged@wedged-at-any-timeout.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@xe_wedged@wedged-at-any-timeout:
- {shard-bmg}: NOTRUN -> [FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_11725_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#599])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#1659])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#619]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#2191])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#787]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#306])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-7/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#373]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#323])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#701])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#1551])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#656]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#651]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#651])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#653]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#653])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#356])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [PASS][41] -> [DMESG-FAIL][42] ([Intel XE#324]) +1 other test dmesg-fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-4/igt@kms_plane@plane-position-hole.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-7/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
- shard-lnl: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#324]) +1 other test dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][45] -> [FAIL][46] ([Intel XE#361])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#498]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#870])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#908])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#2029])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#929]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#929])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1149] / [Intel XE#1201])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#330])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@max-min:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#2443]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-5/igt@kms_vrr@max-min.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#756])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#756])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1126] / [Intel XE#1201])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [PASS][63] -> [TIMEOUT][64] ([Intel XE#1473]) +1 other test timeout
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1392]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#288]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][67] -> [TIMEOUT][68] ([Intel XE#2105])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#1999]) +2 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#2136])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_module_load@many-reload.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@xe_module_load@many-reload.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#2249])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][74] ([Intel XE#2249])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-5/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#2723])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-4/igt@xe_oa@oa-exponents.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-8/igt@xe_oa@oa-exponents.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#2723])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-8/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#2541]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#1694])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-prefetch.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [PASS][81] -> [ABORT][82] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) +1 other test abort
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#958])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#944])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-5/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@xe_query@multigpu-query-engines.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: NOTRUN -> [DMESG-WARN][87] ([Intel XE#1760])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][88] ([Intel XE#911]) -> [PASS][89] +3 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- {shard-bmg}: [FAIL][90] ([Intel XE#2436]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- {shard-bmg}: [INCOMPLETE][92] -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- {shard-bmg}: [DMESG-WARN][94] ([Intel XE#877]) -> [PASS][95] +10 other tests pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-lnl: [DMESG-WARN][96] ([Intel XE#877]) -> [PASS][97] +1 other test pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-4/igt@kms_cursor_legacy@torture-move@pipe-a.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: [FAIL][98] ([Intel XE#886]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
- shard-dg2-set2: [INCOMPLETE][100] ([Intel XE#1195] / [Intel XE#2597]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][102] ([Intel XE#324]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_plane@plane-position-covered.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-1/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4:
- shard-lnl: [DMESG-WARN][104] ([Intel XE#324]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4.html
* igt@kms_psr@psr2-primary-page-flip@edp-1:
- shard-lnl: [FAIL][106] ([Intel XE#1649]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_psr@psr2-primary-page-flip@edp-1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-5/igt@kms_psr@psr2-primary-page-flip@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- {shard-bmg}: [FAIL][108] ([Intel XE#899]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-5/igt@kms_universal_plane@cursor-fb-leak.html
- shard-dg2-set2: [FAIL][110] ([Intel XE#771] / [Intel XE#899]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
- shard-dg2-set2: [FAIL][112] ([Intel XE#899]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-6:
- shard-dg2-set2: [ABORT][114] -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-466/igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-6.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-6.html
* igt@xe_evict@evict-mixed-many-threads-small:
- {shard-bmg}: [TIMEOUT][116] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-execqueues-parallel-userptr-invalidate:
- shard-dg2-set2: [INCOMPLETE][118] ([Intel XE#1195]) -> [PASS][119] +3 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_exec_balancer@many-execqueues-parallel-userptr-invalidate.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@xe_exec_balancer@many-execqueues-parallel-userptr-invalidate.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [DMESG-WARN][120] -> [PASS][121] +2 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-dg2-set2: [DMESG-WARN][122] ([Intel XE#2046]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_exec_reset@gt-reset-stress.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_threads@threads-cm-basic:
- shard-dg2-set2: [FAIL][124] ([Intel XE#1069]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_exec_threads@threads-cm-basic.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@xe_exec_threads@threads-cm-basic.html
* igt@xe_pm@d3hot-mocs:
- shard-dg2-set2: [TIMEOUT][126] -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_pm@d3hot-mocs.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][128] ([Intel XE#1794]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-2/igt@xe_pm@s4-mocs.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-1/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- {shard-bmg}: [INCOMPLETE][130] ([Intel XE#2280]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-3/igt@xe_pm@s4-vm-bind-unbind-all.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-8/igt@xe_pm@s4-vm-bind-unbind-all.html
- shard-lnl: [DMESG-WARN][132] ([Intel XE#2280]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [DMESG-WARN][134] -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_wedged@wedged-mode-toggle.html
- {shard-bmg}: [DMESG-WARN][136] -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-bmg-7/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][139] ([Intel XE#801]) +23 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][140] ([Intel XE#316]) -> [SKIP][141] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][142] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][143] ([Intel XE#316]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1124]) -> [SKIP][145] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][147] ([Intel XE#607])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][149] ([Intel XE#1124]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][150] ([Intel XE#367]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][152] ([Intel XE#2191]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][155] ([Intel XE#367]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][156] ([Intel XE#787]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#787]) +83 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][159] ([Intel XE#787]) +41 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][161] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][162] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +23 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1252]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#1252])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][167] ([Intel XE#314]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][168] ([Intel XE#306]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_chamelium_color@degamma.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][170] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][171] ([Intel XE#373]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][172] ([Intel XE#373]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][175] ([Intel XE#308])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][176] ([Intel XE#308]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][179] ([Intel XE#455]) +8 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-32x32.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][180] ([Intel XE#323]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#323])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][183] ([Intel XE#323])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][184] ([Intel XE#307]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][187] ([Intel XE#776])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1135]) -> [SKIP][189] ([Intel XE#1135] / [Intel XE#1201])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_feature_discovery@psr2.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][191] ([Intel XE#1551])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][192] ([Intel XE#651]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#651]) +28 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][194] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][195] ([Intel XE#651]) +16 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][197] ([Intel XE#658])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][198] ([Intel XE#653]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#653]) +25 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][200] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][201] ([Intel XE#653]) +15 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][202] ([Intel XE#870]) -> [SKIP][203] ([Intel XE#1201] / [Intel XE#870])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][205] ([Intel XE#870])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][207] ([Intel XE#1489]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1489]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#1489]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1122]) -> [SKIP][211] ([Intel XE#1122] / [Intel XE#1201])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][213] ([Intel XE#929]) +9 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][214] ([Intel XE#929]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][216] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][217] ([Intel XE#327])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][218] ([Intel XE#327]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#327])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2-set2: [SKIP][220] ([Intel XE#455]) -> [SKIP][221] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][223] ([Intel XE#1201] / [Intel XE#1500])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: [FAIL][224] ([Intel XE#2443]) -> [DMESG-FAIL][225] ([Intel XE#1638]) +1 other test dmesg-fail
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-lnl-1/igt@kms_vrr@lobf@pipe-a-edp-1.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-lnl-3/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][226] ([Intel XE#756]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#756])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][229] ([Intel XE#756])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][230] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: [SKIP][232] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][233] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1123]) -> [SKIP][235] ([Intel XE#1123] / [Intel XE#1201])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [FAIL][236] ([Intel XE#1000]) -> [TIMEOUT][237] ([Intel XE#1473])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
- shard-dg2-set2: [SKIP][238] ([Intel XE#288]) -> [SKIP][239] ([Intel XE#1201] / [Intel XE#288]) +22 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][241] ([Intel XE#288]) +14 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2360]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#2360]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][244] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][245] ([Intel XE#560])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@xe_media_fill@media-fill.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: [SKIP][246] ([Intel XE#2541]) -> [SKIP][247] ([Intel XE#1201] / [Intel XE#2541]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_oa@privileged-forked-access-vaddr.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-433/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][248] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][249] ([Intel XE#2541]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][250] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][251] ([Intel XE#977])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][252] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][253] ([Intel XE#2284] / [Intel XE#366])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][254] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][255] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][256] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][257] ([Intel XE#944])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-432/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][258] ([Intel XE#944]) -> [SKIP][259] ([Intel XE#1201] / [Intel XE#944])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8013/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2046
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[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#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[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#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[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#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[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#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8013 -> IGTPW_11725
* Linux: xe-1929-45bec37c098c2f6232d233c8116236f09327d2b8 -> xe-1932-1b37d4587b45639327eeb4cce29f77d487f7700a
IGTPW_11725: add847cc1283a0d85670d86ed168797186311bb7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8013: 8013
xe-1929-45bec37c098c2f6232d233c8116236f09327d2b8: 45bec37c098c2f6232d233c8116236f09327d2b8
xe-1932-1b37d4587b45639327eeb4cce29f77d487f7700a: 1b37d4587b45639327eeb4cce29f77d487f7700a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11725/index.html
[-- Attachment #2: Type: text/html, Size: 84094 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-12 11:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-11 14:13 [PATCH v2 i-g-t] lib/igt_core: Refactor libpciaccess init/cleanup wrappers Marcin Bernatowicz
2024-09-12 6:42 ` ✗ Fi.CI.BAT: failure for lib/igt_core: Refactor libpciaccess init/cleanup wrappers (rev2) Patchwork
2024-09-12 7:09 ` ✓ CI.xeBAT: success " Patchwork
2024-09-12 11:57 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox