* [Intel-gfx] [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests
@ 2022-07-08 9:41 ` Dan Carpenter
0 siblings, 0 replies; 6+ messages in thread
From: Dan Carpenter @ 2022-07-08 9:41 UTC (permalink / raw)
To: Jani Nikula, Chris Wilson
Cc: Michał Winiarski, David Airlie, intel-gfx, kernel-janitors,
Matthew Auld, Rodrigo Vivi
The shmem_pin_map() function doesn't return error pointers, it returns
NULL.
Fixes: be1cb55a07bf ("drm/i915/gt: Keep a no-frills swappable copy of the default context state")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
v2: Correct the Fixes tag. Add Matthew's reviewed-by tag.
drivers/gpu/drm/i915/gt/selftest_lrc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c
index 8b2c11dbe354..1109088fe8f6 100644
--- a/drivers/gpu/drm/i915/gt/selftest_lrc.c
+++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c
@@ -176,8 +176,8 @@ static int live_lrc_layout(void *arg)
continue;
hw = shmem_pin_map(engine->default_state);
- if (IS_ERR(hw)) {
- err = PTR_ERR(hw);
+ if (!hw) {
+ err = -ENOMEM;
break;
}
hw += LRC_STATE_OFFSET / sizeof(*hw);
@@ -365,8 +365,8 @@ static int live_lrc_fixed(void *arg)
continue;
hw = shmem_pin_map(engine->default_state);
- if (IS_ERR(hw)) {
- err = PTR_ERR(hw);
+ if (!hw) {
+ err = -ENOMEM;
break;
}
hw += LRC_STATE_OFFSET / sizeof(*hw);
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests @ 2022-07-08 9:41 ` Dan Carpenter 0 siblings, 0 replies; 6+ messages in thread From: Dan Carpenter @ 2022-07-08 9:41 UTC (permalink / raw) To: Jani Nikula, Chris Wilson Cc: Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, David Airlie, Daniel Vetter, Ramalingam C, Matt Roper, Matthew Auld, Akeem G Abodunrin, Michał Winiarski, Daniele Ceraolo Spurio, intel-gfx, kernel-janitors The shmem_pin_map() function doesn't return error pointers, it returns NULL. Fixes: be1cb55a07bf ("drm/i915/gt: Keep a no-frills swappable copy of the default context state") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> --- v2: Correct the Fixes tag. Add Matthew's reviewed-by tag. drivers/gpu/drm/i915/gt/selftest_lrc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c index 8b2c11dbe354..1109088fe8f6 100644 --- a/drivers/gpu/drm/i915/gt/selftest_lrc.c +++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c @@ -176,8 +176,8 @@ static int live_lrc_layout(void *arg) continue; hw = shmem_pin_map(engine->default_state); - if (IS_ERR(hw)) { - err = PTR_ERR(hw); + if (!hw) { + err = -ENOMEM; break; } hw += LRC_STATE_OFFSET / sizeof(*hw); @@ -365,8 +365,8 @@ static int live_lrc_fixed(void *arg) continue; hw = shmem_pin_map(engine->default_state); - if (IS_ERR(hw)) { - err = PTR_ERR(hw); + if (!hw) { + err = -ENOMEM; break; } hw += LRC_STATE_OFFSET / sizeof(*hw); -- 2.35.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (rev2) 2022-07-08 9:41 ` Dan Carpenter (?) @ 2022-07-08 13:58 ` Patchwork -1 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-08 13:58 UTC (permalink / raw) To: Dan Carpenter; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4925 bytes --] == Series Details == Series: drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (rev2) URL : https://patchwork.freedesktop.org/series/106093/ State : success == Summary == CI Bug Log - changes from CI_DRM_11862 -> Patchwork_106093v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/index.html Participating hosts (45 -> 41) ------------------------------ Missing (4): fi-ctg-p8600 fi-rkl-11600 fi-icl-u2 fi-hsw-4200u Known issues ------------ Here are the changes found in Patchwork_106093v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - fi-kbl-soraka: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-kbl-soraka/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/fi-kbl-soraka/igt@i915_module_load@load.html * igt@i915_selftest@live@gem: - fi-pnv-d510: NOTRUN -> [DMESG-FAIL][3] ([i915#4528]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [PASS][4] -> [FAIL][5] ([i915#6298]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Possible fixes #### * igt@i915_module_load@reload: - {bat-adln-1}: [DMESG-WARN][6] ([i915#6297]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-adln-1/igt@i915_module_load@reload.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/bat-adln-1/igt@i915_module_load@reload.html * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][8] ([i915#4494] / [i915#4957]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-pnv-d510: [DMESG-FAIL][10] ([i915#4528]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-pnv-d510/igt@i915_selftest@live@requests.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_flip@basic-flip-vs-modeset@b-edp1: - {bat-adlp-6}: [DMESG-WARN][12] ([i915#3576]) -> [PASS][13] +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html * igt@vgem_basic@setversion: - fi-kbl-soraka: [INCOMPLETE][14] -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-kbl-soraka/igt@vgem_basic@setversion.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/fi-kbl-soraka/igt@vgem_basic@setversion.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#6297]: https://gitlab.freedesktop.org/drm/intel/issues/6297 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 Build changes ------------- * Linux: CI_DRM_11862 -> Patchwork_106093v2 CI-20190529: 20190529 CI_DRM_11862: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6563: 7d43b49bf10788d4870668f93a800888fc8ab339 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_106093v2: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits e6f3f9fc9c2b drm/i915/selftests: fix a couple IS_ERR() vs NULL tests == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/index.html [-- Attachment #2: Type: text/html, Size: 5599 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (rev2) 2022-07-08 9:41 ` Dan Carpenter (?) (?) @ 2022-07-09 1:12 ` Patchwork -1 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-09 1:12 UTC (permalink / raw) To: Dan Carpenter; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 49694 bytes --] == Series Details == Series: drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (rev2) URL : https://patchwork.freedesktop.org/series/106093/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11862_full -> Patchwork_106093v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_106093v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_106093v2_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 -> 13) ------------------------------ Additional (3): shard-rkl shard-dg1 shard-tglu Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_106093v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-iclb: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb4/igt@kms_frontbuffer_tracking@psr-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb5/igt@kms_frontbuffer_tracking@psr-suspend.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d}: - shard-tglb: NOTRUN -> [SKIP][5] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html Known issues ------------ Here are the changes found in Patchwork_106093v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-snb4/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@hostile: - shard-tglb: NOTRUN -> [FAIL][7] ([i915#2410]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@gem_ctx_persistence@hostile.html * igt@gem_exec_balancer@parallel-balancer: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271]) +26 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-snb4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][10] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@gem_exec_fair@basic-pace@bcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][17] -> [SKIP][18] ([i915#2190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb8/igt@gem_huc_copy@huc-copy.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@smem-oom: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-ccs: - shard-skl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl10/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_pxp@create-regular-context-1: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4270]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-skl: NOTRUN -> [SKIP][22] ([fdo#109271]) +148 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][23] ([fdo#109312]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@vma-merge: - shard-skl: NOTRUN -> [FAIL][24] ([i915#3318]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#5566] / [i915#716]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl6/igt@gen9_exec_parse@allowed-single.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl7/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][27] -> [DMESG-WARN][28] ([i915#5566] / [i915#716]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk6/igt@gen9_exec_parse@allowed-single.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#658]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglb: NOTRUN -> [WARN][30] ([i915#2681]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_selftest@live@gt_pm: - shard-skl: NOTRUN -> [DMESG-FAIL][31] ([i915#1886]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl9/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +4 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-skl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#1888]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][35] ([i915#3743]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) +8 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#3886]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#6095]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111615] / [i915#3689]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][42] ([fdo#109271]) +65 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@dp-hpd-after-suspend: - shard-snb: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-snb4/igt@kms_chamelium@dp-hpd-after-suspend.html * igt@kms_chamelium@dp-hpd-fast: - shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk2/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@hdmi-audio: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@kms_chamelium@hdmi-audio.html * igt@kms_color_chamelium@pipe-b-ctm-0-25: - shard-skl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +11 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-0-25.html * igt@kms_content_protection@lic: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#1063]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_content_protection@lic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109274] / [fdo#111825]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#2346]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html - shard-skl: NOTRUN -> [FAIL][51] ([i915#2346]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][52] -> [FAIL][53] ([i915#79]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111825] / [i915#3637]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-skl: [PASS][55] -> [FAIL][56] ([i915#79]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1: - shard-skl: [PASS][59] -> [FAIL][60] ([i915#2122]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2672]) +6 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#5439]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][66] ([fdo#108145] / [i915#265]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [PASS][67] -> [SKIP][68] ([i915#5176]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#5235]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-skl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: [PASS][72] -> [SKIP][73] ([fdo#109642] / [fdo#111068] / [i915#658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][74] -> [SKIP][75] ([fdo#109441]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb4/igt@kms_psr@psr2_no_drrs.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271]) +16 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk2/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2437]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@perf@polling-parameterized: - shard-kbl: [PASS][78] -> [FAIL][79] ([i915#5639]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl4/igt@perf@polling-parameterized.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@perf@polling-parameterized.html - shard-apl: [PASS][80] -> [FAIL][81] ([i915#5639]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl8/igt@perf@polling-parameterized.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl3/igt@perf@polling-parameterized.html * igt@prime_nv_api@i915_nv_import_twice: - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#109291]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@prime_nv_api@i915_nv_import_twice.html * igt@sw_sync@sync_merge_same: - shard-skl: NOTRUN -> [FAIL][83] ([i915#6140]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@sw_sync@sync_merge_same.html * igt@sysfs_clients@fair-1: - shard-skl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@feature_discovery@psr2: - shard-iclb: [SKIP][85] ([i915#658]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@feature_discovery@psr2.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_busy@close-race: - shard-snb: [TIMEOUT][87] ([i915#5748]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-snb6/igt@gem_busy@close-race.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-snb4/igt@gem_busy@close-race.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][89] ([i915#4525]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb7/igt@gem_exec_balancer@parallel-balancer.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][91] ([i915#2849]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [DMESG-WARN][93] ([i915#118]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk6/igt@gem_exec_whisper@basic-contexts-forked-all.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gen9_exec_parse@allowed-all: - shard-skl: [DMESG-WARN][95] ([i915#5566] / [i915#716]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl9/igt@gen9_exec_parse@allowed-all.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl9/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglb: [TIMEOUT][97] ([i915#3953]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb8/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][99] ([i915#3921]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-snb6/igt@i915_selftest@live@hangcheck.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-snb4/igt@i915_selftest@live@hangcheck.html - shard-tglb: [DMESG-WARN][101] ([i915#5591]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb3/igt@i915_selftest@live@hangcheck.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb3/igt@i915_selftest@live@hangcheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1: - shard-skl: [FAIL][103] ([i915#2521]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl5/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1: - shard-kbl: [DMESG-WARN][105] ([i915#180]) -> [PASS][106] +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1: - shard-kbl: [FAIL][107] ([i915#2122]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl6/igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl7/igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [FAIL][109] ([i915#2122]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl5/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_plane@plane-position-covered@pipe-b-planes: - shard-tglb: [INCOMPLETE][111] -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb8/igt@kms_plane@plane-position-covered@pipe-b-planes.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb2/igt@kms_plane@plane-position-covered@pipe-b-planes.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: - shard-skl: [FAIL][113] ([fdo#108145] / [i915#265]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl7/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html * igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2: - shard-glk: [FAIL][115] ([i915#1888]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk7/igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-glk8/igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][117] ([fdo#109441]) -> [PASS][118] +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@kms_psr@psr2_cursor_blt.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [SKIP][119] ([i915#5519]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@perf@polling-parameterized: - shard-skl: [FAIL][121] ([i915#1888] / [i915#5639]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl7/igt@perf@polling-parameterized.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_eio@kms: - shard-tglb: [FAIL][123] ([i915#5784]) -> [TIMEOUT][124] ([i915#3063]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb2/igt@gem_eio@kms.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-tglb5/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-kbl: [FAIL][125] ([i915#2842]) -> [SKIP][126] ([fdo#109271]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][127] ([i915#658]) -> [SKIP][128] ([i915#588]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@i915_pm_dc@dc3co-vpb-simulation.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-iclb: [FAIL][129] ([i915#2684]) -> [WARN][130] ([i915#2684]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-skl: [FAIL][131] ([i915#3743]) -> [FAIL][132] ([i915#1888] / [i915#3743]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-skl: [SKIP][133] ([fdo#109271]) -> [SKIP][134] ([fdo#109271] / [i915#1888]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl9/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl9/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-skl: [SKIP][135] ([fdo#109271] / [i915#1888]) -> [SKIP][136] ([fdo#109271]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][137] ([i915#2920]) -> [SKIP][138] ([i915#658]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: [SKIP][139] ([i915#2920]) -> [SKIP][140] ([fdo#111068] / [i915#658]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][141], [FAIL][142]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl8/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl4/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl3/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl4/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl8/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl3/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl7/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-apl1/igt@runner@aborted.html - shard-skl: ([FAIL][149], [FAIL][150], [FAIL][151]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][152], [FAIL][153], [FAIL][154]) ([i915#2029] / [i915#3002] / [i915#4312] / [i915#5257]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl9/igt@runner@aborted.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl9/igt@runner@aborted.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl7/igt@runner@aborted.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl1/igt@runner@aborted.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl3/igt@runner@aborted.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-skl4/igt@runner@aborted.html - shard-kbl: ([FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162], [FAIL][163]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][164], [FAIL][165], [FAIL][166], [FAIL][167], [FAIL][168], [FAIL][169], [FAIL][170], [FAIL][171], [FAIL][172], [FAIL][173]) ([i915#180] / [i915#4312] / [i915#5257]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl4/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl4/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@runner@aborted.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@runner@aborted.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@runner@aborted.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@runner@aborted.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl6/igt@runner@aborted.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@runner@aborted.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl7/igt@runner@aborted.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl7/igt@runner@aborted.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@runner@aborted.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl6/igt@runner@aborted.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/igt@runner@aborted.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106093v2/shard-kbl4/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [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#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [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#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [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#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [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#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [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#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849 [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#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [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#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#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [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#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3953]: https://gitlab.freedesktop.org/drm/intel/issues/3953 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462 [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#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [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#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#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011 [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#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6331]: https://gitlab.freedesktop.org/drm/intel/issues/6331 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_11862 -> Patchwork_106093v2 CI-20190529: 20190529 CI_DRM_11862: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6563: 7d43b49bf10788d4870668f93a800888fc8ab339 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_106093v2: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ 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_106093v2/index.html [-- Attachment #2: Type: text/html, Size: 49403 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests 2022-07-08 9:41 ` Dan Carpenter @ 2022-07-11 9:28 ` Matthew Auld -1 siblings, 0 replies; 6+ messages in thread From: Matthew Auld @ 2022-07-11 9:28 UTC (permalink / raw) To: Dan Carpenter, Jani Nikula, Chris Wilson Cc: Michał Winiarski, David Airlie, intel-gfx, kernel-janitors, Rodrigo Vivi On 08/07/2022 10:41, Dan Carpenter wrote: > The shmem_pin_map() function doesn't return error pointers, it returns > NULL. > > Fixes: be1cb55a07bf ("drm/i915/gt: Keep a no-frills swappable copy of the default context state") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > Reviewed-by: Matthew Auld <matthew.auld@intel.com> Pushed to drm-intel-gt-next. Thanks for the fix. > --- > v2: Correct the Fixes tag. Add Matthew's reviewed-by tag. > > drivers/gpu/drm/i915/gt/selftest_lrc.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c > index 8b2c11dbe354..1109088fe8f6 100644 > --- a/drivers/gpu/drm/i915/gt/selftest_lrc.c > +++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c > @@ -176,8 +176,8 @@ static int live_lrc_layout(void *arg) > continue; > > hw = shmem_pin_map(engine->default_state); > - if (IS_ERR(hw)) { > - err = PTR_ERR(hw); > + if (!hw) { > + err = -ENOMEM; > break; > } > hw += LRC_STATE_OFFSET / sizeof(*hw); > @@ -365,8 +365,8 @@ static int live_lrc_fixed(void *arg) > continue; > > hw = shmem_pin_map(engine->default_state); > - if (IS_ERR(hw)) { > - err = PTR_ERR(hw); > + if (!hw) { > + err = -ENOMEM; > break; > } > hw += LRC_STATE_OFFSET / sizeof(*hw); ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests @ 2022-07-11 9:28 ` Matthew Auld 0 siblings, 0 replies; 6+ messages in thread From: Matthew Auld @ 2022-07-11 9:28 UTC (permalink / raw) To: Dan Carpenter, Jani Nikula, Chris Wilson Cc: Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, David Airlie, Daniel Vetter, Ramalingam C, Matt Roper, Akeem G Abodunrin, Michał Winiarski, Daniele Ceraolo Spurio, intel-gfx, kernel-janitors On 08/07/2022 10:41, Dan Carpenter wrote: > The shmem_pin_map() function doesn't return error pointers, it returns > NULL. > > Fixes: be1cb55a07bf ("drm/i915/gt: Keep a no-frills swappable copy of the default context state") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > Reviewed-by: Matthew Auld <matthew.auld@intel.com> Pushed to drm-intel-gt-next. Thanks for the fix. > --- > v2: Correct the Fixes tag. Add Matthew's reviewed-by tag. > > drivers/gpu/drm/i915/gt/selftest_lrc.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c > index 8b2c11dbe354..1109088fe8f6 100644 > --- a/drivers/gpu/drm/i915/gt/selftest_lrc.c > +++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c > @@ -176,8 +176,8 @@ static int live_lrc_layout(void *arg) > continue; > > hw = shmem_pin_map(engine->default_state); > - if (IS_ERR(hw)) { > - err = PTR_ERR(hw); > + if (!hw) { > + err = -ENOMEM; > break; > } > hw += LRC_STATE_OFFSET / sizeof(*hw); > @@ -365,8 +365,8 @@ static int live_lrc_fixed(void *arg) > continue; > > hw = shmem_pin_map(engine->default_state); > - if (IS_ERR(hw)) { > - err = PTR_ERR(hw); > + if (!hw) { > + err = -ENOMEM; > break; > } > hw += LRC_STATE_OFFSET / sizeof(*hw); ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-07-11 10:01 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-08 9:41 [Intel-gfx] [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests Dan Carpenter 2022-07-08 9:41 ` Dan Carpenter 2022-07-08 13:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: fix a couple IS_ERR() vs NULL tests (rev2) Patchwork 2022-07-09 1:12 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2022-07-11 9:28 ` [Intel-gfx] [PATCH v2] drm/i915/selftests: fix a couple IS_ERR() vs NULL tests Matthew Auld 2022-07-11 9:28 ` Matthew Auld
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.