* [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh()
@ 2024-11-29 4:26 Ville Syrjala
2024-11-29 4:26 ` [PATCH 1/2] drm/modes: Avoid divide by zero harder " Ville Syrjala
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Ville Syrjala @ 2024-11-29 4:26 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Fix a potential div-by-zero in drm_mode_vrefresh()
TODO: should probably make drm_mode_setcrtc() not even print the
(potentially partially) converted mode, and instead print
the original umode..
Test-with: 20241128190927.26033-1-ville.syrjala@linux.intel.com
Ville Syrjälä (2):
drm/modes: Avoid divide by zero harder in drm_mode_vrefresh()
drm/modes: Fix drm_mode_vrefres() docs
drivers/gpu/drm/drm_modes.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/2] drm/modes: Avoid divide by zero harder in drm_mode_vrefresh() 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala @ 2024-11-29 4:26 ` Ville Syrjala 2024-11-29 8:00 ` Nautiyal, Ankit K 2024-11-29 4:26 ` [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs Ville Syrjala ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Ville Syrjala @ 2024-11-29 4:26 UTC (permalink / raw) To: dri-devel; +Cc: intel-gfx, stable, syzbot+622bba18029bcde672e1 From: Ville Syrjälä <ville.syrjala@linux.intel.com> drm_mode_vrefresh() is trying to avoid divide by zero by checking whether htotal or vtotal are zero. But we may still end up with a div-by-zero of vtotal*htotal*... Cc: stable@vger.kernel.org Reported-by: syzbot+622bba18029bcde672e1@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=622bba18029bcde672e1 Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/drm_modes.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 6ba167a33461..71573b85d924 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c @@ -1287,14 +1287,11 @@ EXPORT_SYMBOL(drm_mode_set_name); */ int drm_mode_vrefresh(const struct drm_display_mode *mode) { - unsigned int num, den; + unsigned int num = 1, den = 1; if (mode->htotal == 0 || mode->vtotal == 0) return 0; - num = mode->clock; - den = mode->htotal * mode->vtotal; - if (mode->flags & DRM_MODE_FLAG_INTERLACE) num *= 2; if (mode->flags & DRM_MODE_FLAG_DBLSCAN) @@ -1302,6 +1299,12 @@ int drm_mode_vrefresh(const struct drm_display_mode *mode) if (mode->vscan > 1) den *= mode->vscan; + if (check_mul_overflow(mode->clock, num, &num)) + return 0; + + if (check_mul_overflow(mode->htotal * mode->vtotal, den, &den)) + return 0; + return DIV_ROUND_CLOSEST_ULL(mul_u32_u32(num, 1000), den); } EXPORT_SYMBOL(drm_mode_vrefresh); -- 2.45.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] drm/modes: Avoid divide by zero harder in drm_mode_vrefresh() 2024-11-29 4:26 ` [PATCH 1/2] drm/modes: Avoid divide by zero harder " Ville Syrjala @ 2024-11-29 8:00 ` Nautiyal, Ankit K 2024-11-29 13:07 ` Jani Nikula 0 siblings, 1 reply; 9+ messages in thread From: Nautiyal, Ankit K @ 2024-11-29 8:00 UTC (permalink / raw) To: Ville Syrjala, dri-devel; +Cc: intel-gfx, stable, syzbot+622bba18029bcde672e1 On 11/29/2024 9:56 AM, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > drm_mode_vrefresh() is trying to avoid divide by zero > by checking whether htotal or vtotal are zero. But we may > still end up with a div-by-zero of vtotal*htotal*... > > Cc: stable@vger.kernel.org > Reported-by: syzbot+622bba18029bcde672e1@syzkaller.appspotmail.com > Closes: https://syzkaller.appspot.com/bug?extid=622bba18029bcde672e1 > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/drm_modes.c | 11 +++++++---- > 1 file changed, 7 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c > index 6ba167a33461..71573b85d924 100644 > --- a/drivers/gpu/drm/drm_modes.c > +++ b/drivers/gpu/drm/drm_modes.c > @@ -1287,14 +1287,11 @@ EXPORT_SYMBOL(drm_mode_set_name); > */ > int drm_mode_vrefresh(const struct drm_display_mode *mode) > { > - unsigned int num, den; > + unsigned int num = 1, den = 1; > > if (mode->htotal == 0 || mode->vtotal == 0) > return 0; > > - num = mode->clock; > - den = mode->htotal * mode->vtotal; > - > if (mode->flags & DRM_MODE_FLAG_INTERLACE) > num *= 2; > if (mode->flags & DRM_MODE_FLAG_DBLSCAN) > @@ -1302,6 +1299,12 @@ int drm_mode_vrefresh(const struct drm_display_mode *mode) > if (mode->vscan > 1) > den *= mode->vscan; > > + if (check_mul_overflow(mode->clock, num, &num)) > + return 0; > + > + if (check_mul_overflow(mode->htotal * mode->vtotal, den, &den)) Can mode->htotal * mode->vtotal result in overflow? and we should add: if (check_mul_overflow(mode->htotal, mode->vtotal, &prod)) return 0; Regards, Ankit > + return 0; > + > return DIV_ROUND_CLOSEST_ULL(mul_u32_u32(num, 1000), den); > } > EXPORT_SYMBOL(drm_mode_vrefresh); ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] drm/modes: Avoid divide by zero harder in drm_mode_vrefresh() 2024-11-29 8:00 ` Nautiyal, Ankit K @ 2024-11-29 13:07 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2024-11-29 13:07 UTC (permalink / raw) To: Nautiyal, Ankit K, Ville Syrjala, dri-devel Cc: intel-gfx, stable, syzbot+622bba18029bcde672e1 On Fri, 29 Nov 2024, "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com> wrote: > On 11/29/2024 9:56 AM, Ville Syrjala wrote: >> From: Ville Syrjälä <ville.syrjala@linux.intel.com> >> >> drm_mode_vrefresh() is trying to avoid divide by zero >> by checking whether htotal or vtotal are zero. But we may >> still end up with a div-by-zero of vtotal*htotal*... >> >> Cc: stable@vger.kernel.org >> Reported-by: syzbot+622bba18029bcde672e1@syzkaller.appspotmail.com >> Closes: https://syzkaller.appspot.com/bug?extid=622bba18029bcde672e1 >> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> >> --- >> drivers/gpu/drm/drm_modes.c | 11 +++++++---- >> 1 file changed, 7 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c >> index 6ba167a33461..71573b85d924 100644 >> --- a/drivers/gpu/drm/drm_modes.c >> +++ b/drivers/gpu/drm/drm_modes.c >> @@ -1287,14 +1287,11 @@ EXPORT_SYMBOL(drm_mode_set_name); >> */ >> int drm_mode_vrefresh(const struct drm_display_mode *mode) >> { >> - unsigned int num, den; >> + unsigned int num = 1, den = 1; >> >> if (mode->htotal == 0 || mode->vtotal == 0) >> return 0; >> >> - num = mode->clock; >> - den = mode->htotal * mode->vtotal; >> - >> if (mode->flags & DRM_MODE_FLAG_INTERLACE) >> num *= 2; >> if (mode->flags & DRM_MODE_FLAG_DBLSCAN) >> @@ -1302,6 +1299,12 @@ int drm_mode_vrefresh(const struct drm_display_mode *mode) >> if (mode->vscan > 1) >> den *= mode->vscan; >> >> + if (check_mul_overflow(mode->clock, num, &num)) >> + return 0; >> + >> + if (check_mul_overflow(mode->htotal * mode->vtotal, den, &den)) > > Can mode->htotal * mode->vtotal result in overflow? u16 * u16 will always fit in an unsigned int (at least where the kernel runs). Reviewed-by: Jani Nikula <jani.nikula@intel.com> > > and we should add: > > if (check_mul_overflow(mode->htotal, mode->vtotal, &prod)) > return 0; > > Regards, > > Ankit > >> + return 0; >> + >> return DIV_ROUND_CLOSEST_ULL(mul_u32_u32(num, 1000), den); >> } >> EXPORT_SYMBOL(drm_mode_vrefresh); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala 2024-11-29 4:26 ` [PATCH 1/2] drm/modes: Avoid divide by zero harder " Ville Syrjala @ 2024-11-29 4:26 ` Ville Syrjala 2024-11-29 13:08 ` Jani Nikula 2024-11-29 5:13 ` ✗ Fi.CI.CHECKPATCH: warning for drm/modes: Fix div-by-zero in drm_mode_vrefresh() Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Ville Syrjala @ 2024-11-29 4:26 UTC (permalink / raw) To: dri-devel; +Cc: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> We no longer store a cache vrefresh value in the mode. Remove the stale information from drm_vrefresh() docs. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/drm_modes.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 71573b85d924..e72f855fc495 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c @@ -1282,8 +1282,7 @@ EXPORT_SYMBOL(drm_mode_set_name); * @mode: mode * * Returns: - * @modes's vrefresh rate in Hz, rounded to the nearest integer. Calculates the - * value first if it is not yet set. + * @modes's vrefresh rate in Hz, rounded to the nearest integer. */ int drm_mode_vrefresh(const struct drm_display_mode *mode) { -- 2.45.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs 2024-11-29 4:26 ` [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs Ville Syrjala @ 2024-11-29 13:08 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2024-11-29 13:08 UTC (permalink / raw) To: Ville Syrjala, dri-devel; +Cc: intel-gfx On Fri, 29 Nov 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > We no longer store a cache vrefresh value in the mode. > Remove the stale information from drm_vrefresh() docs. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/drm_modes.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c > index 71573b85d924..e72f855fc495 100644 > --- a/drivers/gpu/drm/drm_modes.c > +++ b/drivers/gpu/drm/drm_modes.c > @@ -1282,8 +1282,7 @@ EXPORT_SYMBOL(drm_mode_set_name); > * @mode: mode > * > * Returns: > - * @modes's vrefresh rate in Hz, rounded to the nearest integer. Calculates the > - * value first if it is not yet set. > + * @modes's vrefresh rate in Hz, rounded to the nearest integer. > */ > int drm_mode_vrefresh(const struct drm_display_mode *mode) > { -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/modes: Fix div-by-zero in drm_mode_vrefresh() 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala 2024-11-29 4:26 ` [PATCH 1/2] drm/modes: Avoid divide by zero harder " Ville Syrjala 2024-11-29 4:26 ` [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs Ville Syrjala @ 2024-11-29 5:13 ` Patchwork 2024-11-29 5:29 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-29 7:33 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-29 5:13 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: drm/modes: Fix div-by-zero in drm_mode_vrefresh() URL : https://patchwork.freedesktop.org/series/141910/ State : warning == Summary == Error: dim checkpatch failed b5ea1d1f9a67 drm/modes: Avoid divide by zero harder in drm_mode_vrefresh() -:50: WARNING:MISSING_FIXES_TAG: The commit message has 'syzkaller', perhaps it also needs a 'Fixes:' tag? total: 0 errors, 1 warnings, 0 checks, 27 lines checked 754c52d72525 drm/modes: Fix drm_mode_vrefres() docs ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for drm/modes: Fix div-by-zero in drm_mode_vrefresh() 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala ` (2 preceding siblings ...) 2024-11-29 5:13 ` ✗ Fi.CI.CHECKPATCH: warning for drm/modes: Fix div-by-zero in drm_mode_vrefresh() Patchwork @ 2024-11-29 5:29 ` Patchwork 2024-11-29 7:33 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-29 5:29 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: drm/modes: Fix div-by-zero in drm_mode_vrefresh() URL : https://patchwork.freedesktop.org/series/141910/ State : success == Summary == CI Bug Log - changes from CI_DRM_15761 -> Patchwork_141910v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141910v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp6: - {bat-mtlp-9}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp6.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp6.html Known issues ------------ Here are the changes found in Patchwork_141910v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_tiled_blits@basic: - fi-pnv-d510: [PASS][3] -> [SKIP][4] +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-pnv-d510/igt@gem_tiled_blits@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/fi-pnv-d510/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][7] ([i915#12903]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html - fi-cfl-guc: [FAIL][9] ([i915#12903]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html - {bat-mtlp-9}: [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 Build changes ------------- * IGT: IGT_8130 -> IGTPW_12217 * Linux: CI_DRM_15761 -> Patchwork_141910v1 CI-20190529: 20190529 CI_DRM_15761: 709349e154b56980b3957b3f72af3f67cfdd7aee @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12217: 47770ec3ce7e646b821666d2dd925d30edd577c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8130: 52c84deb5f45bcbd3c2b22d1fcff01d4c522cb62 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_141910v1: 709349e154b56980b3957b3f72af3f67cfdd7aee @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for drm/modes: Fix div-by-zero in drm_mode_vrefresh() 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala ` (3 preceding siblings ...) 2024-11-29 5:29 ` ✓ i915.CI.BAT: success " Patchwork @ 2024-11-29 7:33 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-29 7:33 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100276 bytes --] == Series Details == Series: drm/modes: Fix div-by-zero in drm_mode_vrefresh() URL : https://patchwork.freedesktop.org/series/141910/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15761_full -> Patchwork_141910v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_141910v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_141910v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141910v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@pi-common: - shard-glk: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-glk3/igt@gem_exec_schedule@pi-common.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk1/igt@gem_exec_schedule@pi-common.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: NOTRUN -> [INCOMPLETE][3] +5 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_mmap_gtt@flink-race: - shard-snb: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb1/igt@gem_mmap_gtt@flink-race.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb1/igt@gem_mmap_gtt@flink-race.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@load: - shard-dg2: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30]) -> ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [DMESG-WARN][52], [PASS][53]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-4/igt@i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-8/igt@i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-2/igt@i915_module_load@load.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-11/igt@i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-6/igt@i915_module_load@load.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-11/igt@i915_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-4/igt@i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-6/igt@i915_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-5/igt@i915_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-2/igt@i915_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-7/igt@i915_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-1/igt@i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-7/igt@i915_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-5/igt@i915_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-3/igt@i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@i915_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-8/igt@i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@i915_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-6/igt@i915_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-1/igt@i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@i915_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-3/igt@i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-11/igt@i915_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@i915_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@i915_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-7/igt@i915_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@i915_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@i915_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@i915_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@i915_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@i915_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@i915_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@i915_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@i915_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@i915_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@i915_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@i915_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@i915_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@i915_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@i915_module_load@load.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@i915_module_load@load.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@i915_module_load@load.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@i915_module_load@load.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][54] -> [DMESG-FAIL][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb7/igt@i915_pm_rps@reset.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb7/igt@i915_pm_rps@reset.html New tests --------- New tests have been introduced between CI_DRM_15761_full and Patchwork_141910v1_full: ### New IGT tests (21) ### * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.26] s * igt@kms_invalid_mode@overflow-vrefresh: - Statuses : 7 pass(s) - Exec time: [0.04, 0.45] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-a-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.05, 0.41] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.05] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-b-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@overflow-vrefresh@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in Patchwork_141910v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#6230]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][57] ([i915#6230]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#8414]) +15 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#8414]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8414]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#7697]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#9323]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#9323]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#9323]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][65] ([i915#12392] / [i915#7297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#6335]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#8562]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][68] -> [FAIL][69] ([i915#9561]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-3/igt@gem_ctx_freq@sysfs.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8555]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#8555]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][72] ([i915#1099]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5882]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#280]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#280]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#280]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][77] -> [ABORT][78] ([i915#10030] / [i915#7975] / [i915#8213]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-8/igt@gem_eio@hibernate.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-7/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][79] -> [FAIL][80] ([i915#12543] / [i915#5784]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-4/igt@gem_eio@reset-stress.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4812]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@gem_exec_balancer@bonded-semaphore.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4812]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#4525]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu: NOTRUN -> [FAIL][84] ([i915#6117]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#6334]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][86] ([i915#6334]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4812]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3539]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3539]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3539] / [i915#4852]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3539] / [i915#4852]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3281]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3281]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3281]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3281]) +12 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4537] / [i915#4812]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [PASS][97] -> [DMESG-FAIL][98] ([i915#12964]) +1 other test dmesg-fail [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4860]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4860]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4860]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#4613]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-2/igt@gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4613]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#4613]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#4613]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-1/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][106] ([i915#4613]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#284]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#284]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4083]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4077]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4077]) +16 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@gem_mmap_gtt@medium-copy-odd.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4077]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-3/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4083]) +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4083]) +9 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@gem_mmap_wc@write-read.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3282]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3282]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3282]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][118] ([i915#2658]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4270]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#13033]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][121] ([i915#12917] / [i915#12964]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4270]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3282]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-6/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8428]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190] / [i915#8428]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4079]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4885]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4885]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3297] / [i915#4880]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3297] / [i915#4880]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3297]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3297]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2527]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#2856]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#2527] / [i915#2856]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#2856]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#2527]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#2527] / [i915#2856]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][140] -> [ABORT][141] ([i915#9820]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][142] -> [ABORT][143] ([i915#12817] / [i915#13010] / [i915#9820]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][144] ([i915#9820]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6412]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#8399]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#8399]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-8/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][148] ([i915#2681]) +4 other tests warn [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][149] ([i915#12548] / [i915#3591]) +1 other test fail [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][150] ([i915#12739] / [i915#3591]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#11681] / [i915#6621]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#11681]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7984]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#5723]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#5723]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#5723]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][157] ([i915#9311]) +1 other test dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#4817]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4212]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#8709]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#8709]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#9531]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][163] ([i915#1769]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#5286]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#5286]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5286]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#5286]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5190]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4538]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][171] +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#10434] / [i915#6095]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#10307] / [i915#6095]) +185 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#6095]) +34 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +86 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#6095]) +25 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#6095]) +59 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6095]) +14 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#6095]) +181 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#12313]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#12313]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3742]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#11616] / [i915#7213]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][185] +70 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-3/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#7828]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-2/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#7828]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#7828]) +8 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#7828]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#7828]) +13 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#9979]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3299]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3116] / [i915#3299]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3299]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#7116] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#7118]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#7118] / [i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#7118] / [i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8814]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][203] -> [DMESG-WARN][204] ([i915#12964]) +46 other tests dmesg-warn [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x256.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#13049]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#13049]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#13049]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#13049]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: NOTRUN -> [DMESG-WARN][212] ([i915#12917] / [i915#12964]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [PASS][213] -> [SKIP][214] +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][215] -> [FAIL][216] ([i915#2346]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9067]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9067]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#4103] / [i915#4213]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-rkl: NOTRUN -> [DMESG-WARN][221] ([i915#12964]) +21 other tests dmesg-warn [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8588]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8588]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#1257]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#12402]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8812]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3840]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3840]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3840] / [i915#9053]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4854]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#4854]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#4854]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#4854]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#1839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9337]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3637]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3637]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9934]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-interruptible.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3637]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-snb: [PASS][247] -> [FAIL][248] ([i915#11989]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-12/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: [PASS][250] -> [FAIL][251] ([i915#11989]) +2 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-snb: [PASS][252] -> [FAIL][253] ([i915#13027]) +1 other test fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#8381]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8381]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#4839]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#12745]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: NOTRUN -> [DMESG-WARN][258] ([i915#4423]) +2 other tests dmesg-warn [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) +6 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +5 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555] / [i915#8813]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#8813]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#2672]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#2587] / [i915#2672]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg1: [PASS][273] -> [DMESG-WARN][274] ([i915#4423]) +4 other tests dmesg-warn [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][275] -> [FAIL][276] ([i915#6880]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#1825]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#5354]) +29 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][279] ([i915#10056]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#10433] / [i915#3458]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#8708]) +17 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#8708]) +19 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][283] +38 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#3023]) +15 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][285] +72 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#8708]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#1825]) +19 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3458]) +14 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#3458]) +21 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][290] -> [SKIP][291] ([i915#13012] / [i915#13030]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#12388]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#12394]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#10656]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#12339]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#6301]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#6301]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][304] +15 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][305] +49 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#9809]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][307] ([i915#5354] / [i915#9423]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][308] ([i915#8292]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12247]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#12247]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#9423]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#6953]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#12247]) +11 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#3555] / [i915#9423]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#3555]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#12247]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#12247]) +7 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12343]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12343]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#5354]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#3828]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][323] -> [FAIL][324] ([i915#9295]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#3361]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][326] ([i915#8717]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][327] -> [SKIP][328] ([i915#9519]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9519]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][330] -> [SKIP][331] ([i915#9519]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][332] ([i915#11520]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#11520]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#11520]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#9808]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][337] ([i915#11520]) +12 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#12316]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#11520]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#11520]) +7 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9683]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9683]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#4348]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9683]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9683]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#9683]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +25 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9732]) +16 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-2/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9688]) +4 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +16 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +12 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#9732]) +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][353] +398 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk2/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9685]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#5289]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#12755]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#3555]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][358] ([i915#8623]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#8623]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#3555]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-7/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9906]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-5/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#2437] / [i915#4423] / [i915#9412]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#2437]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-10/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#2437] / [i915#9412]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#2437] / [i915#9412]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#2437]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#2437] / [i915#9412]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][369] ([i915#12549] / [i915#6806]) +1 other test fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-tglu: [PASS][370] -> [ABORT][371] ([i915#13010]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-5/igt@perf_pmu@module-unload.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][372] -> [FAIL][373] ([i915#4349]) +3 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-mtlp: [PASS][374] -> [FAIL][375] ([i915#4349]) +4 other tests fail [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vecs0.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vecs0.html - shard-dg2: [PASS][376] -> [FAIL][377] ([i915#4349]) +5 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#3708]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708] / [i915#4077]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3291] / [i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#9917]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][383] +11 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][384] ([i915#4818]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#4818]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][386] ([i915#4818]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-tglu: [ABORT][387] ([i915#12817] / [i915#5507]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][389] ([i915#7297]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_persistence@hostile: - shard-rkl: [FAIL][391] ([i915#11980] / [i915#12580]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-1/igt@gem_ctx_persistence@hostile.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-5/igt@gem_ctx_persistence@hostile.html - shard-tglu: [FAIL][393] ([i915#11980] / [i915#12580]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-9/igt@gem_ctx_persistence@hostile.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][395] -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-10/igt@gem_eio@kms.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-9/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][397] ([i915#12543] / [i915#5784]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg1-12/igt@gem_eio@reset-stress.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][399] ([i915#7975] / [i915#8213]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu: [SKIP][401] ([i915#4270]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][403] ([i915#9820]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][405] ([i915#12942]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_selftest@live: - shard-rkl: [DMESG-FAIL][407] -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-7/igt@i915_selftest@live.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-tglu: [ABORT][409] ([i915#13010]) -> [PASS][410] +2 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-10/igt@i915_selftest@live@sanitycheck.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-6/igt@i915_selftest@live@sanitycheck.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][411] -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][413] ([i915#5956]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][415] ([i915#11808]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-tglu-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [DMESG-FAIL][417] ([i915#11627]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][419] -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [DMESG-WARN][421] ([i915#12917] / [i915#12964]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [SKIP][423] -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_draw_crc@draw-method-pwrite: - shard-rkl: [DMESG-WARN][425] ([i915#12964]) -> [PASS][426] +65 other tests pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-1/igt@kms_draw_crc@draw-method-pwrite.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-7/igt@kms_draw_crc@draw-method-pwrite.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-snb: [FAIL][427] ([i915#11989]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [FAIL][429] ([i915#11989]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][431] ([i915#6880]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][433] ([i915#3555] / [i915#8228]) -> [PASS][434] +1 other test pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][435] ([i915#9519]) -> [PASS][436] +2 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][437] ([i915#9519]) -> [PASS][438] +1 other test pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][439] ([i915#11943]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15761/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/shard-mtlp-6/igt@perf_pm == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141910v1/index.html [-- Attachment #2: Type: text/html, Size: 111213 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-29 13:08 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-29 4:26 [PATCH 0/2] drm/modes: Fix div-by-zero in drm_mode_vrefresh() Ville Syrjala 2024-11-29 4:26 ` [PATCH 1/2] drm/modes: Avoid divide by zero harder " Ville Syrjala 2024-11-29 8:00 ` Nautiyal, Ankit K 2024-11-29 13:07 ` Jani Nikula 2024-11-29 4:26 ` [PATCH 2/2] drm/modes: Fix drm_mode_vrefres() docs Ville Syrjala 2024-11-29 13:08 ` Jani Nikula 2024-11-29 5:13 ` ✗ Fi.CI.CHECKPATCH: warning for drm/modes: Fix div-by-zero in drm_mode_vrefresh() Patchwork 2024-11-29 5:29 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-29 7:33 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox