* [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier
@ 2023-07-26 1:00 Vinay Belgaumkar
2023-07-26 2:00 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Vinay Belgaumkar @ 2023-07-26 1:00 UTC (permalink / raw)
To: intel-gfx, dri-devel
This should be done before the soft min/max frequencies are restored.
When we disable the "Ignore efficient frequency" flag, GuC does not
actually bring the requested freq down to RPn.
Specifically, this scenario-
- ignore efficient freq set to true
- reduce min to RPn (from efficient)
- suspend
- resume (includes GuC load, restore soft min/max, restore efficient freq)
- validate min freq has been resored to RPn
This will fail if we didn't first restore(disable, in this case) efficient
freq flag before setting the soft min frequency.
v2: Bring the min freq down to RPn when we disable efficient freq (Rodrigo)
Also made the change to set the min softlimit to RPn at init. Otherwise, we
were storing RPe there.
Link: https://gitlab.freedesktop.org/drm/intel/-/issues/8736
Fixes: 55f9720dbf23 ("drm/i915/guc/slpc: Provide sysfs for efficient freq")
Fixes: 95ccf312a1e4 ("drm/i915/guc/slpc: Allow SLPC to use efficient frequency")
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 22 +++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index ee9f83af7cf6..477df260ae3a 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -470,12 +470,19 @@ int intel_guc_slpc_set_ignore_eff_freq(struct intel_guc_slpc *slpc, bool val)
ret = slpc_set_param(slpc,
SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
val);
- if (ret)
+ if (ret) {
guc_probe_error(slpc_to_guc(slpc), "Failed to set efficient freq(%d): %pe\n",
val, ERR_PTR(ret));
- else
+ } else {
slpc->ignore_eff_freq = val;
+ /* Set min to RPn when we disable efficient freq */
+ if (val)
+ ret = slpc_set_param(slpc,
+ SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
+ slpc->min_freq);
+ }
+
intel_runtime_pm_put(&i915->runtime_pm, wakeref);
mutex_unlock(&slpc->lock);
return ret;
@@ -602,9 +609,8 @@ static int slpc_set_softlimits(struct intel_guc_slpc *slpc)
return ret;
if (!slpc->min_freq_softlimit) {
- ret = intel_guc_slpc_get_min_freq(slpc, &slpc->min_freq_softlimit);
- if (unlikely(ret))
- return ret;
+ /* Min softlimit is initialized to RPn */
+ slpc->min_freq_softlimit = slpc->min_freq;
slpc_to_gt(slpc)->defaults.min_freq = slpc->min_freq_softlimit;
} else {
return intel_guc_slpc_set_min_freq(slpc,
@@ -755,6 +761,9 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
return ret;
}
+ /* Set cached value of ignore efficient freq */
+ intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
+
/* Revert SLPC min/max to softlimits if necessary */
ret = slpc_set_softlimits(slpc);
if (unlikely(ret)) {
@@ -765,9 +774,6 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
/* Set cached media freq ratio mode */
intel_guc_slpc_set_media_ratio_mode(slpc, slpc->media_ratio_mode);
- /* Set cached value of ignore efficient freq */
- intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
-
return 0;
}
--
2.38.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev2)
2023-07-26 1:00 [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Vinay Belgaumkar
@ 2023-07-26 2:00 ` Patchwork
2023-07-27 20:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/guc/slpc: Restore efficient freq earlier (rev3) Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-07-26 2:00 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10408 bytes --]
== Series Details ==
Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev2)
URL : https://patchwork.freedesktop.org/series/121150/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13422 -> Patchwork_121150v2
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_121150v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_121150v2, 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/Patchwork_121150v2/index.html
Participating hosts (44 -> 42)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_121150v2:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-8: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-dg2-8/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-dg2-8/igt@i915_pm_rpm@module-reload.html
- bat-dg1-7: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in Patchwork_121150v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [PASS][5] -> [DMESG-FAIL][6] ([i915#4258] / [i915#7913])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@mman:
- bat-rpls-2: [PASS][7] -> [TIMEOUT][8] ([i915#6794] / [i915#7392])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-rpls-2/igt@i915_selftest@live@mman.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rpls-2/igt@i915_selftest@live@mman.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-2: [PASS][9] -> [WARN][10] ([i915#8747])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-jsl-3: NOTRUN -> [SKIP][11] ([i915#7828])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-jsl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#1845] / [i915#5354]) +2 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [SKIP][13] ([i915#1072]) +1 similar issue
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [ABORT][14] ([i915#8260] / [i915#8668])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [ABORT][15] ([i915#5122]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-adlp-9: [FAIL][17] ([i915#7940]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-skl-guc: [FAIL][19] ([i915#7940]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [FAIL][21] ([i915#7940]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
- fi-tgl-1115g4: [FAIL][23] ([i915#7940]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [DMESG-FAIL][25] ([i915#7059]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
- bat-mtlp-6: [DMESG-FAIL][27] ([i915#7059]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@migrate:
- bat-atsm-1: [DMESG-FAIL][29] ([i915#7699] / [i915#7913]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-atsm-1/igt@i915_selftest@live@migrate.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-atsm-1/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [DMESG-FAIL][31] ([i915#8497]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-mtlp-8/igt@i915_selftest@live@requests.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: [DMESG-WARN][33] ([i915#6367]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-mtlp-8/igt@i915_selftest@live@slpc.html
- bat-rpls-1: [DMESG-WARN][35] ([i915#6367]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-rpls-1/igt@i915_selftest@live@slpc.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [FAIL][37] ([fdo#103375]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
#### Warnings ####
* igt@i915_pm_rpm@basic-rte:
- fi-kbl-guc: [FAIL][39] ([i915#7940]) -> [FAIL][40] ([i915#8843])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [ABORT][41] ([i915#8434] / [i915#8668]) -> [SKIP][42] ([i915#1072])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13422/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
[i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843
Build changes
-------------
* Linux: CI_DRM_13422 -> Patchwork_121150v2
CI-20190529: 20190529
CI_DRM_13422: a19adfa38acfde9a7a6e9f99b598c065e4f190bb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7403: c93b4e6ff2f3cd1a41667e63c7414cc239d88240 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_121150v2: a19adfa38acfde9a7a6e9f99b598c065e4f190bb @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
043cd4d66d4a drm/i915/guc/slpc: Restore efficient freq earlier
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v2/index.html
[-- Attachment #2: Type: text/html, Size: 12179 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-07-26 1:00 [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Vinay Belgaumkar
2023-07-26 2:00 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev2) Patchwork
@ 2023-07-27 20:33 ` Patchwork
2023-07-28 1:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2023-07-28 15:36 ` [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Rodrigo Vivi
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-07-27 20:33 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8016 bytes --]
== Series Details ==
Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
URL : https://patchwork.freedesktop.org/series/121150/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13432 -> Patchwork_121150v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_121150v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3@smem:
- bat-rpls-2: NOTRUN -> [ABORT][1] ([i915#6687] / [i915#7978] / [i915#8668])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-guc: [PASS][2] -> [FAIL][3] ([i915#7940])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#7269])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-mtlp-8/igt@i915_selftest@live@requests.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: NOTRUN -> [DMESG-WARN][6] ([i915#6367])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rpls-2/igt@i915_selftest@live@slpc.html
- bat-mtlp-8: [PASS][7] -> [DMESG-WARN][8] ([i915#6367])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-mtlp-8/igt@i915_selftest@live@slpc.html
- bat-rpls-1: [PASS][9] -> [DMESG-WARN][10] ([i915#6367])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rpls-1/igt@i915_selftest@live@slpc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#1845] / [i915#5354]) +3 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@primary_page_flip:
- bat-rplp-1: NOTRUN -> [ABORT][12] ([i915#8442] / [i915#8668] / [i915#8860])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rplp-1/igt@kms_psr@primary_page_flip.html
#### Possible fixes ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-tgl-1115g4: [FAIL][13] ([i915#7940]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [FAIL][15] ([i915#7940]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [DMESG-FAIL][17] ([i915#7059]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@hangcheck:
- bat-dg2-8: [DMESG-FAIL][19] ([i915#6998] / [i915#7913]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-dg2-8/igt@i915_selftest@live@hangcheck.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-dg2-8/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [ABORT][21] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rpls-2/igt@i915_selftest@live@reset.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [DMESG-WARN][23] ([i915#6367]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-mtlp-6/igt@i915_selftest@live@slpc.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [ABORT][25] ([i915#8442] / [i915#8668]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
#### Warnings ####
* igt@core_auth@basic-auth:
- bat-adlp-11: [ABORT][27] ([i915#8011]) -> [ABORT][28] ([i915#4423] / [i915#8011])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-adlp-11/igt@core_auth@basic-auth.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/bat-adlp-11/igt@core_auth@basic-auth.html
* igt@i915_pm_rpm@basic-rte:
- fi-kbl-guc: [FAIL][29] ([i915#7940]) -> [FAIL][30] ([i915#8843])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#6998]: https://gitlab.freedesktop.org/drm/intel/issues/6998
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843
[i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860
Build changes
-------------
* Linux: CI_DRM_13432 -> Patchwork_121150v3
CI-20190529: 20190529
CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
d83a6cc96ea6 drm/i915/guc/slpc: Restore efficient freq earlier
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
[-- Attachment #2: Type: text/html, Size: 9738 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-07-26 1:00 [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Vinay Belgaumkar
2023-07-26 2:00 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev2) Patchwork
2023-07-27 20:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/guc/slpc: Restore efficient freq earlier (rev3) Patchwork
@ 2023-07-28 1:59 ` Patchwork
2023-08-02 0:41 ` Belgaumkar, Vinay
2023-07-28 15:36 ` [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Rodrigo Vivi
3 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2023-07-28 1:59 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 44398 bytes --]
== Series Details ==
Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
URL : https://patchwork.freedesktop.org/series/121150/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_121150v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_121150v3_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 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_121150v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@sysfs_timeslice_duration@invalid:
- shard-mtlp: NOTRUN -> [TIMEOUT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
Known issues
------------
Here are the changes found in Patchwork_121150v3_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@virtual-busy:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8414])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#5325])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-apl: [PASS][4] -> [ABORT][5] ([i915#180])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +4 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: [PASS][7] -> [FAIL][8] ([fdo#103375])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][9] ([i915#5784])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [PASS][10] -> [FAIL][11] ([i915#5892])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_capture@capture@bcs0-smem:
- shard-mtlp: [PASS][12] -> [TIMEOUT][13] ([i915#7941])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][14] -> [FAIL][15] ([i915#2842])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#3539])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3539] / [i915#4852])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3281]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3281])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4812])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#4860])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4613])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4083])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-read-write:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4077])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4077])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_readwrite@read-write:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3282])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8428]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4885])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3282])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3297] / [i915#4880])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#2527])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3361])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [PASS][33] -> [SKIP][34] ([i915#4281])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-rkl: [PASS][35] -> [SKIP][36] ([i915#1937])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#1902])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][38] -> [FAIL][39] ([i915#7691])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [PASS][40] -> [SKIP][41] ([i915#1397]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
- shard-tglu: [PASS][42] -> [FAIL][43] ([i915#7940])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [PASS][44] -> [FAIL][45] ([i915#8717])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4212])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][48] ([i915#8247]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][49] ([i915#8247]) +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#1769])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][51] -> [FAIL][52] ([i915#5138])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [PASS][53] -> [FAIL][54] ([i915#3743]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][55] ([fdo#111614])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3638])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][57] ([fdo#111615])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#2705])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#6095]) +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3886] / [i915#6095]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#5354] / [i915#6095]) +3 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#7213]) +3 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4087]) +3 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#7828]) +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#7828]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3299])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][69] ([i915#7173])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3555])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][71] ([fdo#103375])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#8248])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111767])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [FAIL][75] ([i915#2346])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][76] -> [FAIL][77] ([i915#2346])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3555] / [i915#3840])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3637])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [DMESG-WARN][80] ([i915#8841]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2672])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#8708]) +3 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][83] ([fdo#111825]) +8 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#1825]) +8 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3458]) +2 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3555] / [i915#8228])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
* igt@kms_plane@pixel-format@pipe-b-planes:
- shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#1623])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#5176]) +5 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#5176]) +15 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#5235]) +3 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#5235]) +7 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][93] ([fdo#109271]) +278 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5235]) +7 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#5235]) +3 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_psr@dpms:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#1072])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
* igt@kms_vblank@pipe-c-wait-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6768])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#2575])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2575]) +3 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#7711])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#7711])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][102] ([i915#6268]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
* {igt@gem_ctx_freq@sysfs@gt0}:
- shard-dg2: [FAIL][104] ([i915#6786]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-apl: [ABORT][106] ([i915#180]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][108] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][110] ([i915#5784]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][112] ([i915#4475]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_capture@pi@vcs1:
- shard-mtlp: [DMESG-WARN][114] ([i915#8504]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][116] ([i915#2842]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [DMESG-WARN][118] ([i915#7061] / [i915#8617]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][120] ([i915#3591]) -> [PASS][121] +2 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
- shard-dg1: [FAIL][122] ([i915#7940]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][124] ([i915#1397]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][126] ([i915#1397]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][128] ([i915#1397]) -> [PASS][129] +2 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@pm-caching:
- shard-tglu: [FAIL][130] ([i915#7940]) -> [PASS][131] +1 similar issue
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [FAIL][132] ([i915#3743]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][134] ([i915#2346]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][136] ([i915#2122]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
- shard-apl: [FAIL][138] ([i915#79]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][140] ([i915#6880]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-dg2: [FAIL][142] ([fdo#103375]) -> [PASS][143] +2 similar issues
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][144] ([i915#4349]) -> [PASS][145] +3 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [ABORT][146] ([i915#8131]) -> [TIMEOUT][147] ([i915#8628])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [FAIL][148] ([i915#2681] / [i915#3591]) -> [WARN][149] ([i915#2681])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][150] ([i915#1397]) -> [FAIL][151] ([i915#7940])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][152] ([i915#4391]) -> [DMESG-WARN][153] ([i915#4391] / [i915#4423])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][154] ([i915#2017] / [i915#5954]) -> [FAIL][155] ([i915#2346])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][156] ([fdo#110189] / [i915#3955]) -> [SKIP][157] ([i915#3955])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][158] ([i915#4070] / [i915#4816]) -> [SKIP][159] ([i915#4816])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][160] ([i915#1072] / [i915#4078]) -> [SKIP][161] ([i915#1072])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [ABORT][162] ([i915#8521]) -> [TIMEOUT][163] ([i915#6950])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.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#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[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#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8504]: https://gitlab.freedesktop.org/drm/intel/issues/8504
[i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8805]: https://gitlab.freedesktop.org/drm/intel/issues/8805
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
Build changes
-------------
* Linux: CI_DRM_13432 -> Patchwork_121150v3
CI-20190529: 20190529
CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @ 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_121150v3/index.html
[-- Attachment #2: Type: text/html, Size: 50741 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier
2023-07-26 1:00 [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Vinay Belgaumkar
` (2 preceding siblings ...)
2023-07-28 1:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-07-28 15:36 ` Rodrigo Vivi
3 siblings, 0 replies; 9+ messages in thread
From: Rodrigo Vivi @ 2023-07-28 15:36 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: intel-gfx, dri-devel
On Tue, Jul 25, 2023 at 06:00:44PM -0700, Vinay Belgaumkar wrote:
> This should be done before the soft min/max frequencies are restored.
> When we disable the "Ignore efficient frequency" flag, GuC does not
> actually bring the requested freq down to RPn.
>
> Specifically, this scenario-
>
> - ignore efficient freq set to true
> - reduce min to RPn (from efficient)
> - suspend
> - resume (includes GuC load, restore soft min/max, restore efficient freq)
> - validate min freq has been resored to RPn
>
> This will fail if we didn't first restore(disable, in this case) efficient
> freq flag before setting the soft min frequency.
>
> v2: Bring the min freq down to RPn when we disable efficient freq (Rodrigo)
> Also made the change to set the min softlimit to RPn at init. Otherwise, we
> were storing RPe there.
Thanks
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Link: https://gitlab.freedesktop.org/drm/intel/-/issues/8736
> Fixes: 55f9720dbf23 ("drm/i915/guc/slpc: Provide sysfs for efficient freq")
> Fixes: 95ccf312a1e4 ("drm/i915/guc/slpc: Allow SLPC to use efficient frequency")
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
> drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 22 +++++++++++++--------
> 1 file changed, 14 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> index ee9f83af7cf6..477df260ae3a 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> @@ -470,12 +470,19 @@ int intel_guc_slpc_set_ignore_eff_freq(struct intel_guc_slpc *slpc, bool val)
> ret = slpc_set_param(slpc,
> SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> val);
> - if (ret)
> + if (ret) {
> guc_probe_error(slpc_to_guc(slpc), "Failed to set efficient freq(%d): %pe\n",
> val, ERR_PTR(ret));
> - else
> + } else {
> slpc->ignore_eff_freq = val;
>
> + /* Set min to RPn when we disable efficient freq */
> + if (val)
> + ret = slpc_set_param(slpc,
> + SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> + slpc->min_freq);
> + }
> +
> intel_runtime_pm_put(&i915->runtime_pm, wakeref);
> mutex_unlock(&slpc->lock);
> return ret;
> @@ -602,9 +609,8 @@ static int slpc_set_softlimits(struct intel_guc_slpc *slpc)
> return ret;
>
> if (!slpc->min_freq_softlimit) {
> - ret = intel_guc_slpc_get_min_freq(slpc, &slpc->min_freq_softlimit);
> - if (unlikely(ret))
> - return ret;
> + /* Min softlimit is initialized to RPn */
> + slpc->min_freq_softlimit = slpc->min_freq;
> slpc_to_gt(slpc)->defaults.min_freq = slpc->min_freq_softlimit;
> } else {
> return intel_guc_slpc_set_min_freq(slpc,
> @@ -755,6 +761,9 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
> return ret;
> }
>
> + /* Set cached value of ignore efficient freq */
> + intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
> +
> /* Revert SLPC min/max to softlimits if necessary */
> ret = slpc_set_softlimits(slpc);
> if (unlikely(ret)) {
> @@ -765,9 +774,6 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
> /* Set cached media freq ratio mode */
> intel_guc_slpc_set_media_ratio_mode(slpc, slpc->media_ratio_mode);
>
> - /* Set cached value of ignore efficient freq */
> - intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
> -
> return 0;
> }
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-07-28 1:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-08-02 0:41 ` Belgaumkar, Vinay
2023-08-11 0:22 ` Rodrigo Vivi
0 siblings, 1 reply; 9+ messages in thread
From: Belgaumkar, Vinay @ 2023-08-02 0:41 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 42411 bytes --]
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, July 27, 2023 6:59 PM
To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
Patch Details
Series:
drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
URL:
https://patchwork.freedesktop.org/series/121150/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
Summary
FAILURE
Serious unknown changes coming with Patchwork_121150v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_121150v3_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 -> 10)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_121150v3_full:
IGT changes
Possible regressions
* igt@sysfs_timeslice_duration@invalid:
* shard-mtlp: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html>
Does not seem related to this patch.
Thanks,
Vinay.
Known issues
Here are the changes found in Patchwork_121150v3_full that come from known issues:
IGT changes
Issues hit
* igt@drm_fdinfo@virtual-busy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>)
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#5325<https://gitlab.freedesktop.org/drm/intel/issues/5325>)
* igt@gem_ctx_isolation@preservation-s3@rcs0:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>)
* igt@gem_ctx_persistence@legacy-engines-queued:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +4 similar issues
* igt@gem_eio@in-flight-suspend:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
* igt@gem_eio@kms:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>)
* igt@gem_exec_await@wide-contexts:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html> (i915#5892<https://gitlab.freedesktop.org/drm/intel/issues/5892>)
* igt@gem_exec_capture@capture@bcs0-smem:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html> (i915#7941<https://gitlab.freedesktop.org/drm/intel/issues/7941>)
* igt@gem_exec_fair@basic-pace@rcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
* igt@gem_exec_fair@basic-throttle:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539>)
* igt@gem_exec_flush@basic-wb-rw-before-default:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>)
* igt@gem_exec_reloc@basic-cpu-wc-active:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 similar issue
* igt@gem_exec_reloc@basic-wc-read-active:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>)
* igt@gem_exec_schedule@preempt-queue-contexts:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_fenced_exec_thrash@no-spare-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
* igt@gem_lmem_swapping@smem-oom:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
* igt@gem_mmap@short-mmap:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>)
* igt@gem_mmap_gtt@basic-read-write:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
* igt@gem_readwrite@read-write:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +1 similar issue
* igt@gem_softpin@evict-snoop:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html> (i915#4885<https://gitlab.freedesktop.org/drm/intel/issues/4885>)
* igt@gem_userptr_blits@forbidden-operations:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/intel/issues/4880>)
* igt@gen9_exec_parse@basic-rejected-ctx-param:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>)
* igt@i915_pm_dc@dc6-dpms:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/intel/issues/3361>)
* igt@i915_pm_dc@dc9-dpms:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/intel/issues/4281>)
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> (i915#1937<https://gitlab.freedesktop.org/drm/intel/issues/1937>)
* igt@i915_pm_lpsp@screens-disabled:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html> (i915#1902<https://gitlab.freedesktop.org/drm/intel/issues/1902>)
* igt@i915_pm_rpm@basic-pci-d3-state:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html> (i915#7691<https://gitlab.freedesktop.org/drm/intel/issues/7691>)
* igt@i915_pm_rpm@dpms-lpsp:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>)
* igt@i915_pm_rpm@i2c:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html> (i915#8717<https://gitlab.freedesktop.org/drm/intel/issues/8717>)
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>)
* igt@kms_addfb_basic@basic-x-tiled-legacy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>)
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>)
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>)
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 similar issue
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/intel/issues/3638>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
* igt@kms_big_joiner@basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>)
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 similar issues
* igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 similar issues
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html> (i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 similar issues
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 similar issues
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 similar issue
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues
* igt@kms_content_protection@dp-mst-type-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
* igt@kms_content_protection@lic@pipe-a-dp-4:
* shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>)
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (i915#8248<https://gitlab.freedesktop.org/drm/intel/issues/8248>)
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
* igt@kms_dsc@dsc-with-output-formats:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>)
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
* shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>) +1 similar issue
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +3 similar issues
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +8 similar issues
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +8 similar issues
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +2 similar issues
* igt@kms_hdr@static-swap:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
* igt@kms_plane@pixel-format@pipe-b-planes:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html> (i915#1623<https://gitlab.freedesktop.org/drm/intel/issues/1623>)
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +15 similar issues
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 similar issues
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +278 similar issues
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 similar issues
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
* igt@kms_psr@dpms:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
* igt@kms_vblank@pipe-c-wait-busy-hang:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html> (i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>)
* igt@v3d/v3d_submit_cl@single-in-sync:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>)
* igt@v3d/v3d_submit_csd@job-perfmon:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues
* igt@vc4/vc4_tiling@get-bad-flags:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
* igt@vc4/vc4_tiling@set-bad-flags:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
Possible fixes
* igt@gem_ctx_exec@basic-nohangcheck:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html>
* {igt@gem_ctx_freq@sysfs@gt0}:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html> (i915#6786<https://gitlab.freedesktop.org/drm/intel/issues/6786>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html>
* igt@gem_ctx_isolation@preservation-s3@vecs0:
* shard-apl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html>
* igt@gem_eio@hibernate:
* shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391> / i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html>
* igt@gem_eio@unwedge-stress:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html>
* igt@gem_exec_capture@pi@vcs0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html>
* igt@gem_exec_capture@pi@vcs1:
* shard-mtlp: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html> (i915#8504<https://gitlab.freedesktop.org/drm/intel/issues/8504>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html>
* igt@gem_exec_fair@basic-pace-share@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html>
* igt@i915_module_load@reload-with-fault-injection:
* shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html> (i915#7061<https://gitlab.freedesktop.org/drm/intel/issues/7061> / i915#8617<https://gitlab.freedesktop.org/drm/intel/issues/8617>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html>
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +2 similar issues
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html>
* igt@i915_pm_rpm@modeset-lpsp-stress:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html>
* igt@i915_pm_rpm@modeset-non-lpsp:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html>
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> +2 similar issues
* igt@i915_pm_rpm@pm-caching:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html> +1 similar issue
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html>
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
* shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html>
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html>
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> +2 similar issues
* igt@perf_pmu@busy-double-start@vecs1:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html> +3 similar issues
Warnings
* igt@gem_exec_whisper@basic-contexts-forked-all:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8628<https://gitlab.freedesktop.org/drm/intel/issues/8628>)
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681>)
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>)
* igt@i915_pm_rpm@i2c:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391> / i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>)
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2017<https://gitlab.freedesktop.org/drm/intel/issues/2017> / i915#5954<https://gitlab.freedesktop.org/drm/intel/issues/5954>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
* igt@kms_fbcon_fbt@psr:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html> (i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4816<https://gitlab.freedesktop.org/drm/intel/issues/4816>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816<https://gitlab.freedesktop.org/drm/intel/issues/4816>)
* igt@kms_psr@sprite_plane_onoff:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078<https://gitlab.freedesktop.org/drm/intel/issues/4078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
* igt@sysfs_timeslice_duration@timeout@vecs0:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#8521<https://gitlab.freedesktop.org/drm/intel/issues/8521>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#6950<https://gitlab.freedesktop.org/drm/intel/issues/6950>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
* Linux: CI_DRM_13432 -> Patchwork_121150v3
CI-20190529: 20190529
CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
[-- Attachment #2: Type: text/html, Size: 84884 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-08-02 0:41 ` Belgaumkar, Vinay
@ 2023-08-11 0:22 ` Rodrigo Vivi
2023-08-11 17:54 ` Belgaumkar, Vinay
0 siblings, 1 reply; 9+ messages in thread
From: Rodrigo Vivi @ 2023-08-11 0:22 UTC (permalink / raw)
To: Belgaumkar, Vinay; +Cc: intel-gfx@lists.freedesktop.org
On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
>
>
>
>
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, July 27, 2023 6:59 PM
> To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
> Cc: intel-gfx@lists.freedesktop.org
> Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient
> freq earlier (rev3)
>
>
>
> Patch Details
>
> Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
> URL: [1]https://patchwork.freedesktop.org/series/121150/
> State: failure
> Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>
> CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with Patchwork_121150v3_full absolutely
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_121150v3_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 -> 10)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> Patchwork_121150v3_full:
>
> IGT changes
>
> Possible regressions
>
> • igt@sysfs_timeslice_duration@invalid:
>
> ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT
>
> Does not seem related to this patch.
But i915_selftests@live@workarounds seems to fail on every platform after I cherry
picked this patch to drm-intel-fixes:
http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?
<5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
<6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
<7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
<7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
<6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
<6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
<6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
<7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
<7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
<7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
<7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
<7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
<7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
<7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
<7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
<7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
<7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
<6> [314.584067] Verifying after rcs0 reset...
<7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
<6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
<6> [314.792928] Verifying after bcs0 reset...
<3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62
could you please help to understand what is going on here?
Thanks,
Rodrigo.
>
> Thanks,
>
> Vinay.
>
> Known issues
>
> Here are the changes found in Patchwork_121150v3_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> • igt@drm_fdinfo@virtual-busy:
>
> ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)
>
> • igt@gem_ccs@ctrl-surf-copy-new-ctx:
>
> ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)
>
> • igt@gem_ctx_isolation@preservation-s3@rcs0:
>
> ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)
>
> • igt@gem_ctx_persistence@legacy-engines-queued:
>
> ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4
> similar issues
>
> • igt@gem_eio@in-flight-suspend:
>
> ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)
>
> • igt@gem_eio@kms:
>
> ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)
>
> • igt@gem_exec_await@wide-contexts:
>
> ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)
>
> • igt@gem_exec_capture@capture@bcs0-smem:
>
> ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)
>
> • igt@gem_exec_fair@basic-pace@rcs0:
>
> ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)
>
> • igt@gem_exec_fair@basic-throttle:
>
> ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)
>
> • igt@gem_exec_flush@basic-wb-rw-before-default:
>
> ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)
>
> • igt@gem_exec_reloc@basic-cpu-wc-active:
>
> ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue
>
> • igt@gem_exec_reloc@basic-wc-read-active:
>
> ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)
>
> • igt@gem_exec_schedule@preempt-queue-contexts:
>
> ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)
>
> • igt@gem_fenced_exec_thrash@no-spare-fences:
>
> ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)
>
> • igt@gem_lmem_swapping@smem-oom:
>
> ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)
>
> • igt@gem_mmap@short-mmap:
>
> ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)
>
> • igt@gem_mmap_gtt@basic-read-write:
>
> ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)
>
> • igt@gem_mmap_gtt@cpuset-big-copy-xy:
>
> ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)
>
> • igt@gem_readwrite@read-write:
>
> ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)
>
> • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
>
> ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue
>
> • igt@gem_softpin@evict-snoop:
>
> ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)
>
> • igt@gem_userptr_blits@forbidden-operations:
>
> ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)
>
> • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>
> ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)
>
> • igt@gen9_exec_parse@basic-rejected-ctx-param:
>
> ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)
>
> • igt@i915_pm_dc@dc6-dpms:
>
> ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)
>
> • igt@i915_pm_dc@dc9-dpms:
>
> ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)
>
> • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>
> ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)
>
> • igt@i915_pm_lpsp@screens-disabled:
>
> ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)
>
> • igt@i915_pm_rpm@basic-pci-d3-state:
>
> ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)
>
> • igt@i915_pm_rpm@dpms-lpsp:
>
> ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue
>
> • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>
> ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)
>
> • igt@i915_pm_rpm@i2c:
>
> ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)
>
> • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>
> ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)
>
> • igt@kms_addfb_basic@basic-x-tiled-legacy:
>
> ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)
>
> • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
>
> ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues
>
> • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>
> ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues
>
> • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>
> ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)
>
> • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)
>
> • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue
>
> • igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>
> ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)
>
> • igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>
> ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)
>
> • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>
> ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)
>
> • igt@kms_big_joiner@basic:
>
> ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)
>
> • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
>
> ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues
>
> • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
>
> ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /
> [114]i915#6095) +2 similar issues
>
> • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>
> ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /
> [118]i915#5354 / [119]i915#6095)
>
> • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
>
> ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)
> +1 similar issue
>
> • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
>
> ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3
> similar issues
>
> • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
>
> ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues
>
> • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>
> ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues
>
> • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>
> ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue
>
> • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>
> ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues
>
> • igt@kms_content_protection@dp-mst-type-1:
>
> ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)
>
> • igt@kms_content_protection@lic@pipe-a-dp-4:
>
> ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)
>
> • igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>
> ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)
>
> • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
>
> ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)
>
> • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
>
> ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)
>
> • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)
>
> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)
>
> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)
>
> • igt@kms_dsc@dsc-with-output-formats:
>
> ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)
>
> • igt@kms_flip@2x-flip-vs-suspend-interruptible:
>
> ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)
>
> • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
>
> ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar
> issue
>
> • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
>
> ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)
>
> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
>
> ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues
>
> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>
> ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues
>
> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>
> ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues
>
> • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
>
> ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues
>
> • igt@kms_hdr@static-swap:
>
> ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)
>
> • igt@kms_plane@pixel-format@pipe-b-planes:
>
> ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)
>
> • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
>
> ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues
>
> • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
>
> ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues
>
> • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>
> ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues
>
> • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
>
> ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues
>
> • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
>
> ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar
> issues
>
> • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
>
> ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues
>
> • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>
> ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues
>
> • igt@kms_psr@dpms:
>
> ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)
>
> • igt@kms_vblank@pipe-c-wait-busy-hang:
>
> ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)
>
> • igt@v3d/v3d_submit_cl@single-in-sync:
>
> ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)
>
> • igt@v3d/v3d_submit_csd@job-perfmon:
>
> ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues
>
> • igt@vc4/vc4_tiling@get-bad-flags:
>
> ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)
>
> • igt@vc4/vc4_tiling@set-bad-flags:
>
> ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)
>
> Possible fixes
>
> • igt@gem_ctx_exec@basic-nohangcheck:
>
> ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS
>
> • {igt@gem_ctx_freq@sysfs@gt0}:
>
> ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS
>
> • igt@gem_ctx_isolation@preservation-s3@vecs0:
>
> ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS
>
> • igt@gem_eio@hibernate:
>
> ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /
> [214]i915#8213) -> [215]PASS
>
> • igt@gem_eio@unwedge-stress:
>
> ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS
>
> • igt@gem_exec_capture@pi@vcs0:
>
> ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS
>
> • igt@gem_exec_capture@pi@vcs1:
>
> ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS
>
> • igt@gem_exec_fair@basic-pace-share@rcs0:
>
> ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS
>
> • igt@i915_module_load@reload-with-fault-injection:
>
> ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->
> [231]PASS
>
> • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar
> issues
>
> • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>
> ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS
>
> • igt@i915_pm_rpm@modeset-lpsp-stress:
>
> ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS
>
> • igt@i915_pm_rpm@modeset-non-lpsp:
>
> ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS
>
> • igt@i915_pm_rpm@modeset-non-lpsp-stress:
>
> ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar
> issues
>
> • igt@i915_pm_rpm@pm-caching:
>
> ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar
> issue
>
> • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS
>
> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS
>
> • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>
> ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS
>
> • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
>
> ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS
>
> • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>
> ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS
>
> • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
>
> ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar
> issues
>
> • igt@perf_pmu@busy-double-start@vecs1:
>
> ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar
> issues
>
> Warnings
>
> • igt@gem_exec_whisper@basic-contexts-forked-all:
>
> ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT
> ([274]i915#8628)
>
> • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->
> [278]WARN ([279]i915#2681)
>
> • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>
> ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)
>
> • igt@i915_pm_rpm@i2c:
>
> ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN
> ([287]i915#4391 / [288]i915#4423)
>
> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->
> [292]FAIL ([293]i915#2346)
>
> • igt@kms_fbcon_fbt@psr:
>
> ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->
> [297]SKIP ([298]i915#3955)
>
> • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP
> ([303]i915#4816)
>
> • igt@kms_psr@sprite_plane_onoff:
>
> ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP
> ([308]i915#1072)
>
> • igt@sysfs_timeslice_duration@timeout@vecs0:
>
> ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT
> ([312]i915#6950)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> • Linux: CI_DRM_13432 -> Patchwork_121150v3
>
> CI-20190529: 20190529
> CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @
> [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @
> git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
> References
>
> Visible links
> 1. https://patchwork.freedesktop.org/series/121150/
> 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
> 3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
> 4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
> 5. https://gitlab.freedesktop.org/drm/intel/issues/8414
> 6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
> 7. https://gitlab.freedesktop.org/drm/intel/issues/5325
> 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> 9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> 10. https://gitlab.freedesktop.org/drm/intel/issues/180
> 11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
> 12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> 13. https://gitlab.freedesktop.org/drm/intel/issues/1099
> 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
> 15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
> 16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> 17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
> 18. https://gitlab.freedesktop.org/drm/intel/issues/5784
> 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
> 20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
> 21. https://gitlab.freedesktop.org/drm/intel/issues/5892
> 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
> 23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
> 24. https://gitlab.freedesktop.org/drm/intel/issues/7941
> 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
> 26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
> 27. https://gitlab.freedesktop.org/drm/intel/issues/2842
> 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
> 29. https://gitlab.freedesktop.org/drm/intel/issues/3539
> 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
> 31. https://gitlab.freedesktop.org/drm/intel/issues/3539
> 32. https://gitlab.freedesktop.org/drm/intel/issues/4852
> 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
> 34. https://gitlab.freedesktop.org/drm/intel/issues/3281
> 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
> 36. https://gitlab.freedesktop.org/drm/intel/issues/3281
> 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
> 38. https://gitlab.freedesktop.org/drm/intel/issues/4812
> 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
> 40. https://gitlab.freedesktop.org/drm/intel/issues/4860
> 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
> 42. https://gitlab.freedesktop.org/drm/intel/issues/4613
> 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
> 44. https://gitlab.freedesktop.org/drm/intel/issues/4083
> 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
> 46. https://gitlab.freedesktop.org/drm/intel/issues/4077
> 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 48. https://gitlab.freedesktop.org/drm/intel/issues/4077
> 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
> 50. https://gitlab.freedesktop.org/drm/intel/issues/3282
> 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
> 52. https://gitlab.freedesktop.org/drm/intel/issues/8428
> 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
> 54. https://gitlab.freedesktop.org/drm/intel/issues/4885
> 55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
> 56. https://gitlab.freedesktop.org/drm/intel/issues/3282
> 57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> 58. https://gitlab.freedesktop.org/drm/intel/issues/3297
> 59. https://gitlab.freedesktop.org/drm/intel/issues/4880
> 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
> 61. https://gitlab.freedesktop.org/drm/intel/issues/2527
> 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
> 63. https://gitlab.freedesktop.org/drm/intel/issues/3361
> 64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
> 65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
> 66. https://gitlab.freedesktop.org/drm/intel/issues/4281
> 67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> 69. https://gitlab.freedesktop.org/drm/intel/issues/1937
> 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
> 71. https://gitlab.freedesktop.org/drm/intel/issues/1902
> 72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
> 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
> 74. https://gitlab.freedesktop.org/drm/intel/issues/7691
> 75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
> 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
> 77. https://gitlab.freedesktop.org/drm/intel/issues/1397
> 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> 80. https://gitlab.freedesktop.org/drm/intel/issues/7940
> 81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
> 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
> 83. https://gitlab.freedesktop.org/drm/intel/issues/8717
> 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 85. https://gitlab.freedesktop.org/drm/intel/issues/5190
> 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> 87. https://gitlab.freedesktop.org/drm/intel/issues/4212
> 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
> 89. https://gitlab.freedesktop.org/drm/intel/issues/8247
> 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> 91. https://gitlab.freedesktop.org/drm/intel/issues/8247
> 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> 94. https://gitlab.freedesktop.org/drm/intel/issues/1769
> 95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 97. https://gitlab.freedesktop.org/drm/intel/issues/5138
> 98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 100. https://gitlab.freedesktop.org/drm/intel/issues/3743
> 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
> 102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
> 103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
> 104. https://gitlab.freedesktop.org/drm/intel/issues/3638
> 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
> 107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
> 108. https://gitlab.freedesktop.org/drm/intel/issues/2705
> 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
> 110. https://gitlab.freedesktop.org/drm/intel/issues/6095
> 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
> 112. https://gitlab.freedesktop.org/drm/intel/issues/3689
> 113. https://gitlab.freedesktop.org/drm/intel/issues/5354
> 114. https://gitlab.freedesktop.org/drm/intel/issues/6095
> 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
> 116. https://gitlab.freedesktop.org/drm/intel/issues/3689
> 117. https://gitlab.freedesktop.org/drm/intel/issues/3886
> 118. https://gitlab.freedesktop.org/drm/intel/issues/5354
> 119. https://gitlab.freedesktop.org/drm/intel/issues/6095
> 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
> 121. https://gitlab.freedesktop.org/drm/intel/issues/3886
> 122. https://gitlab.freedesktop.org/drm/intel/issues/6095
> 123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
> 124. https://gitlab.freedesktop.org/drm/intel/issues/5354
> 125. https://gitlab.freedesktop.org/drm/intel/issues/6095
> 126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
> 127. https://gitlab.freedesktop.org/drm/intel/issues/7213
> 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> 129. https://gitlab.freedesktop.org/drm/intel/issues/4087
> 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
> 131. https://gitlab.freedesktop.org/drm/intel/issues/7828
> 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
> 133. https://gitlab.freedesktop.org/drm/intel/issues/7828
> 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
> 135. https://gitlab.freedesktop.org/drm/intel/issues/3299
> 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
> 137. https://gitlab.freedesktop.org/drm/intel/issues/7173
> 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
> 139. https://gitlab.freedesktop.org/drm/intel/issues/3555
> 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
> 141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> 142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> 144. https://gitlab.freedesktop.org/drm/intel/issues/8248
> 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> 146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> 147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
> 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 149. https://gitlab.freedesktop.org/drm/intel/issues/2346
> 150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 152. https://gitlab.freedesktop.org/drm/intel/issues/2346
> 153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
> 154. https://gitlab.freedesktop.org/drm/intel/issues/3555
> 155. https://gitlab.freedesktop.org/drm/intel/issues/3840
> 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
> 157. https://gitlab.freedesktop.org/drm/intel/issues/3637
> 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
> 159. https://gitlab.freedesktop.org/drm/intel/issues/8841
> 160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
> 161. https://gitlab.freedesktop.org/drm/intel/issues/2672
> 162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
> 163. https://gitlab.freedesktop.org/drm/intel/issues/8708
> 164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> 165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
> 166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
> 167. https://gitlab.freedesktop.org/drm/intel/issues/1825
> 168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
> 169. https://gitlab.freedesktop.org/drm/intel/issues/3458
> 170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
> 171. https://gitlab.freedesktop.org/drm/intel/issues/3555
> 172. https://gitlab.freedesktop.org/drm/intel/issues/8228
> 173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
> 174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
> 175. https://gitlab.freedesktop.org/drm/intel/issues/1623
> 176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
> 177. https://gitlab.freedesktop.org/drm/intel/issues/5176
> 178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
> 179. https://gitlab.freedesktop.org/drm/intel/issues/5176
> 180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
> 181. https://gitlab.freedesktop.org/drm/intel/issues/5235
> 182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
> 183. https://gitlab.freedesktop.org/drm/intel/issues/5235
> 184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
> 185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> 186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
> 187. https://gitlab.freedesktop.org/drm/intel/issues/5235
> 188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
> 189. https://gitlab.freedesktop.org/drm/intel/issues/5235
> 190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
> 191. https://gitlab.freedesktop.org/drm/intel/issues/1072
> 192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
> 193. https://gitlab.freedesktop.org/drm/intel/issues/6768
> 194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
> 195. https://gitlab.freedesktop.org/drm/intel/issues/2575
> 196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
> 197. https://gitlab.freedesktop.org/drm/intel/issues/2575
> 198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
> 199. https://gitlab.freedesktop.org/drm/intel/issues/7711
> 200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
> 201. https://gitlab.freedesktop.org/drm/intel/issues/7711
> 202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
> 203. https://gitlab.freedesktop.org/drm/intel/issues/6268
> 204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
> 205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
> 206. https://gitlab.freedesktop.org/drm/intel/issues/6786
> 207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
> 208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> 209. https://gitlab.freedesktop.org/drm/intel/issues/180
> 210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> 211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
> 212. https://gitlab.freedesktop.org/drm/intel/issues/4391
> 213. https://gitlab.freedesktop.org/drm/intel/issues/7975
> 214. https://gitlab.freedesktop.org/drm/intel/issues/8213
> 215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
> 216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
> 217. https://gitlab.freedesktop.org/drm/intel/issues/5784
> 218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
> 219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
> 220. https://gitlab.freedesktop.org/drm/intel/issues/4475
> 221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
> 222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
> 223. https://gitlab.freedesktop.org/drm/intel/issues/8504
> 224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
> 225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 226. https://gitlab.freedesktop.org/drm/intel/issues/2842
> 227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
> 229. https://gitlab.freedesktop.org/drm/intel/issues/7061
> 230. https://gitlab.freedesktop.org/drm/intel/issues/8617
> 231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
> 232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> 233. https://gitlab.freedesktop.org/drm/intel/issues/3591
> 234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> 235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> 236. https://gitlab.freedesktop.org/drm/intel/issues/7940
> 237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> 238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
> 239. https://gitlab.freedesktop.org/drm/intel/issues/1397
> 240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
> 241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
> 242. https://gitlab.freedesktop.org/drm/intel/issues/1397
> 243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
> 244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 245. https://gitlab.freedesktop.org/drm/intel/issues/1397
> 246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
> 248. https://gitlab.freedesktop.org/drm/intel/issues/7940
> 249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
> 250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> 251. https://gitlab.freedesktop.org/drm/intel/issues/3743
> 252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> 253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 254. https://gitlab.freedesktop.org/drm/intel/issues/2346
> 255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> 257. https://gitlab.freedesktop.org/drm/intel/issues/2122
> 258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> 259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> 260. https://gitlab.freedesktop.org/drm/intel/issues/79
> 261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> 262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> 263. https://gitlab.freedesktop.org/drm/intel/issues/6880
> 264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> 265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> 266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> 267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> 268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
> 269. https://gitlab.freedesktop.org/drm/intel/issues/4349
> 270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
> 271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
> 272. https://gitlab.freedesktop.org/drm/intel/issues/8131
> 273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
> 274. https://gitlab.freedesktop.org/drm/intel/issues/8628
> 275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> 276. https://gitlab.freedesktop.org/drm/intel/issues/2681
> 277. https://gitlab.freedesktop.org/drm/intel/issues/3591
> 278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> 279. https://gitlab.freedesktop.org/drm/intel/issues/2681
> 280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> 281. https://gitlab.freedesktop.org/drm/intel/issues/1397
> 282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> 283. https://gitlab.freedesktop.org/drm/intel/issues/7940
> 284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
> 285. https://gitlab.freedesktop.org/drm/intel/issues/4391
> 286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
> 287. https://gitlab.freedesktop.org/drm/intel/issues/4391
> 288. https://gitlab.freedesktop.org/drm/intel/issues/4423
> 289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 290. https://gitlab.freedesktop.org/drm/intel/issues/2017
> 291. https://gitlab.freedesktop.org/drm/intel/issues/5954
> 292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> 293. https://gitlab.freedesktop.org/drm/intel/issues/2346
> 294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
> 295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
> 296. https://gitlab.freedesktop.org/drm/intel/issues/3955
> 297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
> 298. https://gitlab.freedesktop.org/drm/intel/issues/3955
> 299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 300. https://gitlab.freedesktop.org/drm/intel/issues/4070
> 301. https://gitlab.freedesktop.org/drm/intel/issues/4816
> 302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> 303. https://gitlab.freedesktop.org/drm/intel/issues/4816
> 304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
> 305. https://gitlab.freedesktop.org/drm/intel/issues/1072
> 306. https://gitlab.freedesktop.org/drm/intel/issues/4078
> 307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
> 308. https://gitlab.freedesktop.org/drm/intel/issues/1072
> 309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
> 310. https://gitlab.freedesktop.org/drm/intel/issues/8521
> 311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
> 312. https://gitlab.freedesktop.org/drm/intel/issues/6950
> 313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-08-11 0:22 ` Rodrigo Vivi
@ 2023-08-11 17:54 ` Belgaumkar, Vinay
2023-08-14 16:02 ` Rodrigo Vivi
0 siblings, 1 reply; 9+ messages in thread
From: Belgaumkar, Vinay @ 2023-08-11 17:54 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx@lists.freedesktop.org
On 8/10/2023 5:22 PM, Rodrigo Vivi wrote:
> On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
>>
>>
>>
>>
>> From: Patchwork <patchwork@emeril.freedesktop.org>
>> Sent: Thursday, July 27, 2023 6:59 PM
>> To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
>> Cc: intel-gfx@lists.freedesktop.org
>> Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient
>> freq earlier (rev3)
>>
>>
>>
>> Patch Details
>>
>> Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
>> URL: [1]https://patchwork.freedesktop.org/series/121150/
>> State: failure
>> Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>>
>> CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
>>
>> Summary
>>
>> FAILURE
>>
>> Serious unknown changes coming with Patchwork_121150v3_full absolutely
>> need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in Patchwork_121150v3_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 -> 10)
>>
>> No changes in participating hosts
>>
>> Possible new issues
>>
>> Here are the unknown changes that may have been introduced in
>> Patchwork_121150v3_full:
>>
>> IGT changes
>>
>> Possible regressions
>>
>> • igt@sysfs_timeslice_duration@invalid:
>>
>> ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT
>>
>> Does not seem related to this patch.
> But i915_selftests@live@workarounds seems to fail on every platform after I cherry
> picked this patch to drm-intel-fixes:
>
> http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?
>
> <5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
> <6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
> <7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
> <7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
> <6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
> <6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
> <6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
> <7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
> <7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
> <7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
> <7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
> <7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
> <7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
> <7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
> <7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
> <7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
> <7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
> <6> [314.584067] Verifying after rcs0 reset...
> <7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
> <6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
> <6> [314.792928] Verifying after bcs0 reset...
> <3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62
>
> could you please help to understand what is going on here?
Looks like this is a known bug and has been failing for months -
https://gitlab.freedesktop.org/drm/intel/-/issues/6763
Thanks,
Vinay.
>
> Thanks,
> Rodrigo.
>
>>
>> Thanks,
>>
>> Vinay.
>>
>> Known issues
>>
>> Here are the changes found in Patchwork_121150v3_full that come from known
>> issues:
>>
>> IGT changes
>>
>> Issues hit
>>
>> • igt@drm_fdinfo@virtual-busy:
>>
>> ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)
>>
>> • igt@gem_ccs@ctrl-surf-copy-new-ctx:
>>
>> ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)
>>
>> • igt@gem_ctx_isolation@preservation-s3@rcs0:
>>
>> ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)
>>
>> • igt@gem_ctx_persistence@legacy-engines-queued:
>>
>> ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4
>> similar issues
>>
>> • igt@gem_eio@in-flight-suspend:
>>
>> ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)
>>
>> • igt@gem_eio@kms:
>>
>> ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)
>>
>> • igt@gem_exec_await@wide-contexts:
>>
>> ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)
>>
>> • igt@gem_exec_capture@capture@bcs0-smem:
>>
>> ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)
>>
>> • igt@gem_exec_fair@basic-pace@rcs0:
>>
>> ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)
>>
>> • igt@gem_exec_fair@basic-throttle:
>>
>> ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)
>>
>> • igt@gem_exec_flush@basic-wb-rw-before-default:
>>
>> ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)
>>
>> • igt@gem_exec_reloc@basic-cpu-wc-active:
>>
>> ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue
>>
>> • igt@gem_exec_reloc@basic-wc-read-active:
>>
>> ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)
>>
>> • igt@gem_exec_schedule@preempt-queue-contexts:
>>
>> ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)
>>
>> • igt@gem_fenced_exec_thrash@no-spare-fences:
>>
>> ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)
>>
>> • igt@gem_lmem_swapping@smem-oom:
>>
>> ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)
>>
>> • igt@gem_mmap@short-mmap:
>>
>> ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)
>>
>> • igt@gem_mmap_gtt@basic-read-write:
>>
>> ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)
>>
>> • igt@gem_mmap_gtt@cpuset-big-copy-xy:
>>
>> ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)
>>
>> • igt@gem_readwrite@read-write:
>>
>> ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)
>>
>> • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
>>
>> ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue
>>
>> • igt@gem_softpin@evict-snoop:
>>
>> ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)
>>
>> • igt@gem_userptr_blits@forbidden-operations:
>>
>> ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)
>>
>> • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>>
>> ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)
>>
>> • igt@gen9_exec_parse@basic-rejected-ctx-param:
>>
>> ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)
>>
>> • igt@i915_pm_dc@dc6-dpms:
>>
>> ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)
>>
>> • igt@i915_pm_dc@dc9-dpms:
>>
>> ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)
>>
>> • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>>
>> ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)
>>
>> • igt@i915_pm_lpsp@screens-disabled:
>>
>> ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)
>>
>> • igt@i915_pm_rpm@basic-pci-d3-state:
>>
>> ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)
>>
>> • igt@i915_pm_rpm@dpms-lpsp:
>>
>> ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue
>>
>> • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>>
>> ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)
>>
>> • igt@i915_pm_rpm@i2c:
>>
>> ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)
>>
>> • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>>
>> ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)
>>
>> • igt@kms_addfb_basic@basic-x-tiled-legacy:
>>
>> ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)
>>
>> • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
>>
>> ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues
>>
>> • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>>
>> ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues
>>
>> • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>>
>> ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)
>>
>> • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>>
>> ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)
>>
>> • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>>
>> ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue
>>
>> • igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>>
>> ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)
>>
>> • igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>>
>> ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)
>>
>> • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>>
>> ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)
>>
>> • igt@kms_big_joiner@basic:
>>
>> ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)
>>
>> • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
>>
>> ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues
>>
>> • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
>>
>> ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /
>> [114]i915#6095) +2 similar issues
>>
>> • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>
>> ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /
>> [118]i915#5354 / [119]i915#6095)
>>
>> • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
>>
>> ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)
>> +1 similar issue
>>
>> • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
>>
>> ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3
>> similar issues
>>
>> • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
>>
>> ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues
>>
>> • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>>
>> ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues
>>
>> • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>>
>> ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue
>>
>> • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>>
>> ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues
>>
>> • igt@kms_content_protection@dp-mst-type-1:
>>
>> ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)
>>
>> • igt@kms_content_protection@lic@pipe-a-dp-4:
>>
>> ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)
>>
>> • igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>>
>> ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)
>>
>> • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
>>
>> ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)
>>
>> • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
>>
>> ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)
>>
>> • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>>
>> ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)
>>
>> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>>
>> ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)
>>
>> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>>
>> ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)
>>
>> • igt@kms_dsc@dsc-with-output-formats:
>>
>> ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)
>>
>> • igt@kms_flip@2x-flip-vs-suspend-interruptible:
>>
>> ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)
>>
>> • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
>>
>> ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar
>> issue
>>
>> • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
>>
>> ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)
>>
>> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
>>
>> ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues
>>
>> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>>
>> ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues
>>
>> • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>>
>> ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues
>>
>> • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
>>
>> ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues
>>
>> • igt@kms_hdr@static-swap:
>>
>> ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)
>>
>> • igt@kms_plane@pixel-format@pipe-b-planes:
>>
>> ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)
>>
>> • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
>>
>> ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues
>>
>> • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
>>
>> ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues
>>
>> • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>>
>> ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues
>>
>> • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
>>
>> ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues
>>
>> • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
>>
>> ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar
>> issues
>>
>> • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
>>
>> ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues
>>
>> • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>>
>> ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues
>>
>> • igt@kms_psr@dpms:
>>
>> ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)
>>
>> • igt@kms_vblank@pipe-c-wait-busy-hang:
>>
>> ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)
>>
>> • igt@v3d/v3d_submit_cl@single-in-sync:
>>
>> ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)
>>
>> • igt@v3d/v3d_submit_csd@job-perfmon:
>>
>> ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues
>>
>> • igt@vc4/vc4_tiling@get-bad-flags:
>>
>> ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)
>>
>> • igt@vc4/vc4_tiling@set-bad-flags:
>>
>> ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)
>>
>> Possible fixes
>>
>> • igt@gem_ctx_exec@basic-nohangcheck:
>>
>> ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS
>>
>> • {igt@gem_ctx_freq@sysfs@gt0}:
>>
>> ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS
>>
>> • igt@gem_ctx_isolation@preservation-s3@vecs0:
>>
>> ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS
>>
>> • igt@gem_eio@hibernate:
>>
>> ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /
>> [214]i915#8213) -> [215]PASS
>>
>> • igt@gem_eio@unwedge-stress:
>>
>> ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS
>>
>> • igt@gem_exec_capture@pi@vcs0:
>>
>> ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS
>>
>> • igt@gem_exec_capture@pi@vcs1:
>>
>> ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS
>>
>> • igt@gem_exec_fair@basic-pace-share@rcs0:
>>
>> ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS
>>
>> • igt@i915_module_load@reload-with-fault-injection:
>>
>> ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->
>> [231]PASS
>>
>> • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>>
>> ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar
>> issues
>>
>> • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>>
>> ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS
>>
>> • igt@i915_pm_rpm@modeset-lpsp-stress:
>>
>> ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS
>>
>> • igt@i915_pm_rpm@modeset-non-lpsp:
>>
>> ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS
>>
>> • igt@i915_pm_rpm@modeset-non-lpsp-stress:
>>
>> ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar
>> issues
>>
>> • igt@i915_pm_rpm@pm-caching:
>>
>> ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar
>> issue
>>
>> • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>>
>> ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS
>>
>> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>>
>> ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS
>>
>> • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>>
>> ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS
>>
>> • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
>>
>> ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS
>>
>> • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>>
>> ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS
>>
>> • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
>>
>> ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar
>> issues
>>
>> • igt@perf_pmu@busy-double-start@vecs1:
>>
>> ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar
>> issues
>>
>> Warnings
>>
>> • igt@gem_exec_whisper@basic-contexts-forked-all:
>>
>> ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT
>> ([274]i915#8628)
>>
>> • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>>
>> ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->
>> [278]WARN ([279]i915#2681)
>>
>> • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>>
>> ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)
>>
>> • igt@i915_pm_rpm@i2c:
>>
>> ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN
>> ([287]i915#4391 / [288]i915#4423)
>>
>> • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>>
>> ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->
>> [292]FAIL ([293]i915#2346)
>>
>> • igt@kms_fbcon_fbt@psr:
>>
>> ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->
>> [297]SKIP ([298]i915#3955)
>>
>> • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>>
>> ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP
>> ([303]i915#4816)
>>
>> • igt@kms_psr@sprite_plane_onoff:
>>
>> ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP
>> ([308]i915#1072)
>>
>> • igt@sysfs_timeslice_duration@timeout@vecs0:
>>
>> ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT
>> ([312]i915#6950)
>>
>> {name}: This element is suppressed. This means it is ignored when
>> computing
>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>> Build changes
>>
>> • Linux: CI_DRM_13432 -> Patchwork_121150v3
>>
>> CI-20190529: 20190529
>> CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @
>> [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>> git://anongit.freedesktop.org/piglit
>>
>> References
>>
>> Visible links
>> 1. https://patchwork.freedesktop.org/series/121150/
>> 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>> 3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
>> 4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
>> 5. https://gitlab.freedesktop.org/drm/intel/issues/8414
>> 6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>> 7. https://gitlab.freedesktop.org/drm/intel/issues/5325
>> 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>> 9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>> 10. https://gitlab.freedesktop.org/drm/intel/issues/180
>> 11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
>> 12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> 13. https://gitlab.freedesktop.org/drm/intel/issues/1099
>> 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
>> 15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
>> 16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> 17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
>> 18. https://gitlab.freedesktop.org/drm/intel/issues/5784
>> 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
>> 20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
>> 21. https://gitlab.freedesktop.org/drm/intel/issues/5892
>> 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
>> 23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
>> 24. https://gitlab.freedesktop.org/drm/intel/issues/7941
>> 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
>> 26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
>> 27. https://gitlab.freedesktop.org/drm/intel/issues/2842
>> 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
>> 29. https://gitlab.freedesktop.org/drm/intel/issues/3539
>> 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
>> 31. https://gitlab.freedesktop.org/drm/intel/issues/3539
>> 32. https://gitlab.freedesktop.org/drm/intel/issues/4852
>> 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
>> 34. https://gitlab.freedesktop.org/drm/intel/issues/3281
>> 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
>> 36. https://gitlab.freedesktop.org/drm/intel/issues/3281
>> 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
>> 38. https://gitlab.freedesktop.org/drm/intel/issues/4812
>> 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
>> 40. https://gitlab.freedesktop.org/drm/intel/issues/4860
>> 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
>> 42. https://gitlab.freedesktop.org/drm/intel/issues/4613
>> 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
>> 44. https://gitlab.freedesktop.org/drm/intel/issues/4083
>> 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
>> 46. https://gitlab.freedesktop.org/drm/intel/issues/4077
>> 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>> 48. https://gitlab.freedesktop.org/drm/intel/issues/4077
>> 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
>> 50. https://gitlab.freedesktop.org/drm/intel/issues/3282
>> 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
>> 52. https://gitlab.freedesktop.org/drm/intel/issues/8428
>> 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
>> 54. https://gitlab.freedesktop.org/drm/intel/issues/4885
>> 55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
>> 56. https://gitlab.freedesktop.org/drm/intel/issues/3282
>> 57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>> 58. https://gitlab.freedesktop.org/drm/intel/issues/3297
>> 59. https://gitlab.freedesktop.org/drm/intel/issues/4880
>> 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
>> 61. https://gitlab.freedesktop.org/drm/intel/issues/2527
>> 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
>> 63. https://gitlab.freedesktop.org/drm/intel/issues/3361
>> 64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
>> 65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
>> 66. https://gitlab.freedesktop.org/drm/intel/issues/4281
>> 67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>> 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>> 69. https://gitlab.freedesktop.org/drm/intel/issues/1937
>> 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
>> 71. https://gitlab.freedesktop.org/drm/intel/issues/1902
>> 72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
>> 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
>> 74. https://gitlab.freedesktop.org/drm/intel/issues/7691
>> 75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
>> 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
>> 77. https://gitlab.freedesktop.org/drm/intel/issues/1397
>> 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>> 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>> 80. https://gitlab.freedesktop.org/drm/intel/issues/7940
>> 81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
>> 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
>> 83. https://gitlab.freedesktop.org/drm/intel/issues/8717
>> 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>> 85. https://gitlab.freedesktop.org/drm/intel/issues/5190
>> 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
>> 87. https://gitlab.freedesktop.org/drm/intel/issues/4212
>> 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
>> 89. https://gitlab.freedesktop.org/drm/intel/issues/8247
>> 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
>> 91. https://gitlab.freedesktop.org/drm/intel/issues/8247
>> 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>> 93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> 94. https://gitlab.freedesktop.org/drm/intel/issues/1769
>> 95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>> 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>> 97. https://gitlab.freedesktop.org/drm/intel/issues/5138
>> 98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>> 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>> 100. https://gitlab.freedesktop.org/drm/intel/issues/3743
>> 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>> 102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
>> 103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
>> 104. https://gitlab.freedesktop.org/drm/intel/issues/3638
>> 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>> 106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
>> 107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
>> 108. https://gitlab.freedesktop.org/drm/intel/issues/2705
>> 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
>> 110. https://gitlab.freedesktop.org/drm/intel/issues/6095
>> 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
>> 112. https://gitlab.freedesktop.org/drm/intel/issues/3689
>> 113. https://gitlab.freedesktop.org/drm/intel/issues/5354
>> 114. https://gitlab.freedesktop.org/drm/intel/issues/6095
>> 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
>> 116. https://gitlab.freedesktop.org/drm/intel/issues/3689
>> 117. https://gitlab.freedesktop.org/drm/intel/issues/3886
>> 118. https://gitlab.freedesktop.org/drm/intel/issues/5354
>> 119. https://gitlab.freedesktop.org/drm/intel/issues/6095
>> 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
>> 121. https://gitlab.freedesktop.org/drm/intel/issues/3886
>> 122. https://gitlab.freedesktop.org/drm/intel/issues/6095
>> 123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
>> 124. https://gitlab.freedesktop.org/drm/intel/issues/5354
>> 125. https://gitlab.freedesktop.org/drm/intel/issues/6095
>> 126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
>> 127. https://gitlab.freedesktop.org/drm/intel/issues/7213
>> 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
>> 129. https://gitlab.freedesktop.org/drm/intel/issues/4087
>> 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
>> 131. https://gitlab.freedesktop.org/drm/intel/issues/7828
>> 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>> 133. https://gitlab.freedesktop.org/drm/intel/issues/7828
>> 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
>> 135. https://gitlab.freedesktop.org/drm/intel/issues/3299
>> 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
>> 137. https://gitlab.freedesktop.org/drm/intel/issues/7173
>> 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
>> 139. https://gitlab.freedesktop.org/drm/intel/issues/3555
>> 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
>> 141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> 142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>> 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>> 144. https://gitlab.freedesktop.org/drm/intel/issues/8248
>> 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
>> 146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> 147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
>> 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>> 149. https://gitlab.freedesktop.org/drm/intel/issues/2346
>> 150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>> 151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>> 152. https://gitlab.freedesktop.org/drm/intel/issues/2346
>> 153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
>> 154. https://gitlab.freedesktop.org/drm/intel/issues/3555
>> 155. https://gitlab.freedesktop.org/drm/intel/issues/3840
>> 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
>> 157. https://gitlab.freedesktop.org/drm/intel/issues/3637
>> 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
>> 159. https://gitlab.freedesktop.org/drm/intel/issues/8841
>> 160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
>> 161. https://gitlab.freedesktop.org/drm/intel/issues/2672
>> 162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
>> 163. https://gitlab.freedesktop.org/drm/intel/issues/8708
>> 164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>> 165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>> 166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
>> 167. https://gitlab.freedesktop.org/drm/intel/issues/1825
>> 168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
>> 169. https://gitlab.freedesktop.org/drm/intel/issues/3458
>> 170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
>> 171. https://gitlab.freedesktop.org/drm/intel/issues/3555
>> 172. https://gitlab.freedesktop.org/drm/intel/issues/8228
>> 173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
>> 174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
>> 175. https://gitlab.freedesktop.org/drm/intel/issues/1623
>> 176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
>> 177. https://gitlab.freedesktop.org/drm/intel/issues/5176
>> 178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
>> 179. https://gitlab.freedesktop.org/drm/intel/issues/5176
>> 180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
>> 181. https://gitlab.freedesktop.org/drm/intel/issues/5235
>> 182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
>> 183. https://gitlab.freedesktop.org/drm/intel/issues/5235
>> 184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
>> 185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> 186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>> 187. https://gitlab.freedesktop.org/drm/intel/issues/5235
>> 188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
>> 189. https://gitlab.freedesktop.org/drm/intel/issues/5235
>> 190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
>> 191. https://gitlab.freedesktop.org/drm/intel/issues/1072
>> 192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
>> 193. https://gitlab.freedesktop.org/drm/intel/issues/6768
>> 194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
>> 195. https://gitlab.freedesktop.org/drm/intel/issues/2575
>> 196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
>> 197. https://gitlab.freedesktop.org/drm/intel/issues/2575
>> 198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
>> 199. https://gitlab.freedesktop.org/drm/intel/issues/7711
>> 200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
>> 201. https://gitlab.freedesktop.org/drm/intel/issues/7711
>> 202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
>> 203. https://gitlab.freedesktop.org/drm/intel/issues/6268
>> 204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
>> 205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
>> 206. https://gitlab.freedesktop.org/drm/intel/issues/6786
>> 207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
>> 208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>> 209. https://gitlab.freedesktop.org/drm/intel/issues/180
>> 210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>> 211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
>> 212. https://gitlab.freedesktop.org/drm/intel/issues/4391
>> 213. https://gitlab.freedesktop.org/drm/intel/issues/7975
>> 214. https://gitlab.freedesktop.org/drm/intel/issues/8213
>> 215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
>> 216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
>> 217. https://gitlab.freedesktop.org/drm/intel/issues/5784
>> 218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
>> 219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
>> 220. https://gitlab.freedesktop.org/drm/intel/issues/4475
>> 221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
>> 222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
>> 223. https://gitlab.freedesktop.org/drm/intel/issues/8504
>> 224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
>> 225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>> 226. https://gitlab.freedesktop.org/drm/intel/issues/2842
>> 227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
>> 228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
>> 229. https://gitlab.freedesktop.org/drm/intel/issues/7061
>> 230. https://gitlab.freedesktop.org/drm/intel/issues/8617
>> 231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
>> 232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>> 233. https://gitlab.freedesktop.org/drm/intel/issues/3591
>> 234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>> 235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>> 236. https://gitlab.freedesktop.org/drm/intel/issues/7940
>> 237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>> 238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
>> 239. https://gitlab.freedesktop.org/drm/intel/issues/1397
>> 240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
>> 241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
>> 242. https://gitlab.freedesktop.org/drm/intel/issues/1397
>> 243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
>> 244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>> 245. https://gitlab.freedesktop.org/drm/intel/issues/1397
>> 246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>> 247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
>> 248. https://gitlab.freedesktop.org/drm/intel/issues/7940
>> 249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
>> 250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>> 251. https://gitlab.freedesktop.org/drm/intel/issues/3743
>> 252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>> 253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>> 254. https://gitlab.freedesktop.org/drm/intel/issues/2346
>> 255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>> 256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>> 257. https://gitlab.freedesktop.org/drm/intel/issues/2122
>> 258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>> 259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>> 260. https://gitlab.freedesktop.org/drm/intel/issues/79
>> 261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>> 262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>> 263. https://gitlab.freedesktop.org/drm/intel/issues/6880
>> 264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>> 265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>> 266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> 267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>> 268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
>> 269. https://gitlab.freedesktop.org/drm/intel/issues/4349
>> 270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
>> 271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
>> 272. https://gitlab.freedesktop.org/drm/intel/issues/8131
>> 273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
>> 274. https://gitlab.freedesktop.org/drm/intel/issues/8628
>> 275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>> 276. https://gitlab.freedesktop.org/drm/intel/issues/2681
>> 277. https://gitlab.freedesktop.org/drm/intel/issues/3591
>> 278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>> 279. https://gitlab.freedesktop.org/drm/intel/issues/2681
>> 280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>> 281. https://gitlab.freedesktop.org/drm/intel/issues/1397
>> 282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>> 283. https://gitlab.freedesktop.org/drm/intel/issues/7940
>> 284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
>> 285. https://gitlab.freedesktop.org/drm/intel/issues/4391
>> 286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
>> 287. https://gitlab.freedesktop.org/drm/intel/issues/4391
>> 288. https://gitlab.freedesktop.org/drm/intel/issues/4423
>> 289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>> 290. https://gitlab.freedesktop.org/drm/intel/issues/2017
>> 291. https://gitlab.freedesktop.org/drm/intel/issues/5954
>> 292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>> 293. https://gitlab.freedesktop.org/drm/intel/issues/2346
>> 294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
>> 295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
>> 296. https://gitlab.freedesktop.org/drm/intel/issues/3955
>> 297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
>> 298. https://gitlab.freedesktop.org/drm/intel/issues/3955
>> 299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>> 300. https://gitlab.freedesktop.org/drm/intel/issues/4070
>> 301. https://gitlab.freedesktop.org/drm/intel/issues/4816
>> 302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>> 303. https://gitlab.freedesktop.org/drm/intel/issues/4816
>> 304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
>> 305. https://gitlab.freedesktop.org/drm/intel/issues/1072
>> 306. https://gitlab.freedesktop.org/drm/intel/issues/4078
>> 307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
>> 308. https://gitlab.freedesktop.org/drm/intel/issues/1072
>> 309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
>> 310. https://gitlab.freedesktop.org/drm/intel/issues/8521
>> 311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
>> 312. https://gitlab.freedesktop.org/drm/intel/issues/6950
>> 313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
2023-08-11 17:54 ` Belgaumkar, Vinay
@ 2023-08-14 16:02 ` Rodrigo Vivi
0 siblings, 0 replies; 9+ messages in thread
From: Rodrigo Vivi @ 2023-08-14 16:02 UTC (permalink / raw)
To: Belgaumkar, Vinay; +Cc: intel-gfx@lists.freedesktop.org
On Fri, Aug 11, 2023 at 10:54:57AM -0700, Belgaumkar, Vinay wrote:
>
> On 8/10/2023 5:22 PM, Rodrigo Vivi wrote:
> > On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
> > > From: Patchwork <patchwork@emeril.freedesktop.org>
> > > Sent: Thursday, July 27, 2023 6:59 PM
> > > To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
> > > Cc: intel-gfx@lists.freedesktop.org
> > > Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient
> > > freq earlier (rev3)
> > > Patch Details
> > > Series: drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
> > > URL: [1]https://patchwork.freedesktop.org/series/121150/
> > > State: failure
> > > Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
> > > CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
> > > Summary
> > > FAILURE
> > > Serious unknown changes coming with Patchwork_121150v3_full absolutely
> > > need to be
> > > verified manually.
> > > If you think the reported changes have nothing to do with the changes
> > > introduced in Patchwork_121150v3_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 -> 10)
> > > No changes in participating hosts
> > > Possible new issues
> > > Here are the unknown changes that may have been introduced in
> > > Patchwork_121150v3_full:
> > > IGT changes
> > > Possible regressions
> > > • igt@sysfs_timeslice_duration@invalid:
> > > ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT
> > > Does not seem related to this patch.
> > But i915_selftests@live@workarounds seems to fail on every platform after I cherry
> > picked this patch to drm-intel-fixes:
> >
> > http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?
> >
> > <5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
> > <6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
> > <7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
> > <7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
> > <6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
> > <6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
> > <6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
> > <7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
> > <7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
> > <7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
> > <7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
> > <7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
> > <7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
> > <7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
> > <7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
> > <7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
> > <7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
> > <6> [314.584067] Verifying after rcs0 reset...
> > <7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
> > <6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
> > <6> [314.792928] Verifying after bcs0 reset...
> > <3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62
> >
> > could you please help to understand what is going on here?
>
> Looks like this is a known bug and has been failing for months -
> https://gitlab.freedesktop.org/drm/intel/-/issues/6763
I'm sorry for the noise. I don't understand why this only showed up now
on the CI for our fixes branch, but I have confirmed that it is still
there even without this patch.
So I'm going to ignore this and I'm propagating this patch this week.
Sorry and thanks for the help,
Rodrigo.
>
> Thanks,
>
> Vinay.
>
> >
> > Thanks,
> > Rodrigo.
> >
> > > Thanks,
> > > Vinay.
> > > Known issues
> > > Here are the changes found in Patchwork_121150v3_full that come from known
> > > issues:
> > > IGT changes
> > > Issues hit
> > > • igt@drm_fdinfo@virtual-busy:
> > > ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)
> > > • igt@gem_ccs@ctrl-surf-copy-new-ctx:
> > > ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)
> > > • igt@gem_ctx_isolation@preservation-s3@rcs0:
> > > ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)
> > > • igt@gem_ctx_persistence@legacy-engines-queued:
> > > ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4
> > > similar issues
> > > • igt@gem_eio@in-flight-suspend:
> > > ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)
> > > • igt@gem_eio@kms:
> > > ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)
> > > • igt@gem_exec_await@wide-contexts:
> > > ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)
> > > • igt@gem_exec_capture@capture@bcs0-smem:
> > > ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)
> > > • igt@gem_exec_fair@basic-pace@rcs0:
> > > ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)
> > > • igt@gem_exec_fair@basic-throttle:
> > > ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)
> > > • igt@gem_exec_flush@basic-wb-rw-before-default:
> > > ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)
> > > • igt@gem_exec_reloc@basic-cpu-wc-active:
> > > ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue
> > > • igt@gem_exec_reloc@basic-wc-read-active:
> > > ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)
> > > • igt@gem_exec_schedule@preempt-queue-contexts:
> > > ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)
> > > • igt@gem_fenced_exec_thrash@no-spare-fences:
> > > ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)
> > > • igt@gem_lmem_swapping@smem-oom:
> > > ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)
> > > • igt@gem_mmap@short-mmap:
> > > ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)
> > > • igt@gem_mmap_gtt@basic-read-write:
> > > ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)
> > > • igt@gem_mmap_gtt@cpuset-big-copy-xy:
> > > ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)
> > > • igt@gem_readwrite@read-write:
> > > ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)
> > > • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
> > > ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue
> > > • igt@gem_softpin@evict-snoop:
> > > ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)
> > > • igt@gem_userptr_blits@forbidden-operations:
> > > ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)
> > > • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
> > > ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)
> > > • igt@gen9_exec_parse@basic-rejected-ctx-param:
> > > ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)
> > > • igt@i915_pm_dc@dc6-dpms:
> > > ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)
> > > • igt@i915_pm_dc@dc9-dpms:
> > > ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)
> > > • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
> > > ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)
> > > • igt@i915_pm_lpsp@screens-disabled:
> > > ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)
> > > • igt@i915_pm_rpm@basic-pci-d3-state:
> > > ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)
> > > • igt@i915_pm_rpm@dpms-lpsp:
> > > ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue
> > > • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
> > > ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)
> > > • igt@i915_pm_rpm@i2c:
> > > ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)
> > > • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> > > ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)
> > > • igt@kms_addfb_basic@basic-x-tiled-legacy:
> > > ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)
> > > • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
> > > ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues
> > > • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
> > > ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues
> > > • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> > > ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)
> > > • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > > ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)
> > > • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> > > ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue
> > > • igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> > > ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)
> > > • igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> > > ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)
> > > • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> > > ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)
> > > • igt@kms_big_joiner@basic:
> > > ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)
> > > • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
> > > ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues
> > > • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
> > > ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /
> > > [114]i915#6095) +2 similar issues
> > > • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
> > > ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /
> > > [118]i915#5354 / [119]i915#6095)
> > > • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
> > > ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)
> > > +1 similar issue
> > > • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
> > > ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3
> > > similar issues
> > > • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
> > > ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues
> > > • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
> > > ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues
> > > • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
> > > ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue
> > > • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
> > > ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues
> > > • igt@kms_content_protection@dp-mst-type-1:
> > > ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)
> > > • igt@kms_content_protection@lic@pipe-a-dp-4:
> > > ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)
> > > • igt@kms_cursor_crc@cursor-rapid-movement-32x32:
> > > ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)
> > > • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
> > > ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)
> > > • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
> > > ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)
> > > • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> > > ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)
> > > • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> > > ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)
> > > • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> > > ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)
> > > • igt@kms_dsc@dsc-with-output-formats:
> > > ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)
> > > • igt@kms_flip@2x-flip-vs-suspend-interruptible:
> > > ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)
> > > • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
> > > ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar
> > > issue
> > > • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
> > > ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)
> > > • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
> > > ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues
> > > • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
> > > ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues
> > > • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
> > > ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues
> > > • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
> > > ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues
> > > • igt@kms_hdr@static-swap:
> > > ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)
> > > • igt@kms_plane@pixel-format@pipe-b-planes:
> > > ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)
> > > • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
> > > ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues
> > > • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
> > > ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues
> > > • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
> > > ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues
> > > • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
> > > ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues
> > > • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
> > > ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar
> > > issues
> > > • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
> > > ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues
> > > • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
> > > ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues
> > > • igt@kms_psr@dpms:
> > > ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)
> > > • igt@kms_vblank@pipe-c-wait-busy-hang:
> > > ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)
> > > • igt@v3d/v3d_submit_cl@single-in-sync:
> > > ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)
> > > • igt@v3d/v3d_submit_csd@job-perfmon:
> > > ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues
> > > • igt@vc4/vc4_tiling@get-bad-flags:
> > > ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)
> > > • igt@vc4/vc4_tiling@set-bad-flags:
> > > ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)
> > > Possible fixes
> > > • igt@gem_ctx_exec@basic-nohangcheck:
> > > ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS
> > > • {igt@gem_ctx_freq@sysfs@gt0}:
> > > ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS
> > > • igt@gem_ctx_isolation@preservation-s3@vecs0:
> > > ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS
> > > • igt@gem_eio@hibernate:
> > > ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /
> > > [214]i915#8213) -> [215]PASS
> > > • igt@gem_eio@unwedge-stress:
> > > ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS
> > > • igt@gem_exec_capture@pi@vcs0:
> > > ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS
> > > • igt@gem_exec_capture@pi@vcs1:
> > > ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS
> > > • igt@gem_exec_fair@basic-pace-share@rcs0:
> > > ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS
> > > • igt@i915_module_load@reload-with-fault-injection:
> > > ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->
> > > [231]PASS
> > > • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
> > > ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar
> > > issues
> > > • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
> > > ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS
> > > • igt@i915_pm_rpm@modeset-lpsp-stress:
> > > ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS
> > > • igt@i915_pm_rpm@modeset-non-lpsp:
> > > ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS
> > > • igt@i915_pm_rpm@modeset-non-lpsp-stress:
> > > ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar
> > > issues
> > > • igt@i915_pm_rpm@pm-caching:
> > > ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar
> > > issue
> > > • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> > > ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS
> > > • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> > > ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS
> > > • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
> > > ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS
> > > • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
> > > ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS
> > > • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
> > > ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS
> > > • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
> > > ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar
> > > issues
> > > • igt@perf_pmu@busy-double-start@vecs1:
> > > ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar
> > > issues
> > > Warnings
> > > • igt@gem_exec_whisper@basic-contexts-forked-all:
> > > ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT
> > > ([274]i915#8628)
> > > • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
> > > ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->
> > > [278]WARN ([279]i915#2681)
> > > • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> > > ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)
> > > • igt@i915_pm_rpm@i2c:
> > > ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN
> > > ([287]i915#4391 / [288]i915#4423)
> > > • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> > > ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->
> > > [292]FAIL ([293]i915#2346)
> > > • igt@kms_fbcon_fbt@psr:
> > > ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->
> > > [297]SKIP ([298]i915#3955)
> > > • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> > > ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP
> > > ([303]i915#4816)
> > > • igt@kms_psr@sprite_plane_onoff:
> > > ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP
> > > ([308]i915#1072)
> > > • igt@sysfs_timeslice_duration@timeout@vecs0:
> > > ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT
> > > ([312]i915#6950)
> > > {name}: This element is suppressed. This means it is ignored when
> > > computing
> > > the status of the difference (SUCCESS, WARNING, or FAILURE).
> > > Build changes
> > > • Linux: CI_DRM_13432 -> Patchwork_121150v3
> > > CI-20190529: 20190529
> > > CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @
> > > git://anongit.freedesktop.org/gfx-ci/linux
> > > IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @
> > > [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> > > Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @
> > > git://anongit.freedesktop.org/gfx-ci/linux
> > > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> > > git://anongit.freedesktop.org/piglit
> > >
> > > References
> > >
> > > Visible links
> > > 1. https://patchwork.freedesktop.org/series/121150/
> > > 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
> > > 3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
> > > 4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
> > > 5. https://gitlab.freedesktop.org/drm/intel/issues/8414
> > > 6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
> > > 7. https://gitlab.freedesktop.org/drm/intel/issues/5325
> > > 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> > > 9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> > > 10. https://gitlab.freedesktop.org/drm/intel/issues/180
> > > 11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
> > > 12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > 13. https://gitlab.freedesktop.org/drm/intel/issues/1099
> > > 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
> > > 15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
> > > 16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > > 17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
> > > 18. https://gitlab.freedesktop.org/drm/intel/issues/5784
> > > 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
> > > 20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
> > > 21. https://gitlab.freedesktop.org/drm/intel/issues/5892
> > > 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
> > > 23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
> > > 24. https://gitlab.freedesktop.org/drm/intel/issues/7941
> > > 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
> > > 26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
> > > 27. https://gitlab.freedesktop.org/drm/intel/issues/2842
> > > 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
> > > 29. https://gitlab.freedesktop.org/drm/intel/issues/3539
> > > 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
> > > 31. https://gitlab.freedesktop.org/drm/intel/issues/3539
> > > 32. https://gitlab.freedesktop.org/drm/intel/issues/4852
> > > 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
> > > 34. https://gitlab.freedesktop.org/drm/intel/issues/3281
> > > 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
> > > 36. https://gitlab.freedesktop.org/drm/intel/issues/3281
> > > 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
> > > 38. https://gitlab.freedesktop.org/drm/intel/issues/4812
> > > 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
> > > 40. https://gitlab.freedesktop.org/drm/intel/issues/4860
> > > 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
> > > 42. https://gitlab.freedesktop.org/drm/intel/issues/4613
> > > 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
> > > 44. https://gitlab.freedesktop.org/drm/intel/issues/4083
> > > 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
> > > 46. https://gitlab.freedesktop.org/drm/intel/issues/4077
> > > 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> > > 48. https://gitlab.freedesktop.org/drm/intel/issues/4077
> > > 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
> > > 50. https://gitlab.freedesktop.org/drm/intel/issues/3282
> > > 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
> > > 52. https://gitlab.freedesktop.org/drm/intel/issues/8428
> > > 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
> > > 54. https://gitlab.freedesktop.org/drm/intel/issues/4885
> > > 55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
> > > 56. https://gitlab.freedesktop.org/drm/intel/issues/3282
> > > 57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> > > 58. https://gitlab.freedesktop.org/drm/intel/issues/3297
> > > 59. https://gitlab.freedesktop.org/drm/intel/issues/4880
> > > 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
> > > 61. https://gitlab.freedesktop.org/drm/intel/issues/2527
> > > 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
> > > 63. https://gitlab.freedesktop.org/drm/intel/issues/3361
> > > 64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
> > > 65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
> > > 66. https://gitlab.freedesktop.org/drm/intel/issues/4281
> > > 67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> > > 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> > > 69. https://gitlab.freedesktop.org/drm/intel/issues/1937
> > > 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
> > > 71. https://gitlab.freedesktop.org/drm/intel/issues/1902
> > > 72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
> > > 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
> > > 74. https://gitlab.freedesktop.org/drm/intel/issues/7691
> > > 75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
> > > 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
> > > 77. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > > 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > > 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > > 80. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > > 81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
> > > 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
> > > 83. https://gitlab.freedesktop.org/drm/intel/issues/8717
> > > 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> > > 85. https://gitlab.freedesktop.org/drm/intel/issues/5190
> > > 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> > > 87. https://gitlab.freedesktop.org/drm/intel/issues/4212
> > > 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
> > > 89. https://gitlab.freedesktop.org/drm/intel/issues/8247
> > > 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> > > 91. https://gitlab.freedesktop.org/drm/intel/issues/8247
> > > 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> > > 93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > 94. https://gitlab.freedesktop.org/drm/intel/issues/1769
> > > 95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> > > 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> > > 97. https://gitlab.freedesktop.org/drm/intel/issues/5138
> > > 98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> > > 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> > > 100. https://gitlab.freedesktop.org/drm/intel/issues/3743
> > > 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
> > > 102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
> > > 103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
> > > 104. https://gitlab.freedesktop.org/drm/intel/issues/3638
> > > 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> > > 106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
> > > 107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
> > > 108. https://gitlab.freedesktop.org/drm/intel/issues/2705
> > > 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
> > > 110. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > > 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
> > > 112. https://gitlab.freedesktop.org/drm/intel/issues/3689
> > > 113. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > > 114. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > > 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
> > > 116. https://gitlab.freedesktop.org/drm/intel/issues/3689
> > > 117. https://gitlab.freedesktop.org/drm/intel/issues/3886
> > > 118. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > > 119. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > > 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
> > > 121. https://gitlab.freedesktop.org/drm/intel/issues/3886
> > > 122. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > > 123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
> > > 124. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > > 125. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > > 126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
> > > 127. https://gitlab.freedesktop.org/drm/intel/issues/7213
> > > 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> > > 129. https://gitlab.freedesktop.org/drm/intel/issues/4087
> > > 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
> > > 131. https://gitlab.freedesktop.org/drm/intel/issues/7828
> > > 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
> > > 133. https://gitlab.freedesktop.org/drm/intel/issues/7828
> > > 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
> > > 135. https://gitlab.freedesktop.org/drm/intel/issues/3299
> > > 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
> > > 137. https://gitlab.freedesktop.org/drm/intel/issues/7173
> > > 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
> > > 139. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > > 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
> > > 141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > > 142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> > > 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> > > 144. https://gitlab.freedesktop.org/drm/intel/issues/8248
> > > 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> > > 146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > 147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
> > > 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > > 149. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > > 150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > > 151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > > 152. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > > 153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
> > > 154. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > > 155. https://gitlab.freedesktop.org/drm/intel/issues/3840
> > > 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
> > > 157. https://gitlab.freedesktop.org/drm/intel/issues/3637
> > > 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
> > > 159. https://gitlab.freedesktop.org/drm/intel/issues/8841
> > > 160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
> > > 161. https://gitlab.freedesktop.org/drm/intel/issues/2672
> > > 162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
> > > 163. https://gitlab.freedesktop.org/drm/intel/issues/8708
> > > 164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> > > 165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
> > > 166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
> > > 167. https://gitlab.freedesktop.org/drm/intel/issues/1825
> > > 168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
> > > 169. https://gitlab.freedesktop.org/drm/intel/issues/3458
> > > 170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
> > > 171. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > > 172. https://gitlab.freedesktop.org/drm/intel/issues/8228
> > > 173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
> > > 174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
> > > 175. https://gitlab.freedesktop.org/drm/intel/issues/1623
> > > 176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
> > > 177. https://gitlab.freedesktop.org/drm/intel/issues/5176
> > > 178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
> > > 179. https://gitlab.freedesktop.org/drm/intel/issues/5176
> > > 180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
> > > 181. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > > 182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
> > > 183. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > > 184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
> > > 185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > 186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
> > > 187. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > > 188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
> > > 189. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > > 190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
> > > 191. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > > 192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
> > > 193. https://gitlab.freedesktop.org/drm/intel/issues/6768
> > > 194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
> > > 195. https://gitlab.freedesktop.org/drm/intel/issues/2575
> > > 196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
> > > 197. https://gitlab.freedesktop.org/drm/intel/issues/2575
> > > 198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
> > > 199. https://gitlab.freedesktop.org/drm/intel/issues/7711
> > > 200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
> > > 201. https://gitlab.freedesktop.org/drm/intel/issues/7711
> > > 202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
> > > 203. https://gitlab.freedesktop.org/drm/intel/issues/6268
> > > 204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
> > > 205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
> > > 206. https://gitlab.freedesktop.org/drm/intel/issues/6786
> > > 207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
> > > 208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> > > 209. https://gitlab.freedesktop.org/drm/intel/issues/180
> > > 210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> > > 211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
> > > 212. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > > 213. https://gitlab.freedesktop.org/drm/intel/issues/7975
> > > 214. https://gitlab.freedesktop.org/drm/intel/issues/8213
> > > 215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
> > > 216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
> > > 217. https://gitlab.freedesktop.org/drm/intel/issues/5784
> > > 218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
> > > 219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
> > > 220. https://gitlab.freedesktop.org/drm/intel/issues/4475
> > > 221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
> > > 222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
> > > 223. https://gitlab.freedesktop.org/drm/intel/issues/8504
> > > 224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
> > > 225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
> > > 226. https://gitlab.freedesktop.org/drm/intel/issues/2842
> > > 227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> > > 228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
> > > 229. https://gitlab.freedesktop.org/drm/intel/issues/7061
> > > 230. https://gitlab.freedesktop.org/drm/intel/issues/8617
> > > 231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
> > > 232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > > 233. https://gitlab.freedesktop.org/drm/intel/issues/3591
> > > 234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > > 235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > > 236. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > > 237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > > 238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
> > > 239. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > > 240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
> > > 241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
> > > 242. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > > 243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
> > > 244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> > > 245. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > > 246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> > > 247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
> > > 248. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > > 249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
> > > 250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> > > 251. https://gitlab.freedesktop.org/drm/intel/issues/3743
> > > 252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> > > 253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > > 254. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > > 255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > > 256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> > > 257. https://gitlab.freedesktop.org/drm/intel/issues/2122
> > > 258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> > > 259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> > > 260. https://gitlab.freedesktop.org/drm/intel/issues/79
> > > 261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> > > 262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> > > 263. https://gitlab.freedesktop.org/drm/intel/issues/6880
> > > 264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> > > 265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> > > 266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > > 267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> > > 268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
> > > 269. https://gitlab.freedesktop.org/drm/intel/issues/4349
> > > 270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
> > > 271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
> > > 272. https://gitlab.freedesktop.org/drm/intel/issues/8131
> > > 273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
> > > 274. https://gitlab.freedesktop.org/drm/intel/issues/8628
> > > 275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > > 276. https://gitlab.freedesktop.org/drm/intel/issues/2681
> > > 277. https://gitlab.freedesktop.org/drm/intel/issues/3591
> > > 278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > > 279. https://gitlab.freedesktop.org/drm/intel/issues/2681
> > > 280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> > > 281. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > > 282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> > > 283. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > > 284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
> > > 285. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > > 286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
> > > 287. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > > 288. https://gitlab.freedesktop.org/drm/intel/issues/4423
> > > 289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > > 290. https://gitlab.freedesktop.org/drm/intel/issues/2017
> > > 291. https://gitlab.freedesktop.org/drm/intel/issues/5954
> > > 292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > > 293. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > > 294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
> > > 295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
> > > 296. https://gitlab.freedesktop.org/drm/intel/issues/3955
> > > 297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
> > > 298. https://gitlab.freedesktop.org/drm/intel/issues/3955
> > > 299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> > > 300. https://gitlab.freedesktop.org/drm/intel/issues/4070
> > > 301. https://gitlab.freedesktop.org/drm/intel/issues/4816
> > > 302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> > > 303. https://gitlab.freedesktop.org/drm/intel/issues/4816
> > > 304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
> > > 305. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > > 306. https://gitlab.freedesktop.org/drm/intel/issues/4078
> > > 307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
> > > 308. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > > 309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
> > > 310. https://gitlab.freedesktop.org/drm/intel/issues/8521
> > > 311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
> > > 312. https://gitlab.freedesktop.org/drm/intel/issues/6950
> > > 313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-08-14 16:06 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-26 1:00 [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Vinay Belgaumkar
2023-07-26 2:00 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev2) Patchwork
2023-07-27 20:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/guc/slpc: Restore efficient freq earlier (rev3) Patchwork
2023-07-28 1:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2023-08-02 0:41 ` Belgaumkar, Vinay
2023-08-11 0:22 ` Rodrigo Vivi
2023-08-11 17:54 ` Belgaumkar, Vinay
2023-08-14 16:02 ` Rodrigo Vivi
2023-07-28 15:36 ` [Intel-gfx] [PATCH v2] drm/i915/guc/slpc: Restore efficient freq earlier Rodrigo Vivi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox