* [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling
@ 2026-07-28 6:00 Sowmiya S
2026-07-28 6:00 ` [PATCH i-g-t v2 1/2] lib/igt_kms: " Sowmiya S
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Sowmiya S @ 2026-07-28 6:00 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Sowmiya S
On NVL (display_ver=35), a higher max_dotclock causes modes like
6144x3456@60 to pass the standard igt_bigjoiner_possible() checks,
yet the kernel still enables joiner for them. Introduce per-platform
exception mode lists (e.g. nvl_joiner_exception_modes[]) dispatched
via novalake check in a new mode_needs_joiner_exception() helper, and
wire it into igt_bigjoiner_possible().
Fix intel_boundary_non_joiner_mode_found() to skip exception modes,
preventing test_basic_max_non_joiner from incorrectly selecting a
joiner-required mode as a non-joiner boundary mode.
Sowmiya S (2):
lib/igt_kms: Add platform-specific joiner exception mode handling
lib/igt_kms: Skip joiner exception modes in boundary non-joiner search
lib/igt_kms.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 62 insertions(+), 2 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v2 1/2] lib/igt_kms: Add platform-specific joiner exception mode handling 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S @ 2026-07-28 6:00 ` Sowmiya S 2026-08-04 6:00 ` Reddy Guddati, Santhosh 2026-07-28 6:00 ` [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search Sowmiya S ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Sowmiya S @ 2026-07-28 6:00 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Sowmiya S On NVL (display_ver=35), a higher max_dotclock causes modes like 6144x3456@60 to pass the standard igt_bigjoiner_possible() checks, yet the kernel still enables joiner for them. Introduce per-platform exception mode lists (e.g. nvl_joiner_exception_modes[]) dispatched via novalake check in a new mode_needs_joiner_exception() helper, and wire it into igt_bigjoiner_possible(). v2: Replace with display version and add FIXME comments (Santhosh) Signed-off-by: Sowmiya S <sowmiya.s@intel.com> --- lib/igt_kms.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 5dd4b0c14..d591e696d 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7065,6 +7065,60 @@ int intel_get_max_pipe_hdisplay(int drm_fd) HDISPLAY_5K_PER_PIPE; } +struct joiner_mode_exception { + uint16_t hdisplay, vdisplay; + uint32_t clock; +}; + +static bool match_joiner_exception(drmModeModeInfo *mode, + const struct joiner_mode_exception *list, + int count) +{ + for (int i = 0; i < count; i++) { + if (mode->hdisplay == list[i].hdisplay && + mode->vdisplay == list[i].vdisplay && + mode->clock == list[i].clock) + return true; + } + + return false; +} + +/* + * TODO: IGT cannot compute the DSC bubble overhead the driver adds to the + * effective pixel rate, since it cannot estimate the DSC parameters - + * whether DSC is used and how many slices. On NVL this lets modes like + * 6144x3456@60 pass igt_bigjoiner_possible()'s clock/hdisplay checks, + * yet the kernel still enables bigjoiner for them. + * + * Add mode_needs_joiner_exception() as a stopgap. + */ +static const struct joiner_mode_exception nvl_joiner_exception_modes[] = { + { 6144, 3456, 1413390 }, /* 6144x3456@60Hz */ +}; + +/* + * mode_needs_joiner_exception - check if a mode requires joiner via explicit exception + * @drm_fd: drm file descriptor + * @mode: libdrm mode + * + * On some platforms, a higher max_dotclock means certain modes won't trigger + * the standard clock or hdisplay checks even though the kernel enables joiner + * for them. Each platform has its own exception list. + * + * Returns: True if the mode is a known joiner exception, else False. + */ +static bool mode_needs_joiner_exception(int drm_fd, drmModeModeInfo *mode) +{ + unsigned int disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); + + if (disp_ver == 35) /* NVL */ + return match_joiner_exception(mode, nvl_joiner_exception_modes, + ARRAY_SIZE(nvl_joiner_exception_modes)); + + return false; +} + /** * igt_bigjoiner_possible: * @drm_fd: drm file descriptor @@ -7079,7 +7133,12 @@ int intel_get_max_pipe_hdisplay(int drm_fd) */ bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock) { - return (mode->hdisplay > intel_get_max_pipe_hdisplay(drm_fd) || + /** + * FIXME: remove mode_needs_joiner_exception() once IGT can estimate + * DSC parameters accurately + */ + return (mode_needs_joiner_exception(drm_fd, mode) || + mode->hdisplay > intel_get_max_pipe_hdisplay(drm_fd) || mode->clock > max_dotclock); } -- 2.51.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v2 1/2] lib/igt_kms: Add platform-specific joiner exception mode handling 2026-07-28 6:00 ` [PATCH i-g-t v2 1/2] lib/igt_kms: " Sowmiya S @ 2026-08-04 6:00 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 7+ messages in thread From: Reddy Guddati, Santhosh @ 2026-08-04 6:00 UTC (permalink / raw) To: Sowmiya S, igt-dev; +Cc: swati2.sharma Hi Sowmiya, On 28-07-2026 11:30, Sowmiya S wrote: > On NVL (display_ver=35), a higher max_dotclock causes modes like > 6144x3456@60 to pass the standard igt_bigjoiner_possible() checks, > yet the kernel still enables joiner for them. Introduce per-platform > exception mode lists (e.g. nvl_joiner_exception_modes[]) dispatched > via novalake check in a new mode_needs_joiner_exception() helper, and > wire it into igt_bigjoiner_possible(). > > v2: Replace with display version and add FIXME comments (Santhosh) Replace FIXME here with TODO.> > Signed-off-by: Sowmiya S <sowmiya.s@intel.com> > --- > lib/igt_kms.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 60 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 5dd4b0c14..d591e696d 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -7065,6 +7065,60 @@ int intel_get_max_pipe_hdisplay(int drm_fd) > HDISPLAY_5K_PER_PIPE; > } > > +struct joiner_mode_exception { > + uint16_t hdisplay, vdisplay; > + uint32_t clock; > +}; > + > +static bool match_joiner_exception(drmModeModeInfo *mode, > + const struct joiner_mode_exception *list, > + int count) > +{ > + for (int i = 0; i < count; i++) { > + if (mode->hdisplay == list[i].hdisplay && > + mode->vdisplay == list[i].vdisplay && > + mode->clock == list[i].clock) > + return true; > + } > + > + return false; > +} > + > +/* > + * TODO: IGT cannot compute the DSC bubble overhead the driver adds to the > + * effective pixel rate, since it cannot estimate the DSC parameters - > + * whether DSC is used and how many slices. On NVL this lets modes like > + * 6144x3456@60 pass igt_bigjoiner_possible()'s clock/hdisplay checks, > + * yet the kernel still enables bigjoiner for them. > + * > + * Add mode_needs_joiner_exception() as a stopgap. > + */ > +static const struct joiner_mode_exception nvl_joiner_exception_modes[] = { > + { 6144, 3456, 1413390 }, /* 6144x3456@60Hz */ > +}; > + > +/* > + * mode_needs_joiner_exception - check if a mode requires joiner via explicit exception > + * @drm_fd: drm file descriptor > + * @mode: libdrm mode > + * > + * On some platforms, a higher max_dotclock means certain modes won't trigger > + * the standard clock or hdisplay checks even though the kernel enables joiner > + * for them. Each platform has its own exception list. > + * > + * Returns: True if the mode is a known joiner exception, else False. > + */ > +static bool mode_needs_joiner_exception(int drm_fd, drmModeModeInfo *mode) > +{ > + unsigned int disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); > + > + if (disp_ver == 35) /* NVL */ nit /* NVL * / can be removed as disp_ver is self explanatory. Rest LGTM. This can be changed during merge. Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > + return match_joiner_exception(mode, nvl_joiner_exception_modes, > + ARRAY_SIZE(nvl_joiner_exception_modes)); > + > + return false; > +} > + > /** > * igt_bigjoiner_possible: > * @drm_fd: drm file descriptor > @@ -7079,7 +7133,12 @@ int intel_get_max_pipe_hdisplay(int drm_fd) > */ > bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock) > { > - return (mode->hdisplay > intel_get_max_pipe_hdisplay(drm_fd) || > + /** > + * FIXME: remove mode_needs_joiner_exception() once IGT can estimate > + * DSC parameters accurately > + */ > + return (mode_needs_joiner_exception(drm_fd, mode) || > + mode->hdisplay > intel_get_max_pipe_hdisplay(drm_fd) || > mode->clock > max_dotclock); > } > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S 2026-07-28 6:00 ` [PATCH i-g-t v2 1/2] lib/igt_kms: " Sowmiya S @ 2026-07-28 6:00 ` Sowmiya S 2026-07-28 6:44 ` ✓ Xe.CI.BAT: success for Add platform-specific joiner exception mode handling (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Sowmiya S @ 2026-07-28 6:00 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Sowmiya S Fix intel_boundary_non_joiner_mode_found() to skip exception modes, preventing test_basic_max_non_joiner from incorrectly selecting a joiner-required mode as a non-joiner boundary mode. Signed-off-by: Sowmiya S <sowmiya.s@intel.com> --- lib/igt_kms.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index d591e696d..2475f0916 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -7192,7 +7192,8 @@ bool intel_boundary_non_joiner_mode_found(int drm_fd, drmModeConnector *connecto drmModeModeInfo *current_mode = &connector->modes[i]; if (current_mode->hdisplay == max_hdisplay && - current_mode->clock < max_dotclock) { + current_mode->clock < max_dotclock && + !mode_needs_joiner_exception(drm_fd, current_mode)) { *mode = *current_mode; return true; } -- 2.51.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for Add platform-specific joiner exception mode handling (rev2) 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S 2026-07-28 6:00 ` [PATCH i-g-t v2 1/2] lib/igt_kms: " Sowmiya S 2026-07-28 6:00 ` [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search Sowmiya S @ 2026-07-28 6:44 ` Patchwork 2026-07-28 6:54 ` ✗ i915.CI.BAT: failure " Patchwork 2026-07-28 8:15 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-28 6:44 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4930 bytes --] == Series Details == Series: Add platform-specific joiner exception mode handling (rev2) URL : https://patchwork.freedesktop.org/series/170996/ State : success == Summary == CI Bug Log - changes from XEIGT_9027_BAT -> XEIGTPW_15597_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 13) ------------------------------ Additional (1): bat-bmg-2 Known issues ------------ Here are the changes found in XEIGTPW_15597_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_9027 -> IGTPW_15597 * Linux: xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4 -> xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d IGTPW_15597: 15597 IGT_9027: 9027 xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d: 28e3f47d47a61b5e28e7566944479e9c9715d41d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/index.html [-- Attachment #2: Type: text/html, Size: 5853 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.BAT: failure for Add platform-specific joiner exception mode handling (rev2) 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S ` (2 preceding siblings ...) 2026-07-28 6:44 ` ✓ Xe.CI.BAT: success for Add platform-specific joiner exception mode handling (rev2) Patchwork @ 2026-07-28 6:54 ` Patchwork 2026-07-28 8:15 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-28 6:54 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1896 bytes --] == Series Details == Series: Add platform-specific joiner exception mode handling (rev2) URL : https://patchwork.freedesktop.org/series/170996/ State : failure == Summary == CI Bug Log - changes from IGT_9027 -> IGTPW_15597 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15597 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15597, 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_15597/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15597: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1: - bat-jsl-5: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9027/bat-jsl-5/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15597/bat-jsl-5/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9027 -> IGTPW_15597 * Linux: CI_DRM_18902 -> CI_DRM_18909 CI-20190529: 20190529 CI_DRM_18902: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18909: 28e3f47d47a61b5e28e7566944479e9c9715d41d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15597: 15597 IGT_9027: 9027 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15597/index.html [-- Attachment #2: Type: text/html, Size: 2513 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for Add platform-specific joiner exception mode handling (rev2) 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S ` (3 preceding siblings ...) 2026-07-28 6:54 ` ✗ i915.CI.BAT: failure " Patchwork @ 2026-07-28 8:15 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-28 8:15 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95197 bytes --] == Series Details == Series: Add platform-specific joiner exception mode handling (rev2) URL : https://patchwork.freedesktop.org/series/170996/ State : success == Summary == CI Bug Log - changes from XEIGT_9027_FULL -> XEIGTPW_15597_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15597_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1125] / [Intel XE#7312]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@intel_hwmon@hwmon-read.html * igt@kms_3d@basic: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#6011]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_3d@basic.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3279]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2370]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3658] / [Intel XE#7360]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407]) +18 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +45 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +36 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1467] / [Intel XE#7367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2328] / [Intel XE#7367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1428] / [Intel XE#7387]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#610] / [Intel XE#7387]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7679]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#8365]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7679]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) +10 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +58 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2652]) +8 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2669] / [Intel XE#7389]) +19 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +51 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7008]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#4416] / [Intel XE#7381]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_cdclk@plane-scaling.html - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2724] / [Intel XE#7449]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#306] / [Intel XE#7358]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325] / [Intel XE#7358]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7358]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7358]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +22 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +27 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6507]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6507]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2390] / [Intel XE#6974]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6974]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6974]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307] / [Intel XE#6974]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +7 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1468] / [Intel XE#7396]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_content_protection@mei-interface.html - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7642]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7642]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +12 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +19 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321] / [Intel XE#7355]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2321] / [Intel XE#7355]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309] / [Intel XE#7343]) +20 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#323] / [Intel XE#6035]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2286] / [Intel XE#6035]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1508]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4210] / [Intel XE#7467]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1508]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#4302]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4354] / [Intel XE#5882]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4354] / [Intel XE#5882]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4354] / [Intel XE#7450]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4354] / [Intel XE#7386]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_dp_link_training@uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4354] / [Intel XE#7386]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4354] / [Intel XE#5870]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_dp_link_training@uhbr-sst.html - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4354] / [Intel XE#5870]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#8265]) +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#8265]) +15 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#4422] / [Intel XE#7442]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4422] / [Intel XE#7442]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2372] / [Intel XE#7359]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#701] / [Intel XE#7359]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#702] / [Intel XE#7344]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#703] / [Intel XE#7448]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2373] / [Intel XE#7448]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1138] / [Intel XE#7344]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_feature_discovery@display-4x.html - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1138] / [Intel XE#7344]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dsc: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#8586]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_feature_discovery@dsc.html - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#8586]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2374] / [Intel XE#6127]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-plain-flip: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1421]) +30 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7179]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#7385]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#7178] / [Intel XE#7349]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7178] / [Intel XE#7351]) +16 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7178] / [Intel XE#7351]) +13 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7179]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#352]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#7061]) +21 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4141]) +49 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2352] / [Intel XE#7399]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6312]) +65 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +201 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7061] / [Intel XE#7356]) +20 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7061] / [Intel XE#7356]) +15 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#6312] / [Intel XE#651]) +48 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1469] / [Intel XE#7399]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7905]) +198 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7399]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +197 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#656] / [Intel XE#7905]) +162 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#7865]) +117 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#7061]) +18 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1470]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1470] / [Intel XE#2853]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#3374] / [Intel XE#3544]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#3544]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1503]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#6901]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6901]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7086] / [Intel XE#7390]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4298] / [Intel XE#5873]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#6900] / [Intel XE#7362]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#6911] / [Intel XE#7378]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4090] / [Intel XE#7443]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#7173] / [Intel XE#7294]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#8348]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_mst@mst-suspend-read-crc.html - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#8348]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#7591]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#7591]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2486]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#6912] / [Intel XE#7375]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#6912] / [Intel XE#7375]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#8303]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#8303]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#7283]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#7283]) +14 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#599] / [Intel XE#7382]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#4596] / [Intel XE#5854]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#5021] / [Intel XE#7377]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#5020] / [Intel XE#7348]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_plane_multiple@tiling-y.html - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#5020] / [Intel XE#7348]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3307]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2763] / [Intel XE#6886]) +27 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2763] / [Intel XE#6886]) +24 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#8395] / [Intel XE#8396]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html * igt@kms_pm_dc@dc3co-vpb-framegap: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#8395] / [Intel XE#8396]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-framegap.html * igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#8396]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html * igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#8396]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1131]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3309] / [Intel XE#7368]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4608] / [Intel XE#7304]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#4608]) +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +7 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2893] / [Intel XE#7304]) +16 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1489]) +27 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1128] / [Intel XE#7413]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2387] / [Intel XE#7429]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1406] / [Intel XE#4609]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1406] / [Intel XE#7345]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1406]) +16 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2234] / [Intel XE#2850]) +41 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2234]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#7795]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1127] / [Intel XE#5813]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#3904] / [Intel XE#7342]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2413]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1435] / [Intel XE#8695]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1435]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#6503]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#362] / [Intel XE#5848]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#330] / [Intel XE#5857]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1499]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf-dc3co: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#8397]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_vrr@lobf-dc3co.html - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#8397]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@kms_vrr@lobf-dc3co.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1499]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_ccs@vm-bind-fault-mode-decompress: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#7644]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_ccs@vm-bind-fault-mode-decompress.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#6599]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_compute@ccs-mode-basic.html - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#1447] / [Intel XE#7471]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute@eu-busy-10s: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_compute@eu-busy-10s.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_configfs@ctx-restore-mid-bb-invalid: - shard-bmg: [PASS][186] -> [ABORT][187] ([Intel XE#8007]) +1 other test abort [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-10/igt@xe_configfs@ctx-restore-mid-bb-invalid.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_configfs@ctx-restore-mid-bb-invalid.html * igt@xe_configfs@survivability-mode: - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#8428]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_configfs@survivability-mode.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#6540] / [Intel XE#688]) +47 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][190] ([Intel XE#6321] / [Intel XE#8355]) +1 other test incomplete [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-priority: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#8370]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority.html * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#7482]) +81 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#2322] / [Intel XE#7372]) +27 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#1392]) +35 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#8374]) +36 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm: - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#8374]) +52 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#8364]) +97 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr: - shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#8364]) +125 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html * igt@xe_exec_reset@cm-multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#8369]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_reset@multi-queue-gt-reset: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#8369]) +9 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@xe_exec_reset@multi-queue-gt-reset.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][201] ([Intel XE#7098] / [Intel XE#8159]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#6196]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#8378]) +38 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#8378]) +32 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html * igt@xe_madvise@atomic-global: - shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#7980]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_madvise@atomic-global.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_media_fill@media-fill.html - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#1416]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_mmap@vram.html * igt@xe_multigpu_svm@mgpu-atomic-op-conflict: - shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#6964]) +11 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html * igt@xe_multigpu_svm@mgpu-latency-copy-basic: - shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#6964]) +10 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html * igt@xe_noexec_ping_pong@basic: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_noexec_ping_pong@basic.html * igt@xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_page_reclaim@basic-mixed: - shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#7793]) +9 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_page_reclaim@basic-mixed.html * igt@xe_page_reclaim@binds-null-vma: - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#7793]) +10 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@xe_page_reclaim@binds-null-vma.html * igt@xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#1420] / [Intel XE#7590]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#7590] / [Intel XE#977]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#2245] / [Intel XE#7590]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#7590] / [Intel XE#979]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][221] ([Intel XE#7695]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-lnl: NOTRUN -> [FAIL][222] ([Intel XE#7695]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pat@xa-app-transient-media-on: - shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#7590] / [Intel XE#7772]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-i2c: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#5694] / [Intel XE#7370]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@xe_pm@d3cold-i2c.html - shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#5694] / [Intel XE#7370]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#2284] / [Intel XE#7370]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_pm@d3hot-i2c.html - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#1948]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#584] / [Intel XE#7369]) +8 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_pm@s3-mocs.html * igt@xe_pm_residency@aspm_link_residency: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#7271]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#4650] / [Intel XE#7347]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#7599]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault-svm.html - shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#7599]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][238] ([Intel XE#4733] / [Intel XE#7417]) +9 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#944]) +8 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#944]) +11 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#7174]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-1/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#4130] / [Intel XE#7366]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-basic: - shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#7569]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-3/igt@xe_sriov_flr@flr-basic.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][244] -> [FAIL][245] ([Intel XE#6569]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#3342]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: NOTRUN -> [FAIL][247] ([Intel XE#6569]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html - shard-lnl: NOTRUN -> [SKIP][248] ([Intel XE#4273]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@equal-throughput-normal-priority: - shard-lnl: NOTRUN -> [SKIP][249] ([Intel XE#8339]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-7/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html * igt@xe_sriov_vfio@region-info: - shard-lnl: NOTRUN -> [SKIP][250] ([Intel XE#7724]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_sriov_vfio@region-info.html * igt@xe_sriov_vram@vf-access-provisioned: - shard-lnl: NOTRUN -> [SKIP][251] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_sriov_vram@vf-access-provisioned.html * igt@xe_survivability@i2c-functionality: - shard-lnl: NOTRUN -> [SKIP][252] ([Intel XE#8415]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-4/igt@xe_survivability@i2c-functionality.html * igt@xe_vm@overcommit-nonfault-vram-lr-defer: - shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#7892]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-6/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [ABORT][254] ([Intel XE#8007]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: [FAIL][255] ([Intel XE#1231]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][257] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][259] ([Intel XE#301]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][261] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [ABORT][263] ([Intel XE#8007]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_module_load@load: - shard-bmg: ([PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [SKIP][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-5/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-7/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-9/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-2/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-1/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-10/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-8/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-6/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-8/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-3/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-4/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-10/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-3/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-4/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-1/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-9/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-8/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-2/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-5/igt@xe_module_load@load.html #### Warnings #### * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][301] ([Intel XE#7809]) -> [FAIL][302] ([Intel XE#7571]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][303] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][304] ([Intel XE#2426] / [Intel XE#5848]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312 [Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346 [Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7381 [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7396 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450 [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453 [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467 [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7569 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339 [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397 [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415 [Intel XE#8428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8428 [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586 [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_9027 -> IGTPW_15597 * Linux: xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4 -> xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d IGTPW_15597: 15597 IGT_9027: 9027 xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d: 28e3f47d47a61b5e28e7566944479e9c9715d41d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15597/index.html [-- Attachment #2: Type: text/html, Size: 110768 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-04 6:03 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S 2026-07-28 6:00 ` [PATCH i-g-t v2 1/2] lib/igt_kms: " Sowmiya S 2026-08-04 6:00 ` Reddy Guddati, Santhosh 2026-07-28 6:00 ` [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search Sowmiya S 2026-07-28 6:44 ` ✓ Xe.CI.BAT: success for Add platform-specific joiner exception mode handling (rev2) Patchwork 2026-07-28 6:54 ` ✗ i915.CI.BAT: failure " Patchwork 2026-07-28 8:15 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox