* [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 [not found] <=20220606060324.1618-1-anshuman.gupta@intel.com> @ 2022-06-07 10:45 ` Anshuman Gupta 2022-06-07 15:35 ` Matt Roper 2022-06-07 13:34 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dg2: Add Wa_14015795083 (rev2) Patchwork 2022-06-07 17:46 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Anshuman Gupta @ 2022-06-07 10:45 UTC (permalink / raw) To: intel-gfx i915 must disable Render DOP clock gating globally. v2: - Addressed cosmetic review comments. Bspec: 52621 Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Badal Nilawar <badal.nilawar@intel.com> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- drivers/gpu/drm/i915/gt/intel_gt_regs.h | 1 + drivers/gpu/drm/i915/gt/intel_workarounds.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/drivers/gpu/drm/i915/gt/intel_gt_regs.h b/drivers/gpu/drm/i915/gt/intel_gt_regs.h index 6aa1ceaa8d27..c8129a351731 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt_regs.h +++ b/drivers/gpu/drm/i915/gt/intel_gt_regs.h @@ -631,6 +631,7 @@ #define GEN7_MISCCPCTL _MMIO(0x9424) #define GEN7_DOP_CLOCK_GATE_ENABLE (1 << 0) +#define GEN12_DOP_CLOCK_GATE_RENDER_ENABLE REG_BIT(1) #define GEN8_DOP_CLOCK_GATE_CFCLK_ENABLE (1 << 2) #define GEN8_DOP_CLOCK_GATE_GUC_ENABLE (1 << 4) #define GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE (1 << 6) diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c index 6e875d4f5f65..1e7ca3863f20 100644 --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c @@ -1486,6 +1486,9 @@ dg2_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) * performance guide section. */ wa_write_or(wal, GEN12_SQCM, EN_32B_ACCESS); + + /* Wa_14015795083 */ + wa_write_clr(wal, GEN7_MISCCPCTL, GEN12_DOP_CLOCK_GATE_RENDER_ENABLE); } static void -- 2.26.2 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 2022-06-07 10:45 ` [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 Anshuman Gupta @ 2022-06-07 15:35 ` Matt Roper 0 siblings, 0 replies; 5+ messages in thread From: Matt Roper @ 2022-06-07 15:35 UTC (permalink / raw) To: Anshuman Gupta; +Cc: intel-gfx On Tue, Jun 07, 2022 at 04:15:42PM +0530, Anshuman Gupta wrote: > i915 must disable Render DOP clock gating globally. > > v2: > - Addressed cosmetic review comments. > > Bspec: 52621 > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Badal Nilawar <badal.nilawar@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> > --- > drivers/gpu/drm/i915/gt/intel_gt_regs.h | 1 + > drivers/gpu/drm/i915/gt/intel_workarounds.c | 3 +++ > 2 files changed, 4 insertions(+) > > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_regs.h b/drivers/gpu/drm/i915/gt/intel_gt_regs.h > index 6aa1ceaa8d27..c8129a351731 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt_regs.h > +++ b/drivers/gpu/drm/i915/gt/intel_gt_regs.h > @@ -631,6 +631,7 @@ > > #define GEN7_MISCCPCTL _MMIO(0x9424) > #define GEN7_DOP_CLOCK_GATE_ENABLE (1 << 0) > +#define GEN12_DOP_CLOCK_GATE_RENDER_ENABLE REG_BIT(1) > #define GEN8_DOP_CLOCK_GATE_CFCLK_ENABLE (1 << 2) > #define GEN8_DOP_CLOCK_GATE_GUC_ENABLE (1 << 4) > #define GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE (1 << 6) > diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c > index 6e875d4f5f65..1e7ca3863f20 100644 > --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c > +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c > @@ -1486,6 +1486,9 @@ dg2_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > * performance guide section. > */ > wa_write_or(wal, GEN12_SQCM, EN_32B_ACCESS); > + > + /* Wa_14015795083 */ > + wa_write_clr(wal, GEN7_MISCCPCTL, GEN12_DOP_CLOCK_GATE_RENDER_ENABLE); > } > > static void > -- > 2.26.2 > -- Matt Roper Graphics Software Engineer VTT-OSGC Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dg2: Add Wa_14015795083 (rev2) [not found] <=20220606060324.1618-1-anshuman.gupta@intel.com> 2022-06-07 10:45 ` [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 Anshuman Gupta @ 2022-06-07 13:34 ` Patchwork 2022-06-07 17:46 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-06-07 13:34 UTC (permalink / raw) To: Gupta, Anshuman; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 17918 bytes --] == Series Details == Series: drm/i915/dg2: Add Wa_14015795083 (rev2) URL : https://patchwork.freedesktop.org/series/104760/ State : success == Summary == CI Bug Log - changes from CI_DRM_11730 -> Patchwork_104760v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/index.html Participating hosts (42 -> 42) ------------------------------ Additional (6): fi-rkl-11600 bat-dg1-6 bat-dg1-5 bat-dg2-8 bat-adlm-1 bat-rpls-2 Missing (6): fi-kbl-soraka fi-bdw-5557u fi-icl-u2 bat-adln-1 bat-jsl-2 fi-bdw-samus Known issues ------------ Here are the changes found in Patchwork_104760v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@nullptr: - bat-dg1-5: NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@fbdev@nullptr.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@gem_mmap@basic.html - bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][7] ([i915#4077]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][8] ([i915#4077]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#3282]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@gem_tiled_pread_basic.html - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#4079]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg1-6: NOTRUN -> [SKIP][11] ([i915#1155]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#3012]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html - bat-dg1-5: NOTRUN -> [SKIP][13] ([i915#1155]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@gt_engines: - bat-dg1-5: NOTRUN -> [INCOMPLETE][14] ([i915#4418]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][15] -> [INCOMPLETE][16] ([i915#4785]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - bat-dg1-6: NOTRUN -> [DMESG-FAIL][17] ([i915#4494] / [i915#4957]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-pnv-d510: [PASS][18] -> [DMESG-FAIL][19] ([i915#4528]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/fi-pnv-d510/igt@i915_selftest@live@requests.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-pnv-d510/igt@i915_selftest@live@requests.html - fi-blb-e6850: [PASS][20] -> [DMESG-FAIL][21] ([i915#4528]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/fi-blb-e6850/igt@i915_selftest@live@requests.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-dg1-6: NOTRUN -> [INCOMPLETE][22] ([i915#6011]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][23] ([i915#5982]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#4212]) +7 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][25] ([i915#4215]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-6: NOTRUN -> [SKIP][26] ([i915#4215]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg1-6: NOTRUN -> [SKIP][27] ([i915#4212]) +7 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_busy@basic: - bat-dg1-5: NOTRUN -> [SKIP][28] ([i915#1845] / [i915#4303]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_busy@basic.html * igt@kms_chamelium@dp-crc-fast: - bat-dg1-5: NOTRUN -> [SKIP][29] ([fdo#111827]) +7 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-crc-fast: - bat-dg1-6: NOTRUN -> [SKIP][30] ([fdo#111827]) +7 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_chamelium@hdmi-edid-read: - fi-rkl-11600: NOTRUN -> [SKIP][31] ([fdo#111827]) +7 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg1-6: NOTRUN -> [SKIP][32] ([i915#4103] / [i915#4213]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg1-5: NOTRUN -> [SKIP][33] ([i915#4103] / [i915#4213]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - fi-rkl-11600: NOTRUN -> [SKIP][34] ([i915#4070] / [i915#4103]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-5: NOTRUN -> [SKIP][35] ([fdo#109285]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html - fi-rkl-11600: NOTRUN -> [SKIP][36] ([fdo#109285] / [i915#4098]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-6: NOTRUN -> [SKIP][37] ([fdo#109285]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-rkl-11600: NOTRUN -> [SKIP][38] ([i915#4070] / [i915#533]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a: - bat-dg1-5: NOTRUN -> [SKIP][39] ([i915#4078]) +21 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a.html * igt@kms_psr@primary_page_flip: - fi-rkl-11600: NOTRUN -> [SKIP][40] ([i915#1072]) +3 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_psr@primary_page_flip.html - bat-dg1-5: NOTRUN -> [SKIP][41] ([i915#1072] / [i915#4078]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-6: NOTRUN -> [SKIP][42] ([i915#1072] / [i915#4078]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][43] ([i915#3555] / [i915#4098]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-5: NOTRUN -> [SKIP][44] ([i915#3555]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-6: NOTRUN -> [SKIP][45] ([i915#3555]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg1-5: NOTRUN -> [SKIP][46] ([i915#1845] / [i915#3708]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][47] ([i915#3708]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-6: NOTRUN -> [SKIP][48] ([i915#3708] / [i915#4077]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@prime_vgem@basic-gtt.html - bat-dg1-5: NOTRUN -> [SKIP][49] ([i915#3708] / [i915#4077]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][50] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-dg1-6: NOTRUN -> [SKIP][51] ([i915#3708] / [i915#4873]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@prime_vgem@basic-userptr.html - bat-dg1-5: NOTRUN -> [SKIP][52] ([i915#3708] / [i915#4873]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@prime_vgem@basic-userptr.html - fi-rkl-11600: NOTRUN -> [SKIP][53] ([fdo#109295] / [i915#3301] / [i915#3708]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-rkl-11600/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@basic-write: - bat-dg1-6: NOTRUN -> [SKIP][54] ([i915#3708]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@prime_vgem@basic-write.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][55] ([fdo#109271] / [i915#4312] / [i915#5594]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-hsw-4770/igt@runner@aborted.html - bat-dg1-5: NOTRUN -> [FAIL][56] ([i915#4312] / [i915#5257]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-5/igt@runner@aborted.html - bat-dg1-6: NOTRUN -> [FAIL][57] ([i915#4312] / [i915#5257]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/bat-dg1-6/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {fi-ehl-2}: [DMESG-WARN][58] ([i915#5122]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_hangman@error-state-basic: - fi-skl-guc: [DMESG-WARN][60] -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/fi-skl-guc/igt@i915_hangman@error-state-basic.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/fi-skl-guc/igt@i915_hangman@error-state-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4303]: https://gitlab.freedesktop.org/drm/intel/issues/4303 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763 [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982 [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011 [i915#6132]: https://gitlab.freedesktop.org/drm/intel/issues/6132 Build changes ------------- * Linux: CI_DRM_11730 -> Patchwork_104760v2 CI-20190529: 20190529 CI_DRM_11730: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6510: dacfa80158d586cd0fe322f25f5275f224a946dd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_104760v2: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 3e95003aa4f9 drm/i915/dg2: Add Wa_14015795083 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/index.html [-- Attachment #2: Type: text/html, Size: 21661 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dg2: Add Wa_14015795083 (rev2) [not found] <=20220606060324.1618-1-anshuman.gupta@intel.com> 2022-06-07 10:45 ` [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 Anshuman Gupta 2022-06-07 13:34 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dg2: Add Wa_14015795083 (rev2) Patchwork @ 2022-06-07 17:46 ` Patchwork 2022-06-07 20:58 ` Matt Roper 2 siblings, 1 reply; 5+ messages in thread From: Patchwork @ 2022-06-07 17:46 UTC (permalink / raw) To: Gupta, Anshuman; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 42888 bytes --] == Series Details == Series: drm/i915/dg2: Add Wa_14015795083 (rev2) URL : https://patchwork.freedesktop.org/series/104760/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11730_full -> Patchwork_104760v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_104760v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_104760v2_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 12) ------------------------------ Additional (2): shard-dg1 shard-tglu Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_104760v2_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-skl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1: - shard-skl: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_sequence@queue-busy@hdmi-a-1-pipe-a: - {shard-dg1}: NOTRUN -> [FAIL][5] +8 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-dg1-12/igt@kms_sequence@queue-busy@hdmi-a-1-pipe-a.html Known issues ------------ Here are the changes found in Patchwork_104760v2_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-skl: ([PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [FAIL][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27]) ([i915#5032]) -> ([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]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl1/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl1/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl3/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl3/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][49] -> [SKIP][50] ([i915#4525]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][51] -> [FAIL][52] ([i915#2842]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: [PASS][53] -> [FAIL][54] ([i915#2842]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: [PASS][55] -> [FAIL][56] ([i915#2842]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][57] -> [FAIL][58] ([i915#2842]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][59] ([i915#2842]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#112283]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_exec_params@secure-non-root.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-skl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-iclb: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][64] ([i915#768]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_userptr_blits@vma-merge: - shard-skl: NOTRUN -> [FAIL][65] ([i915#3318]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][66] -> [DMESG-WARN][67] ([i915#5566] / [i915#716]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk7/igt@gen9_exec_parse@allowed-all.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [PASS][68] -> [DMESG-WARN][69] ([i915#180]) +9 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@i915_suspend@debugfs-reader.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl1/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-skl: [PASS][70] -> [INCOMPLETE][71] ([i915#4817] / [i915#4939]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@i915_suspend@fence-restore-tiled2untiled.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][72] ([i915#5286]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-skl: NOTRUN -> [FAIL][73] ([i915#3743]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-skl: NOTRUN -> [FAIL][74] ([i915#3763]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#110723]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#3886]) +4 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109278]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium@dp-hpd-enable-disable-mode: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_chamelium@dp-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-without-ddc: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_chamelium@vga-hpd-without-ddc.html * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: - shard-skl: NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +11 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html * igt@kms_cursor_crc@pipe-d-cursor-128x128-random: - shard-skl: NOTRUN -> [SKIP][81] ([fdo#109271]) +174 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@kms_cursor_crc@pipe-d-cursor-128x128-random.html * igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement: - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271]) +13 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#2346]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109274]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][87] -> [FAIL][88] ([i915#79]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-skl: [PASS][89] -> [FAIL][90] ([i915#2122]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-skl: [PASS][91] -> [INCOMPLETE][92] ([i915#4939]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][93] ([i915#180]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-skl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#3701]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-kbl: NOTRUN -> [SKIP][95] ([fdo#109271]) +13 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-apl: [PASS][97] -> [DMESG-WARN][98] ([i915#180]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-apl8/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl2/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][99] ([fdo#108145] / [i915#265]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: - shard-skl: [PASS][100] -> [FAIL][101] ([fdo#108145] / [i915#265]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html * igt@kms_plane_scaling@invalid-num-scalers@pipe-a-edp-1-invalid-num-scalers: - shard-skl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#5776]) +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-edp-1-invalid-num-scalers.html * igt@kms_psr2_su@page_flip-nv12: - shard-skl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109441]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-iclb: [PASS][105] -> [SKIP][106] ([fdo#109441]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#533]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_vblank@pipe-d-wait-idle.html * igt@perf@polling: - shard-skl: [PASS][108] -> [FAIL][109] ([i915#1542]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@perf@polling.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/igt@perf@polling.html * igt@sw_sync@sync_merge: - shard-skl: NOTRUN -> [FAIL][110] ([i915#6140]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@sw_sync@sync_merge.html * igt@sysfs_clients@fair-0: - shard-iclb: NOTRUN -> [SKIP][111] ([i915#2994]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@fair-3: - shard-skl: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2994]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@sysfs_clients@fair-3.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-kbl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_capture@pi@rcs0: - shard-iclb: [INCOMPLETE][115] ([i915#3371]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb6/igt@gem_exec_capture@pi@rcs0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [FAIL][117] ([i915#2842]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@gem_exec_fair@basic-none@vcs1.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-iclb: [FAIL][119] ([i915#2842]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb8/igt@gem_exec_fair@basic-pace@bcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][121] ([i915#454]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][123] ([i915#4281]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@i915_pm_dc@dc9-dpms.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [DMESG-WARN][125] ([i915#5591]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-tglb5/igt@i915_selftest@live@hangcheck.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-tglb2/igt@i915_selftest@live@hangcheck.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-skl: [INCOMPLETE][127] ([i915#5713]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_flip@flip-vs-suspend@b-dp1: - shard-apl: [DMESG-WARN][129] ([i915#180]) -> [PASS][130] +2 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-apl8/igt@kms_flip@flip-vs-suspend@b-dp1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl8/igt@kms_flip@flip-vs-suspend@b-dp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [FAIL][131] ([i915#2122]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-iclb: [SKIP][133] ([i915#3701]) -> [PASS][134] +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][135] ([fdo#109441]) -> [PASS][136] +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][137] ([i915#5519]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][139] ([i915#6117]) -> [SKIP][140] ([i915#4525]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-skl: [SKIP][141] ([fdo#109271]) -> [SKIP][142] ([fdo#109271] / [i915#1888]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-skl: [SKIP][143] ([fdo#109271] / [i915#3886]) -> [SKIP][144] ([fdo#109271] / [i915#1888] / [i915#3886]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-skl: [SKIP][145] ([fdo#109271] / [i915#1888]) -> [SKIP][146] ([fdo#109271]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_flip@flip-vs-suspend@b-dp1: - shard-kbl: [INCOMPLETE][147] ([i915#3614]) -> [DMESG-WARN][148] ([i915#180]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl3/igt@kms_flip@flip-vs-suspend@b-dp1.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@kms_flip@flip-vs-suspend@b-dp1.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-kbl: [FAIL][149] ([i915#1188]) -> [DMESG-WARN][150] ([i915#180]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl4/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-iclb: [SKIP][151] ([i915#2920]) -> [SKIP][152] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][153] ([i915#658]) -> [SKIP][154] ([i915#2920]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-iclb: [SKIP][155] ([i915#2920]) -> [SKIP][156] ([fdo#111068] / [i915#658]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@runner@aborted: - shard-skl: ([FAIL][157], [FAIL][158]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#2029] / [i915#3002] / [i915#4312] / [i915#5257]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3963]: https://gitlab.freedesktop.org/drm/intel/issues/3963 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4241]: https://gitlab.freedesktop.org/drm/intel/issues/4241 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5032]: https://gitlab.freedesktop.org/drm/intel/issues/5032 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5713]: https://gitlab.freedesktop.org/drm/intel/issues/5713 [i915#5721]: https://gitlab.freedesktop.org/drm/intel/issues/5721 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5776]: https://gitlab.freedesktop.org/drm/intel/issues/5776 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#6076]: https://gitlab.freedesktop.org/drm/intel/issues/6076 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_11730 -> Patchwork_104760v2 CI-20190529: 20190529 CI_DRM_11730: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6510: dacfa80158d586cd0fe322f25f5275f224a946dd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_104760v2: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/index.html [-- Attachment #2: Type: text/html, Size: 41049 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/dg2: Add Wa_14015795083 (rev2) 2022-06-07 17:46 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-06-07 20:58 ` Matt Roper 0 siblings, 0 replies; 5+ messages in thread From: Matt Roper @ 2022-06-07 20:58 UTC (permalink / raw) To: intel-gfx; +Cc: Vudum, Lakshminarayana On Tue, Jun 07, 2022 at 05:46:25PM +0000, Patchwork wrote: > == Series Details == > > Series: drm/i915/dg2: Add Wa_14015795083 (rev2) > URL : https://patchwork.freedesktop.org/series/104760/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_11730_full -> Patchwork_104760v2_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_104760v2_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_104760v2_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Participating hosts (10 -> 12) > ------------------------------ > > Additional (2): shard-dg1 shard-tglu > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_104760v2_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_dc@dc3co-vpb-simulation: > - shard-skl: NOTRUN -> [INCOMPLETE][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@i915_pm_dc@dc3co-vpb-simulation.html Unexpected machine/network death? Dmesg just cuts off with no indication of a problem. The DG2 workaround in this patch would not impact SKL behavior, so the failure is unrelated. > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-kbl: [PASS][2] -> [INCOMPLETE][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html System never came back from suspend. Not caused by this patch. > > * igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1: > - shard-skl: NOTRUN -> [FAIL][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html > https://gitlab.freedesktop.org/drm/intel/-/issues/407 None of the failures here are related to this patch. Applied to drm-intel-gt-next. Thanks for the patch. Matt > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_sequence@queue-busy@hdmi-a-1-pipe-a: > - {shard-dg1}: NOTRUN -> [FAIL][5] +8 similar issues > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-dg1-12/igt@kms_sequence@queue-busy@hdmi-a-1-pipe-a.html > > > Known issues > ------------ > > Here are the changes found in Patchwork_104760v2_full that come from known issues: > > ### CI changes ### > > #### Possible fixes #### > > * boot: > - shard-skl: ([PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [FAIL][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27]) ([i915#5032]) -> ([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]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/boot.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/boot.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl1/boot.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/boot.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl1/boot.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/boot.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/boot.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl3/boot.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl3/boot.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/boot.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/boot.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/boot.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/boot.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/boot.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/boot.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/boot.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/boot.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl9/boot.html > > > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_exec_balancer@parallel-bb-first: > - shard-iclb: [PASS][49] -> [SKIP][50] ([i915#4525]) +1 similar issue > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-iclb: [PASS][51] -> [FAIL][52] ([i915#2842]) > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_fair@basic-none-vip@rcs0: > - shard-tglb: [PASS][53] -> [FAIL][54] ([i915#2842]) +1 similar issue > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html > - shard-glk: [PASS][55] -> [FAIL][56] ([i915#2842]) > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html > > * igt@gem_exec_fair@basic-none@vcs0: > - shard-kbl: [PASS][57] -> [FAIL][58] ([i915#2842]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html > > * igt@gem_exec_fair@basic-none@vcs1: > - shard-iclb: NOTRUN -> [FAIL][59] ([i915#2842]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html > > * igt@gem_exec_params@secure-non-root: > - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#112283]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_exec_params@secure-non-root.html > > * igt@gem_lmem_swapping@heavy-verify-random-ccs: > - shard-skl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html > > * igt@gem_pwrite@basic-exhaustion: > - shard-skl: NOTRUN -> [WARN][62] ([i915#2658]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@gem_pwrite@basic-exhaustion.html > > * igt@gem_pxp@verify-pxp-stale-buf-execution: > - shard-iclb: NOTRUN -> [SKIP][63] ([i915#4270]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_pxp@verify-pxp-stale-buf-execution.html > > * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: > - shard-iclb: NOTRUN -> [SKIP][64] ([i915#768]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html > > * igt@gem_userptr_blits@vma-merge: > - shard-skl: NOTRUN -> [FAIL][65] ([i915#3318]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@gem_userptr_blits@vma-merge.html > > * igt@gen9_exec_parse@allowed-all: > - shard-glk: [PASS][66] -> [DMESG-WARN][67] ([i915#5566] / [i915#716]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk7/igt@gen9_exec_parse@allowed-all.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk6/igt@gen9_exec_parse@allowed-all.html > > * igt@i915_suspend@debugfs-reader: > - shard-kbl: [PASS][68] -> [DMESG-WARN][69] ([i915#180]) +9 similar issues > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@i915_suspend@debugfs-reader.html > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl1/igt@i915_suspend@debugfs-reader.html > > * igt@i915_suspend@fence-restore-tiled2untiled: > - shard-skl: [PASS][70] -> [INCOMPLETE][71] ([i915#4817] / [i915#4939]) > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@i915_suspend@fence-restore-tiled2untiled.html > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: > - shard-iclb: NOTRUN -> [SKIP][72] ([i915#5286]) > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > - shard-skl: NOTRUN -> [FAIL][73] ([i915#3743]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-skl: NOTRUN -> [FAIL][74] ([i915#3763]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#110723]) > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: > - shard-skl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#3886]) +4 similar issues > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: > - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109278]) +1 similar issue > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_chamelium@dp-hpd-enable-disable-mode: > - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_chamelium@dp-hpd-enable-disable-mode.html > > * igt@kms_chamelium@vga-hpd-without-ddc: > - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +1 similar issue > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_chamelium@vga-hpd-without-ddc.html > > * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: > - shard-skl: NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +11 similar issues > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html > > * igt@kms_cursor_crc@pipe-d-cursor-128x128-random: > - shard-skl: NOTRUN -> [SKIP][81] ([fdo#109271]) +174 similar issues > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@kms_cursor_crc@pipe-d-cursor-128x128-random.html > > * igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement: > - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271]) +13 similar issues > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: [PASS][83] -> [FAIL][84] ([i915#2346]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@pipe-d-torture-bo: > - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html > > * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: > - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109274]) > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html > > * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: > - shard-glk: [PASS][87] -> [FAIL][88] ([i915#79]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html > > * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: > - shard-skl: [PASS][89] -> [FAIL][90] ([i915#2122]) +1 similar issue > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html > > * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: > - shard-skl: [PASS][91] -> [INCOMPLETE][92] ([i915#4939]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html > > * igt@kms_flip@flip-vs-suspend@c-dp1: > - shard-kbl: NOTRUN -> [DMESG-WARN][93] ([i915#180]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@kms_flip@flip-vs-suspend@c-dp1.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: > - shard-skl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#3701]) > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: > - shard-kbl: NOTRUN -> [SKIP][95] ([fdo#109271]) +13 similar issues > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: > - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +3 similar issues > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html > > * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: > - shard-apl: [PASS][97] -> [DMESG-WARN][98] ([i915#180]) +2 similar issues > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-apl8/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl2/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html > > * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: > - shard-kbl: NOTRUN -> [FAIL][99] ([fdo#108145] / [i915#265]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html > > * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: > - shard-skl: [PASS][100] -> [FAIL][101] ([fdo#108145] / [i915#265]) > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html > > * igt@kms_plane_scaling@invalid-num-scalers@pipe-a-edp-1-invalid-num-scalers: > - shard-skl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#5776]) +2 similar issues > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-edp-1-invalid-num-scalers.html > > * igt@kms_psr2_su@page_flip-nv12: > - shard-skl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +1 similar issue > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@kms_psr2_su@page_flip-nv12.html > > * igt@kms_psr@psr2_sprite_plane_move: > - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109441]) > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html > > * igt@kms_psr@psr2_sprite_plane_onoff: > - shard-iclb: [PASS][105] -> [SKIP][106] ([fdo#109441]) +1 similar issue > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr@psr2_sprite_plane_onoff.html > > * igt@kms_vblank@pipe-d-wait-idle: > - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#533]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@kms_vblank@pipe-d-wait-idle.html > > * igt@perf@polling: > - shard-skl: [PASS][108] -> [FAIL][109] ([i915#1542]) > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@perf@polling.html > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl1/igt@perf@polling.html > > * igt@sw_sync@sync_merge: > - shard-skl: NOTRUN -> [FAIL][110] ([i915#6140]) > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@sw_sync@sync_merge.html > > * igt@sysfs_clients@fair-0: > - shard-iclb: NOTRUN -> [SKIP][111] ([i915#2994]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@sysfs_clients@fair-0.html > > * igt@sysfs_clients@fair-3: > - shard-skl: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2994]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl4/igt@sysfs_clients@fair-3.html > > > #### Possible fixes #### > > * igt@gem_ctx_isolation@preservation-s3@bcs0: > - shard-kbl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] +1 similar issue > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html > > * igt@gem_exec_capture@pi@rcs0: > - shard-iclb: [INCOMPLETE][115] ([i915#3371]) -> [PASS][116] > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb6/igt@gem_exec_capture@pi@rcs0.html > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@gem_exec_capture@pi@rcs0.html > > * igt@gem_exec_fair@basic-none@vcs1: > - shard-kbl: [FAIL][117] ([i915#2842]) -> [PASS][118] +1 similar issue > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl4/igt@gem_exec_fair@basic-none@vcs1.html > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl3/igt@gem_exec_fair@basic-none@vcs1.html > > * igt@gem_exec_fair@basic-pace@bcs0: > - shard-iclb: [FAIL][119] ([i915#2842]) -> [PASS][120] > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb8/igt@gem_exec_fair@basic-pace@bcs0.html > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-iclb: [FAIL][121] ([i915#454]) -> [PASS][122] > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-iclb: [SKIP][123] ([i915#4281]) -> [PASS][124] > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb5/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_selftest@live@hangcheck: > - shard-tglb: [DMESG-WARN][125] ([i915#5591]) -> [PASS][126] > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-tglb5/igt@i915_selftest@live@hangcheck.html > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-tglb2/igt@i915_selftest@live@hangcheck.html > > * igt@kms_cursor_crc@pipe-b-cursor-suspend: > - shard-skl: [INCOMPLETE][127] ([i915#5713]) -> [PASS][128] > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html > > * igt@kms_flip@flip-vs-suspend@b-dp1: > - shard-apl: [DMESG-WARN][129] ([i915#180]) -> [PASS][130] +2 similar issues > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-apl8/igt@kms_flip@flip-vs-suspend@b-dp1.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-apl8/igt@kms_flip@flip-vs-suspend@b-dp1.html > > * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: > - shard-skl: [FAIL][131] ([i915#2122]) -> [PASS][132] > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: > - shard-iclb: [SKIP][133] ([i915#3701]) -> [PASS][134] +1 similar issue > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html > > * igt@kms_psr@psr2_primary_mmap_cpu: > - shard-iclb: [SKIP][135] ([fdo#109441]) -> [PASS][136] +1 similar issue > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html > > * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > - shard-iclb: [SKIP][137] ([i915#5519]) -> [PASS][138] > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html > > > #### Warnings #### > > * igt@gem_exec_balancer@parallel-ordering: > - shard-iclb: [FAIL][139] ([i915#6117]) -> [SKIP][140] ([i915#4525]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html > > * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: > - shard-skl: [SKIP][141] ([fdo#109271]) -> [SKIP][142] ([fdo#109271] / [i915#1888]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl7/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl10/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html > > * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: > - shard-skl: [SKIP][143] ([fdo#109271] / [i915#3886]) -> [SKIP][144] ([fdo#109271] / [i915#1888] / [i915#3886]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: > - shard-skl: [SKIP][145] ([fdo#109271] / [i915#1888]) -> [SKIP][146] ([fdo#109271]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl10/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html > > * igt@kms_flip@flip-vs-suspend@b-dp1: > - shard-kbl: [INCOMPLETE][147] ([i915#3614]) -> [DMESG-WARN][148] ([i915#180]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl3/igt@kms_flip@flip-vs-suspend@b-dp1.html > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl7/igt@kms_flip@flip-vs-suspend@b-dp1.html > > * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: > - shard-kbl: [FAIL][149] ([i915#1188]) -> [DMESG-WARN][150] ([i915#180]) > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-kbl4/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: > - shard-iclb: [SKIP][151] ([i915#2920]) -> [SKIP][152] ([i915#658]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html > > * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: > - shard-iclb: [SKIP][153] ([i915#658]) -> [SKIP][154] ([i915#2920]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html > > * igt@kms_psr2_sf@cursor-plane-update-sf: > - shard-iclb: [SKIP][155] ([i915#2920]) -> [SKIP][156] ([fdo#111068] / [i915#658]) > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-iclb4/igt@kms_psr2_sf@cursor-plane-update-sf.html > > * igt@runner@aborted: > - shard-skl: ([FAIL][157], [FAIL][158]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#2029] / [i915#3002] / [i915#4312] / [i915#5257]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/igt@runner@aborted.html > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11730/shard-skl4/igt@runner@aborted.html > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@runner@aborted.html > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl3/igt@runner@aborted.html > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@runner@aborted.html > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/shard-skl7/igt@runner@aborted.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 > [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 > [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 > [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 > [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 > [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 > [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 > [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 > [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 > [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 > [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 > [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 > [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 > [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 > [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 > [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 > [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 > [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 > [i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371 > [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464 > [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 > [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 > [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 > [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 > [i915#3963]: https://gitlab.freedesktop.org/drm/intel/issues/3963 > [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 > [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 > [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 > [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 > [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 > [i915#4241]: https://gitlab.freedesktop.org/drm/intel/issues/4241 > [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 > [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 > [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 > [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 > [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 > [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 > [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 > [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 > [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 > [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 > [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 > [i915#5032]: https://gitlab.freedesktop.org/drm/intel/issues/5032 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 > [i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 > [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 > [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 > [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 > [i915#5713]: https://gitlab.freedesktop.org/drm/intel/issues/5713 > [i915#5721]: https://gitlab.freedesktop.org/drm/intel/issues/5721 > [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 > [i915#5776]: https://gitlab.freedesktop.org/drm/intel/issues/5776 > [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 > [i915#6076]: https://gitlab.freedesktop.org/drm/intel/issues/6076 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 > [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 > [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 > [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > > > Build changes > ------------- > > * Linux: CI_DRM_11730 -> Patchwork_104760v2 > > CI-20190529: 20190529 > CI_DRM_11730: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_6510: dacfa80158d586cd0fe322f25f5275f224a946dd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_104760v2: 5e7f37992081d4600d6329a745ab7edb2ee42bcd @ git://anongit.freedesktop.org/gfx-ci/linux > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_104760v2/index.html -- Matt Roper Graphics Software Engineer VTT-OSGC Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-06-07 21:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <=20220606060324.1618-1-anshuman.gupta@intel.com>
2022-06-07 10:45 ` [Intel-gfx] [PATCH v2] drm/i915/dg2: Add Wa_14015795083 Anshuman Gupta
2022-06-07 15:35 ` Matt Roper
2022-06-07 13:34 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/dg2: Add Wa_14015795083 (rev2) Patchwork
2022-06-07 17:46 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-06-07 20:58 ` Matt Roper
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox