* [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806
@ 2022-11-08 21:54 Ashutosh Dixit
2022-11-08 22:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to repro GL #6806 (rev3) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Ashutosh Dixit @ 2022-11-08 21:54 UTC (permalink / raw)
To: igt-dev
CI ONLY, PLEASE DON'T REVIEW
Try to repro GL #6806 and see what is really happening there since it could
not be reproduced locally. Also see if the
https://patchwork.freedesktop.org/series/110574/ will fix the issue.
v2: Introduce a 100 ms delay after setting freq
v3: Also print RP1/RPe freq (Vinay)
Bug: https://gitlab.freedesktop.org/drm/intel/-/issues/6806
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/i915/perf_pmu.c | 21 +++++++++++++++------
tests/intel-ci/fast-feedback.testlist | 1 +
2 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/tests/i915/perf_pmu.c b/tests/i915/perf_pmu.c
index f363db2ba13..3bc00064878 100644
--- a/tests/i915/perf_pmu.c
+++ b/tests/i915/perf_pmu.c
@@ -1543,10 +1543,13 @@ test_interrupts_sync(int gem_fd)
igt_assert_lte(target, busy);
}
+/* Wait for GuC SLPC freq changes to take effect */
+#define wait_freq_set() usleep(100000)
+
static void
test_frequency(int gem_fd)
{
- uint32_t min_freq, max_freq, boost_freq;
+ uint32_t min_freq, max_freq, boost_freq, min_req, max_req;
uint64_t val[2], start[2], slept;
double min[2], max[2];
igt_spin_t *spin;
@@ -1572,10 +1575,11 @@ test_frequency(int gem_fd)
* Set GPU to min frequency and read PMU counters.
*/
igt_require(igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", min_freq));
- igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == min_freq);
igt_require(igt_sysfs_set_u32(sysfs, "gt_max_freq_mhz", min_freq));
- igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == min_freq);
igt_require(igt_sysfs_set_u32(sysfs, "gt_boost_freq_mhz", min_freq));
+ wait_freq_set();
+ igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == min_freq);
+ igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == min_freq);
igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == min_freq);
gem_quiescent_gpu(gem_fd); /* Idle to be sure the change takes effect */
@@ -1587,6 +1591,7 @@ test_frequency(int gem_fd)
min[0] = 1e9*(val[0] - start[0]) / slept;
min[1] = 1e9*(val[1] - start[1]) / slept;
+ min_req = igt_sysfs_get_u32(sysfs, "gt_cur_freq_mhz");
igt_spin_free(gem_fd, spin);
gem_quiescent_gpu(gem_fd); /* Don't leak busy bo into the next phase */
@@ -1597,11 +1602,11 @@ test_frequency(int gem_fd)
* Set GPU to max frequency and read PMU counters.
*/
igt_require(igt_sysfs_set_u32(sysfs, "gt_max_freq_mhz", max_freq));
- igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == max_freq);
igt_require(igt_sysfs_set_u32(sysfs, "gt_boost_freq_mhz", boost_freq));
- igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == boost_freq);
-
igt_require(igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", max_freq));
+ wait_freq_set();
+ igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == max_freq);
+ igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == boost_freq);
igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == max_freq);
gem_quiescent_gpu(gem_fd);
@@ -1613,6 +1618,7 @@ test_frequency(int gem_fd)
max[0] = 1e9*(val[0] - start[0]) / slept;
max[1] = 1e9*(val[1] - start[1]) / slept;
+ max_req = igt_sysfs_get_u32(sysfs, "gt_cur_freq_mhz");
igt_spin_free(gem_fd, spin);
gem_quiescent_gpu(gem_fd);
@@ -1621,6 +1627,7 @@ test_frequency(int gem_fd)
* Restore min/max.
*/
igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", min_freq);
+ wait_freq_set();
if (igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") != min_freq)
igt_warn("Unable to restore min frequency to saved value [%u MHz], now %u MHz\n",
min_freq, igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz"));
@@ -1632,6 +1639,8 @@ test_frequency(int gem_fd)
min[0], min[1]);
igt_info("Max frequency: requested %.1f, actual %.1f\n",
max[0], max[1]);
+ igt_info("Sysfs requested: min %d, max %d\n", min_req, max_req);
+ igt_info("RP1/Rpe freq: %d\n", igt_sysfs_get_u32(sysfs, "gt_RP1_freq_mhz"));
assert_within_epsilon(min[0], min_freq, tolerance);
/*
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index f57f8ff3be1..a2bb37fb4ae 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness
igt@i915_pm_rpm@basic-pci-d3-state
igt@i915_pm_rpm@basic-rte
igt@i915_pm_rps@basic-api
+igt@perf_pmu@frequency
igt@prime_self_import@basic-llseek-bad
igt@prime_self_import@basic-llseek-size
igt@prime_self_import@basic-with_fd_dup
--
2.38.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to repro GL #6806 (rev3) 2022-11-08 21:54 [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Ashutosh Dixit @ 2022-11-08 22:31 ` Patchwork 2022-11-09 4:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-09 12:54 ` [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-11-08 22:31 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6802 bytes --] == Series Details == Series: tests/perf_pmu: Try to repro GL #6806 (rev3) URL : https://patchwork.freedesktop.org/series/110630/ State : success == Summary == CI Bug Log - changes from CI_DRM_12356 -> IGTPW_8071 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html Participating hosts (42 -> 38) ------------------------------ Missing (4): fi-ctg-p8600 fi-ilk-m540 fi-kbl-x1275 fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_8071 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-rkl-11600: NOTRUN -> [FAIL][1] ([fdo#103375]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-bsw-nick: NOTRUN -> [SKIP][2] ([fdo#109271] / [fdo#111827]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-bsw-nick/igt@kms_chamelium@common-hpd-after-suspend.html - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271] / [fdo#111827]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html - fi-rkl-11600: NOTRUN -> [SKIP][4] ([fdo#111827]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [PASS][5] -> [FAIL][6] ([i915#6298]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html * igt@kms_pipe_crc_basic@suspend-read-crc: - fi-bsw-nick: NOTRUN -> [SKIP][7] ([fdo#109271]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-bsw-nick/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@perf_pmu@frequency: - fi-ilk-650: NOTRUN -> [SKIP][8] ([fdo#109271]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-ilk-650/igt@perf_pmu@frequency.html - fi-blb-e6850: NOTRUN -> [SKIP][9] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-blb-e6850/igt@perf_pmu@frequency.html - fi-bsw-kefka: NOTRUN -> [SKIP][10] ([fdo#109271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-bsw-kefka/igt@perf_pmu@frequency.html - fi-elk-e7500: NOTRUN -> [SKIP][11] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-elk-e7500/igt@perf_pmu@frequency.html - fi-pnv-d510: NOTRUN -> [SKIP][12] ([fdo#109271]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-pnv-d510/igt@perf_pmu@frequency.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rpls-2}: [DMESG-WARN][13] ([i915#6434]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/bat-rpls-2/igt@gem_exec_suspend@basic-s0@smem.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/bat-rpls-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s3@smem: - {bat-rpls-1}: [DMESG-WARN][15] ([i915#6687]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][17] ([i915#4785]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - fi-bsw-nick: [DMESG-FAIL][19] ([i915#6217]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/fi-bsw-nick/igt@i915_selftest@live@hugepages.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-bsw-nick/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@slpc: - {bat-adln-1}: [DMESG-FAIL][21] ([i915#6997]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/bat-adln-1/igt@i915_selftest@live@slpc.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/bat-adln-1/igt@i915_selftest@live@slpc.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][23] ([i915#4817]) -> [FAIL][24] ([fdo#103375]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6471]: https://gitlab.freedesktop.org/drm/intel/issues/6471 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7048 -> IGTPW_8071 CI-20190529: 20190529 CI_DRM_12356: 1278975de8debde9eb1f5d86fd2fbe533361e456 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8071: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html IGT_7048: 5edd5c539f1fdf1c02157bf43fa1fd22d4ad2c75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html [-- Attachment #2: Type: text/html, Size: 8080 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/perf_pmu: Try to repro GL #6806 (rev3) 2022-11-08 21:54 [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Ashutosh Dixit 2022-11-08 22:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to repro GL #6806 (rev3) Patchwork @ 2022-11-09 4:13 ` Patchwork 2022-11-09 12:54 ` [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-11-09 4:13 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45403 bytes --] == Series Details == Series: tests/perf_pmu: Try to repro GL #6806 (rev3) URL : https://patchwork.freedesktop.org/series/110630/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12356_full -> IGTPW_8071_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8071_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8071_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8071_full: ### IGT changes ### #### Possible regressions #### * igt@kms_sequence@get-idle@edp-1-pipe-d: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb1/igt@kms_sequence@get-idle@edp-1-pipe-d.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@kms_sequence@get-idle@edp-1-pipe-d.html Known issues ------------ Here are the changes found in IGTPW_8071_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-apl: [PASS][3] -> [DMESG-WARN][4] ([i915#5507]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl6/igt@device_reset@unbind-reset-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl3/igt@device_reset@unbind-reset-rebind.html - shard-iclb: [PASS][5] -> [DMESG-WARN][6] ([i915#5507]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb3/igt@device_reset@unbind-reset-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@device_reset@unbind-reset-rebind.html * igt@feature_discovery@display-4x: - shard-iclb: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb7/igt@feature_discovery@display-4x.html - shard-tglb: NOTRUN -> [SKIP][8] ([i915#1839]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@feature_discovery@display-4x.html * igt@gem_create@create-massive: - shard-apl: NOTRUN -> [DMESG-WARN][9] ([i915#4991]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl1/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@mmap-args: - shard-tglb: NOTRUN -> [SKIP][11] ([i915#280]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#2190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify: - shard-iclb: NOTRUN -> [SKIP][14] ([i915#4613]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb5/igt@gem_lmem_swapping@verify.html - shard-tglb: NOTRUN -> [SKIP][15] ([i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb7/igt@gem_lmem_swapping@verify.html - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk9/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-snb: [PASS][17] -> [CRASH][18] ([i915#5161]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-x.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#4270]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb1/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-tglb: NOTRUN -> [SKIP][20] ([i915#4270]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#768]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#4171]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb2/igt@gem_softpin@evict-single-offset.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb6/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][24] ([fdo#109290]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb5/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][25] ([fdo#110542]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglb: NOTRUN -> [SKIP][26] ([i915#3297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-iclb: NOTRUN -> [SKIP][27] ([i915#3297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen9_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#2527] / [i915#2856]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#2856]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][30] ([i915#7036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][31] -> [SKIP][32] ([fdo#109271]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglb: NOTRUN -> [WARN][33] ([i915#2681]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111644] / [i915#1397] / [i915#2411]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#110892]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_sseu@full-enable: - shard-iclb: NOTRUN -> [SKIP][36] ([i915#4387]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#5286]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][38] ([i915#5286]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#110725] / [fdo#111614]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb5/igt@kms_big_fb@linear-8bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111614]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111615]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#110723]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109278]) +9 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689] / [i915#6095]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb1/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615] / [i915#3689]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][46] ([i915#6095]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3886]) +7 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +4 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109278] / [i915#3886]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3689]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +9 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl7/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-edid-read: - shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk8/igt@kms_chamelium@dp-edid-read.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@kms_color_chamelium@ctm-0-75.html - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_color_chamelium@ctm-red-to-blue: - shard-snb: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +3 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb6/igt@kms_color_chamelium@ctm-red-to-blue.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][57] ([i915#7121] / [i915#7173]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1: - shard-apl: NOTRUN -> [DMESG-WARN][58] ([i915#180]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109274] / [fdo#111825]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_fbcon_fbt@fbc: - shard-tglb: NOTRUN -> [FAIL][60] ([i915#4767]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb5/igt@kms_fbcon_fbt@fbc.html - shard-glk: NOTRUN -> [FAIL][61] ([i915#4767]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk8/igt@kms_fbcon_fbt@fbc.html - shard-iclb: NOTRUN -> [FAIL][62] ([i915#4767]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb7/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [FAIL][63] ([i915#4767]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][64] -> [FAIL][65] ([i915#79]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk5/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][66] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-glk: [PASS][68] -> [DMESG-FAIL][69] ([i915#118]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-glk2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][70] ([i915#2672]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#2587] / [i915#2672]) +4 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][72] ([i915#3555]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][73] ([i915#2672] / [i915#3555]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109280]) +7 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglb: NOTRUN -> [SKIP][75] ([i915#6497]) +6 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109280] / [fdo#111825]) +7 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271]) +99 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][78] ([fdo#109271]) +190 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#3555]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@kms_hdr@bpc-switch.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-tglb: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][81] ([i915#4573]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][82] ([fdo#109271]) +154 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-edp-1: - shard-iclb: NOTRUN -> [SKIP][83] ([i915#5176]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-edp-1: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#5176]) +3 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb5/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#2920]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][88] -> [SKIP][89] ([fdo#109441]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109441]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr@psr2_suspend: - shard-tglb: NOTRUN -> [FAIL][91] ([i915#132] / [i915#3467]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb1/igt@kms_psr@psr2_suspend.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [PASS][92] -> [SKIP][93] ([i915#5519]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][94] ([i915#5465]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@perf@gen12-mi-rpc: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109289]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb3/igt@perf@gen12-mi-rpc.html * igt@sysfs_clients@fair-0: - shard-glk: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk7/igt@sysfs_clients@fair-0.html #### Possible fixes #### * igt@fbdev@eof: - {shard-rkl}: [SKIP][97] ([i915#2582]) -> [PASS][98] +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-2/igt@fbdev@eof.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-6/igt@fbdev@eof.html * igt@feature_discovery@psr2: - {shard-rkl}: [SKIP][99] ([i915#658]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-2/igt@feature_discovery@psr2.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-6/igt@feature_discovery@psr2.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][101] ([i915#6268]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-snb6/igt@gem_ctx_isolation@preservation-s3@rcs0.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-snb6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-hang@bcs0: - {shard-rkl}: [SKIP][105] ([i915#6252]) -> [PASS][106] +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-4/igt@gem_ctx_persistence@engines-hang@bcs0.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [SKIP][107] ([i915#4525]) -> [PASS][108] +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-deadline: - {shard-rkl}: [FAIL][109] ([i915#2846]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][111] ([i915#2842]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][113] ([fdo#109313]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][115] ([i915#3281]) -> [PASS][116] +9 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][117] ([i915#2190]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb7/igt@gem_huc_copy@huc-copy.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [DMESG-WARN][119] ([i915#4936]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_pwrite_snooped: - {shard-rkl}: [SKIP][121] ([i915#3282]) -> [PASS][122] +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-1/igt@gem_pwrite_snooped.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-5/igt@gem_pwrite_snooped.html * igt@gem_workarounds@suspend-resume: - shard-apl: [DMESG-WARN][123] ([i915#180]) -> [PASS][124] +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl1/igt@gem_workarounds@suspend-resume.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl7/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][125] ([i915#2527]) -> [PASS][126] +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_dc@dc9-dpms: - {shard-rkl}: [SKIP][127] ([i915#3361]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rps@waitboost: - {shard-rkl}: [FAIL][129] ([i915#7142]) -> [PASS][130] +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-1/igt@i915_pm_rps@waitboost.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-2/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [FAIL][131] ([i915#2346]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][133] ([i915#1849] / [i915#4098]) -> [PASS][134] +8 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_psr@dpms: - {shard-rkl}: [SKIP][135] ([i915#1072]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-4/igt@kms_psr@dpms.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-6/igt@kms_psr@dpms.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][137] ([fdo#109441]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb6/igt@kms_psr@psr2_cursor_plane_onoff.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_rotation_crc@exhaust-fences: - {shard-rkl}: [SKIP][139] ([i915#1845] / [i915#4098]) -> [PASS][140] +12 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-rkl-2/igt@kms_rotation_crc@exhaust-fences.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html * igt@perf_pmu@busy-double-start@vcs0: - {shard-dg1}: [FAIL][141] ([i915#4349]) -> [PASS][142] +2 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs0.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-tglb: [INCOMPLETE][143] ([i915#7248]) -> [WARN][144] ([i915#2658]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-tglb8/igt@gem_pread@exhaustion.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-tglb3/igt@gem_pread@exhaustion.html - shard-glk: [INCOMPLETE][145] ([i915#7248]) -> [WARN][146] ([i915#2658]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-glk1/igt@gem_pread@exhaustion.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: [INCOMPLETE][147] ([i915#7248]) -> [WARN][148] ([i915#2658]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl8/igt@gem_pwrite@basic-exhaustion.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl8/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][149] ([i915#2920]) -> [SKIP][150] ([fdo#111068] / [i915#658]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: [SKIP][151] ([fdo#111068] / [i915#658]) -> [SKIP][152] ([i915#2920]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162]) ([i915#180] / [i915#3002] / [i915#4312]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl1/igt@runner@aborted.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl3/igt@runner@aborted.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl8/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl2/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12356/shard-apl8/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl1/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl3/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl3/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl3/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/shard-apl8/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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [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#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892 [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [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#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [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#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#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [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#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [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#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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [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#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [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#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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#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#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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [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#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6778]: https://gitlab.freedesktop.org/drm/intel/issues/6778 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7121]: https://gitlab.freedesktop.org/drm/intel/issues/7121 [i915#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7048 -> IGTPW_8071 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12356: 1278975de8debde9eb1f5d86fd2fbe533361e456 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8071: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html IGT_7048: 5edd5c539f1fdf1c02157bf43fa1fd22d4ad2c75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8071/index.html [-- Attachment #2: Type: text/html, Size: 49895 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 2022-11-08 21:54 [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Ashutosh Dixit 2022-11-08 22:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to repro GL #6806 (rev3) Patchwork 2022-11-09 4:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-09 12:54 ` Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Kamil Konieczny @ 2022-11-09 12:54 UTC (permalink / raw) To: igt-dev Hi Ashutosh, On 2022-11-08 at 13:54:57 -0800, Ashutosh Dixit wrote: > CI ONLY, PLEASE DON'T REVIEW > > Try to repro GL #6806 and see what is really happening there since it could > not be reproduced locally. Also see if the > https://patchwork.freedesktop.org/series/110574/ will fix the issue. > > v2: Introduce a 100 ms delay after setting freq > v3: Also print RP1/RPe freq (Vinay) Please try to use trybot for that purpose rather than main mailinglist, https://patchwork.freedesktop.org/project/igt-trybot/series/ e-mail: intel-gfx-trybot@lists.freedesktop.org Regards, Kamil > > Bug: https://gitlab.freedesktop.org/drm/intel/-/issues/6806 > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > --- > tests/i915/perf_pmu.c | 21 +++++++++++++++------ > tests/intel-ci/fast-feedback.testlist | 1 + > 2 files changed, 16 insertions(+), 6 deletions(-) > > diff --git a/tests/i915/perf_pmu.c b/tests/i915/perf_pmu.c > index f363db2ba13..3bc00064878 100644 > --- a/tests/i915/perf_pmu.c > +++ b/tests/i915/perf_pmu.c > @@ -1543,10 +1543,13 @@ test_interrupts_sync(int gem_fd) > igt_assert_lte(target, busy); > } > > +/* Wait for GuC SLPC freq changes to take effect */ > +#define wait_freq_set() usleep(100000) > + > static void > test_frequency(int gem_fd) > { > - uint32_t min_freq, max_freq, boost_freq; > + uint32_t min_freq, max_freq, boost_freq, min_req, max_req; > uint64_t val[2], start[2], slept; > double min[2], max[2]; > igt_spin_t *spin; > @@ -1572,10 +1575,11 @@ test_frequency(int gem_fd) > * Set GPU to min frequency and read PMU counters. > */ > igt_require(igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", min_freq)); > - igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == min_freq); > igt_require(igt_sysfs_set_u32(sysfs, "gt_max_freq_mhz", min_freq)); > - igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == min_freq); > igt_require(igt_sysfs_set_u32(sysfs, "gt_boost_freq_mhz", min_freq)); > + wait_freq_set(); > + igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == min_freq); > + igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == min_freq); > igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == min_freq); > > gem_quiescent_gpu(gem_fd); /* Idle to be sure the change takes effect */ > @@ -1587,6 +1591,7 @@ test_frequency(int gem_fd) > > min[0] = 1e9*(val[0] - start[0]) / slept; > min[1] = 1e9*(val[1] - start[1]) / slept; > + min_req = igt_sysfs_get_u32(sysfs, "gt_cur_freq_mhz"); > > igt_spin_free(gem_fd, spin); > gem_quiescent_gpu(gem_fd); /* Don't leak busy bo into the next phase */ > @@ -1597,11 +1602,11 @@ test_frequency(int gem_fd) > * Set GPU to max frequency and read PMU counters. > */ > igt_require(igt_sysfs_set_u32(sysfs, "gt_max_freq_mhz", max_freq)); > - igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == max_freq); > igt_require(igt_sysfs_set_u32(sysfs, "gt_boost_freq_mhz", boost_freq)); > - igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == boost_freq); > - > igt_require(igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", max_freq)); > + wait_freq_set(); > + igt_require(igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz") == max_freq); > + igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == boost_freq); > igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == max_freq); > > gem_quiescent_gpu(gem_fd); > @@ -1613,6 +1618,7 @@ test_frequency(int gem_fd) > > max[0] = 1e9*(val[0] - start[0]) / slept; > max[1] = 1e9*(val[1] - start[1]) / slept; > + max_req = igt_sysfs_get_u32(sysfs, "gt_cur_freq_mhz"); > > igt_spin_free(gem_fd, spin); > gem_quiescent_gpu(gem_fd); > @@ -1621,6 +1627,7 @@ test_frequency(int gem_fd) > * Restore min/max. > */ > igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", min_freq); > + wait_freq_set(); > if (igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") != min_freq) > igt_warn("Unable to restore min frequency to saved value [%u MHz], now %u MHz\n", > min_freq, igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz")); > @@ -1632,6 +1639,8 @@ test_frequency(int gem_fd) > min[0], min[1]); > igt_info("Max frequency: requested %.1f, actual %.1f\n", > max[0], max[1]); > + igt_info("Sysfs requested: min %d, max %d\n", min_req, max_req); > + igt_info("RP1/Rpe freq: %d\n", igt_sysfs_get_u32(sysfs, "gt_RP1_freq_mhz")); > > assert_within_epsilon(min[0], min_freq, tolerance); > /* > diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist > index f57f8ff3be1..a2bb37fb4ae 100644 > --- a/tests/intel-ci/fast-feedback.testlist > +++ b/tests/intel-ci/fast-feedback.testlist > @@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness > igt@i915_pm_rpm@basic-pci-d3-state > igt@i915_pm_rpm@basic-rte > igt@i915_pm_rps@basic-api > +igt@perf_pmu@frequency > igt@prime_self_import@basic-llseek-bad > igt@prime_self_import@basic-llseek-size > igt@prime_self_import@basic-with_fd_dup > -- > 2.38.0 > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-09 12:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-08 21:54 [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Ashutosh Dixit 2022-11-08 22:31 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to repro GL #6806 (rev3) Patchwork 2022-11-09 4:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-09 12:54 ` [igt-dev] [PATCH i-g-t] tests/perf_pmu: Try to repro GL #6806 Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox