* [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check
@ 2020-10-27 16:09 Imre Deak
2020-10-28 3:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Imre Deak @ 2020-10-27 16:09 UTC (permalink / raw)
To: intel-gfx; +Cc: Cooper Chiou, stable, William Tseng
The atomic check hooks must look up the encoder to be used with a
connector from the connector's atomic state, and not assume that it's
the connector's current attached encoder. The latter one can change
under the atomic check func, or can be unset yet as in the case of MST
connectors.
This fixes
[ 7.940719] Oops: 0000 [#1] SMP NOPTI
[ 7.944407] CPU: 2 PID: 143 Comm: kworker/2:2 Not tainted 5.6.0-1023-oem #23-Ubuntu
[ 7.952102] Hardware name: Dell Inc. Latitude 7320/, BIOS 88.87.11 09/07/2020
[ 7.959278] Workqueue: events output_poll_execute [drm_kms_helper]
[ 7.965511] RIP: 0010:intel_psr_atomic_check+0x37/0xa0 [i915]
[ 7.971327] Code: 80 2d 06 00 00 20 74 42 80 b8 34 71 00 00 00 74 39 48 8b 72 08 48 85 f6 74 30 80 b8 f8 71 00 00 00 74 27 4c 8b 87 80 04 00 00 <41> 8b 78 78 83 ff 08 77 19 31 c9 83 ff 05 77 19 48 81 c1 20 01 00
[ 7.977541] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5
[ 7.990154] RSP: 0018:ffffb864c073fac8 EFLAGS: 00010202
[ 7.990155] RAX: ffff8c5d55ce0000 RBX: ffff8c5d54519000 RCX: 0000000000000000
[ 7.990155] RDX: ffff8c5d55cb30c0 RSI: ffff8c5d89a0c800 RDI: ffff8c5d55fcf800
[ 7.990156] RBP: ffffb864c073fac8 R08: 0000000000000000 R09: ffff8c5d55d9f3a0
[ 7.990156] R10: ffff8c5d55cb30c0 R11: 0000000000000009 R12: ffff8c5d55fcf800
[ 7.990156] R13: ffff8c5d55cb30c0 R14: ffff8c5d56989cc0 R15: ffff8c5d56989cc0
[ 7.990158] FS: 0000000000000000(0000) GS:ffff8c5d8e480000(0000) knlGS:0000000000000000
[ 8.047193] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 8.052970] CR2: 0000000000000078 CR3: 0000000856500005 CR4: 0000000000760ee0
[ 8.060137] PKRU: 55555554
[ 8.062867] Call Trace:
[ 8.065361] intel_digital_connector_atomic_check+0x53/0x130 [i915]
[ 8.071703] intel_dp_mst_atomic_check+0x5b/0x200 [i915]
[ 8.077074] drm_atomic_helper_check_modeset+0x1db/0x790 [drm_kms_helper]
[ 8.083942] intel_atomic_check+0x92/0xc50 [i915]
[ 8.088705] ? drm_plane_check_pixel_format+0x4f/0xb0 [drm]
[ 8.094345] ? drm_atomic_plane_check+0x7a/0x3a0 [drm]
[ 8.099548] drm_atomic_check_only+0x2b1/0x450 [drm]
[ 8.104573] drm_atomic_commit+0x18/0x50 [drm]
[ 8.109070] drm_client_modeset_commit_atomic+0x1c9/0x200 [drm]
[ 8.115056] drm_client_modeset_commit_force+0x55/0x160 [drm]
[ 8.120866] drm_fb_helper_restore_fbdev_mode_unlocked+0x54/0xb0 [drm_kms_helper]
[ 8.128415] drm_fb_helper_set_par+0x34/0x50 [drm_kms_helper]
[ 8.134225] drm_fb_helper_hotplug_event.part.0+0xb4/0xe0 [drm_kms_helper]
[ 8.141150] drm_fb_helper_hotplug_event+0x1c/0x30 [drm_kms_helper]
[ 8.147481] intel_fbdev_output_poll_changed+0x6f/0xa0 [i915]
[ 8.153287] drm_kms_helper_hotplug_event+0x2c/0x40 [drm_kms_helper]
[ 8.159709] output_poll_execute+0x1aa/0x1c0 [drm_kms_helper]
[ 8.165506] process_one_work+0x1e8/0x3b0
[ 8.169561] worker_thread+0x4d/0x400
[ 8.173249] kthread+0x104/0x140
[ 8.176515] ? process_one_work+0x3b0/0x3b0
[ 8.180726] ? kthread_park+0x90/0x90
[ 8.184416] ret_from_fork+0x1f/0x40
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/2361
References: https://gitlab.freedesktop.org/drm/intel/-/issues/2486
Reported-by: William Tseng <william.tseng@intel.com>
Reported-by: Cooper Chiou <cooper.chiou@intel.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index b2544102e7b1..1576c3722d0b 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -1884,7 +1884,7 @@ void intel_psr_atomic_check(struct drm_connector *connector,
return;
intel_connector = to_intel_connector(connector);
- dig_port = enc_to_dig_port(intel_attached_encoder(intel_connector));
+ dig_port = enc_to_dig_port(to_intel_encoder(new_state->best_encoder));
if (dev_priv->psr.dp != &dig_port->dp)
return;
--
2.25.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix encoder lookup during PSR atomic check
2020-10-27 16:09 [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check Imre Deak
@ 2020-10-28 3:07 ` Patchwork
2020-10-28 5:50 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2020-10-28 9:00 ` [Intel-gfx] [PATCH] " Anshuman Gupta
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-10-28 3:07 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 6268 bytes --]
== Series Details ==
Series: drm/i915: Fix encoder lookup during PSR atomic check
URL : https://patchwork.freedesktop.org/series/83102/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9206 -> Patchwork_18787
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/index.html
New tests
---------
New tests have been introduced between CI_DRM_9206 and Patchwork_18787:
### New CI tests (1) ###
* boot:
- Statuses : 40 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in Patchwork_18787 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- fi-tgl-u2: [PASS][1] -> [DMESG-WARN][2] ([i915#1982])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
* igt@gem_exec_parallel@engines@fds:
- fi-apl-guc: [PASS][3] -> [INCOMPLETE][4] ([i915#1635])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-apl-guc/igt@gem_exec_parallel@engines@fds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-apl-guc/igt@gem_exec_parallel@engines@fds.html
* igt@gem_mmap_gtt@basic:
- fi-tgl-y: [PASS][5] -> [DMESG-WARN][6] ([i915#402])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-tgl-y/igt@gem_mmap_gtt@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-tgl-y/igt@gem_mmap_gtt@basic.html
* igt@kms_chamelium@dp-crc-fast:
- fi-kbl-7500u: [PASS][7] -> [INCOMPLETE][8] ([i915#2606])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_psr@cursor_plane_move:
- fi-kbl-soraka: [PASS][9] -> [INCOMPLETE][10] ([i915#2606])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-kbl-soraka/igt@kms_psr@cursor_plane_move.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-kbl-soraka/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@sprite_plane_onoff:
- fi-cml-u2: [PASS][11] -> [INCOMPLETE][12] ([i915#2606])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-cml-u2/igt@kms_psr@sprite_plane_onoff.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-cml-u2/igt@kms_psr@sprite_plane_onoff.html
#### Possible fixes ####
* igt@gem_tiled_pread_basic:
- fi-tgl-y: [DMESG-WARN][13] ([i915#402]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-tgl-y/igt@gem_tiled_pread_basic.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-tgl-y/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@reload:
- {fi-ehl-1}: [DMESG-WARN][15] ([i915#1982]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-ehl-1/igt@i915_module_load@reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-ehl-1/igt@i915_module_load@reload.html
- fi-skl-lmem: [DMESG-WARN][17] ([i915#2605]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-skl-lmem/igt@i915_module_load@reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-skl-lmem/igt@i915_module_load@reload.html
* igt@kms_busy@basic@flip:
- {fi-tgl-dsi}: [DMESG-WARN][19] ([i915#1982]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-tgl-dsi/igt@kms_busy@basic@flip.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-tgl-dsi/igt@kms_busy@basic@flip.html
* igt@kms_chamelium@dp-crc-fast:
- fi-icl-u2: [INCOMPLETE][21] ([i915#2606]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_psr@sprite_plane_onoff:
- fi-tgl-y: [DMESG-WARN][23] ([i915#1982]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html
- fi-skl-6600u: [INCOMPLETE][25] ([i915#2606]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/fi-skl-6600u/igt@kms_psr@sprite_plane_onoff.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/fi-skl-6600u/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605
[i915#2606]: https://gitlab.freedesktop.org/drm/intel/issues/2606
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
Participating hosts (43 -> 40)
------------------------------
Missing (3): fi-byt-j1900 fi-bsw-cyan fi-bdw-samus
Build changes
-------------
* Linux: CI_DRM_9206 -> Patchwork_18787
CI-20190529: 20190529
CI_DRM_9206: 85ce674ff932ed7ca41aef52d8bb42c04fbe2171 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5827: 7fd7e3fb8b42eb4e62a4575f6edc5a048e5bec3d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_18787: 8e49e14f489cee113b00ffd974180e7b1cb85ca5 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
8e49e14f489c drm/i915: Fix encoder lookup during PSR atomic check
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/index.html
[-- Attachment #1.2: Type: text/html, Size: 7624 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Fix encoder lookup during PSR atomic check
2020-10-27 16:09 [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check Imre Deak
2020-10-28 3:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-10-28 5:50 ` Patchwork
2020-10-28 17:21 ` Imre Deak
2020-10-28 9:00 ` [Intel-gfx] [PATCH] " Anshuman Gupta
2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2020-10-28 5:50 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 29560 bytes --]
== Series Details ==
Series: drm/i915: Fix encoder lookup during PSR atomic check
URL : https://patchwork.freedesktop.org/series/83102/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9206_full -> Patchwork_18787_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_18787_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile}:
- shard-skl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
### Piglit changes ###
#### Possible regressions ####
* spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4 (NEW):
- {pig-icl-1065g7}: NOTRUN -> [INCOMPLETE][2] +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/pig-icl-1065g7/spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4.html
New tests
---------
New tests have been introduced between CI_DRM_9206_full and Patchwork_18787_full:
### New CI tests (1) ###
* boot:
- Statuses : 200 pass(s)
- Exec time: [0.0] s
### New Piglit tests (4) ###
* spec@glsl-4.00@execution@built-in-functions@fs-op-mult-dmat3x4-dmat3:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
* spec@glsl-4.00@execution@built-in-functions@fs-op-mult-dmat4-dmat3x4:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
* spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
* spec@glsl-4.00@execution@built-in-functions@gs-op-div-double-dmat3x4:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in Patchwork_18787_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-snb: [PASS][3] -> [INCOMPLETE][4] ([i915#82])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-snb2/igt@core_hotunplug@hotrebind-lateclose.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-snb4/igt@core_hotunplug@hotrebind-lateclose.html
* igt@drm_read@empty-block:
- shard-glk: [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk2/igt@drm_read@empty-block.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk6/igt@drm_read@empty-block.html
* igt@gen9_exec_parse@allowed-single:
- shard-skl: [PASS][7] -> [DMESG-WARN][8] ([i915#1436] / [i915#716])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@gen9_exec_parse@allowed-single.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@gen9_exec_parse@allowed-single.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-apl: [PASS][9] -> [DMESG-WARN][10] ([i915#1635] / [i915#1982]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl7/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge:
- shard-skl: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-glk: [PASS][13] -> [FAIL][14] ([i915#2346])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-flip-after-cursor-toggle:
- shard-hsw: [PASS][15] -> [DMESG-WARN][16] ([i915#1982]) +2 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw4/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw6/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack:
- shard-tglb: [PASS][17] -> [INCOMPLETE][18] ([i915#2606]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-tglb: [PASS][19] -> [INCOMPLETE][20] ([i915#2606] / [i915#750])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-skl: [PASS][21] -> [INCOMPLETE][22] ([i915#123] / [i915#2606]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-skl: [PASS][23] -> [INCOMPLETE][24] ([i915#123]) +4 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
- shard-skl: [PASS][27] -> [DMESG-FAIL][28] ([fdo#108145] / [i915#1982])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
* igt@kms_psr@cursor_render:
- shard-skl: [PASS][29] -> [INCOMPLETE][30] ([i915#2606])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@kms_psr@cursor_render.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@kms_psr@cursor_render.html
* igt@kms_psr@sprite_plane_onoff:
- shard-iclb: [PASS][31] -> [INCOMPLETE][32] ([i915#2606]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb4/igt@kms_psr@sprite_plane_onoff.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb6/igt@kms_psr@sprite_plane_onoff.html
* igt@sysfs_preempt_timeout@timeout@rcs0:
- shard-skl: [PASS][33] -> [FAIL][34] ([i915#2060]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@sysfs_preempt_timeout@timeout@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@sysfs_preempt_timeout@timeout@rcs0.html
* igt@sysfs_timeslice_duration@timeout@bcs0:
- shard-skl: [PASS][35] -> [FAIL][36] ([i915#1732]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@sysfs_timeslice_duration@timeout@bcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@sysfs_timeslice_duration@timeout@bcs0.html
#### Possible fixes ####
* igt@gem_exec_gttfill@all:
- shard-glk: [DMESG-WARN][37] ([i915#118] / [i915#95]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk5/igt@gem_exec_gttfill@all.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk1/igt@gem_exec_gttfill@all.html
* igt@gem_exec_whisper@basic-contexts-priority:
- shard-iclb: [INCOMPLETE][39] -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb3/igt@gem_exec_whisper@basic-contexts-priority.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb1/igt@gem_exec_whisper@basic-contexts-priority.html
* igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent:
- shard-skl: [FAIL][41] ([i915#54]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-apl: [INCOMPLETE][43] ([i915#1635]) -> [PASS][44] +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge:
- shard-glk: [DMESG-WARN][45] ([i915#1982]) -> [PASS][46] +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk1/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html
* igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled:
- shard-hsw: [DMESG-WARN][47] ([i915#1982]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw6/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw4/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglb: [INCOMPLETE][49] -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-skl: [DMESG-WARN][51] ([i915#2606]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-skl: [INCOMPLETE][53] ([i915#123]) -> [PASS][54] +2 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_plane@plane-position-hole-dpms-pipe-a-planes:
- shard-skl: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-kbl: [DMESG-WARN][57] ([i915#165] / [i915#78]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-kbl6/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_psr@cursor_blt:
- shard-skl: [INCOMPLETE][59] ([i915#2606]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@kms_psr@cursor_blt.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@kms_psr@cursor_blt.html
* igt@kms_setmode@basic:
- shard-glk: [FAIL][61] ([i915#31]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk4/igt@kms_setmode@basic.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk7/igt@kms_setmode@basic.html
* igt@kms_vblank@pipe-a-query-forked-busy-hang:
- shard-apl: [DMESG-WARN][63] ([i915#1635] / [i915#1982]) -> [PASS][64] +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl8/igt@kms_vblank@pipe-a-query-forked-busy-hang.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl3/igt@kms_vblank@pipe-a-query-forked-busy-hang.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-hsw: [FAIL][65] -> [WARN][66] ([i915#2283])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw4/igt@core_hotunplug@hotrebind-lateclose.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw6/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-iclb: [DMESG-WARN][67] ([i915#2606]) -> [INCOMPLETE][68] ([i915#2606])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
- shard-tglb: [DMESG-WARN][69] ([i915#2606]) -> [INCOMPLETE][70] ([i915#2606]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-skl: [DMESG-WARN][71] ([i915#1982]) -> [INCOMPLETE][72] ([i915#123] / [i915#2606])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@runner@aborted:
- shard-tglb: ([FAIL][73], [FAIL][74], [FAIL][75], [FAIL][76], [FAIL][77], [FAIL][78], [FAIL][79], [FAIL][80], [FAIL][81], [FAIL][82], [FAIL][83], [FAIL][84], [FAIL][85], [FAIL][86], [FAIL][87], [FAIL][88], [FAIL][89], [FAIL][90], [FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94], [FAIL][95], [FAIL][96], [FAIL][97]) ([i915#1764] / [i915#1814] / [i915#456] / [k.org#205379]) -> ([FAIL][98], [FAIL][99], [FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122]) ([i915#1764] / [i915#1814] / [i915#456])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
- shard-skl: ([FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1814]) -> ([FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151], [FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162], [FAIL][163], [FAIL][164], [FAIL][165], [FAIL][166], [FAIL][167]) ([i915#1436] / [i915#1814])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl4/igt@runner@aborted.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@runner@aborted.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl3/igt@runner@aborted.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl3/igt@runner@aborted.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl4/igt@runner@aborted.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@runner@aborted.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl10/igt@runner@aborted.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@runner@aborted.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@runner@aborted.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@runner@aborted.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl10/igt@runner@aborted.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@runner@aborted.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl8/igt@runner@aborted.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@runner@aborted.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
* igt@sysfs_timeslice_duration@timeout@rcs0:
- shard-skl: [DMESG-WARN][168] ([i915#1982]) -> [DMESG-FAIL][169] ([i915#1982])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@sysfs_timeslice_duration@timeout@rcs0.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@sysfs_timeslice_duration@timeout@rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#123]: https://gitlab.freedesktop.org/drm/intel/issues/123
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#1732]: https://gitlab.freedesktop.org/drm/intel/issues/1732
[i915#1764]: https://gitlab.freedesktop.org/drm/intel/issues/1764
[i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2060]: https://gitlab.freedesktop.org/drm/intel/issues/2060
[i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2606]: https://gitlab.freedesktop.org/drm/intel/issues/2606
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#750]: https://gitlab.freedesktop.org/drm/intel/issues/750
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Build changes
-------------
* Linux: CI_DRM_9206 -> Patchwork_18787
CI-20190529: 20190529
CI_DRM_9206: 85ce674ff932ed7ca41aef52d8bb42c04fbe2171 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5827: 7fd7e3fb8b42eb4e62a4575f6edc5a048e5bec3d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_18787: 8e49e14f489cee113b00ffd974180e7b1cb85ca5 @ 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_18787/index.html
[-- Attachment #1.2: Type: text/html, Size: 33620 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check
2020-10-27 16:09 [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check Imre Deak
2020-10-28 3:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2020-10-28 5:50 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
@ 2020-10-28 9:00 ` Anshuman Gupta
2 siblings, 0 replies; 5+ messages in thread
From: Anshuman Gupta @ 2020-10-28 9:00 UTC (permalink / raw)
To: Imre Deak
Cc: Chiou, Cooper, intel-gfx@lists.freedesktop.org, Tseng, William,
stable@vger.kernel.org
On 2020-10-27 at 21:39:28 +0530, Imre Deak wrote:
> The atomic check hooks must look up the encoder to be used with a
> connector from the connector's atomic state, and not assume that it's
> the connector's current attached encoder. The latter one can change
> under the atomic check func, or can be unset yet as in the case of MST
> connectors.
I have also observed the similar crash while using DP-MST setup.
Looks good to me.
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
>
> This fixes
> [ 7.940719] Oops: 0000 [#1] SMP NOPTI
> [ 7.944407] CPU: 2 PID: 143 Comm: kworker/2:2 Not tainted 5.6.0-1023-oem #23-Ubuntu
> [ 7.952102] Hardware name: Dell Inc. Latitude 7320/, BIOS 88.87.11 09/07/2020
> [ 7.959278] Workqueue: events output_poll_execute [drm_kms_helper]
> [ 7.965511] RIP: 0010:intel_psr_atomic_check+0x37/0xa0 [i915]
> [ 7.971327] Code: 80 2d 06 00 00 20 74 42 80 b8 34 71 00 00 00 74 39 48 8b 72 08 48 85 f6 74 30 80 b8 f8 71 00 00 00 74 27 4c 8b 87 80 04 00 00 <41> 8b 78 78 83 ff 08 77 19 31 c9 83 ff 05 77 19 48 81 c1 20 01 00
> [ 7.977541] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5
> [ 7.990154] RSP: 0018:ffffb864c073fac8 EFLAGS: 00010202
> [ 7.990155] RAX: ffff8c5d55ce0000 RBX: ffff8c5d54519000 RCX: 0000000000000000
> [ 7.990155] RDX: ffff8c5d55cb30c0 RSI: ffff8c5d89a0c800 RDI: ffff8c5d55fcf800
> [ 7.990156] RBP: ffffb864c073fac8 R08: 0000000000000000 R09: ffff8c5d55d9f3a0
> [ 7.990156] R10: ffff8c5d55cb30c0 R11: 0000000000000009 R12: ffff8c5d55fcf800
> [ 7.990156] R13: ffff8c5d55cb30c0 R14: ffff8c5d56989cc0 R15: ffff8c5d56989cc0
> [ 7.990158] FS: 0000000000000000(0000) GS:ffff8c5d8e480000(0000) knlGS:0000000000000000
> [ 8.047193] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> [ 8.052970] CR2: 0000000000000078 CR3: 0000000856500005 CR4: 0000000000760ee0
> [ 8.060137] PKRU: 55555554
> [ 8.062867] Call Trace:
> [ 8.065361] intel_digital_connector_atomic_check+0x53/0x130 [i915]
> [ 8.071703] intel_dp_mst_atomic_check+0x5b/0x200 [i915]
> [ 8.077074] drm_atomic_helper_check_modeset+0x1db/0x790 [drm_kms_helper]
> [ 8.083942] intel_atomic_check+0x92/0xc50 [i915]
> [ 8.088705] ? drm_plane_check_pixel_format+0x4f/0xb0 [drm]
> [ 8.094345] ? drm_atomic_plane_check+0x7a/0x3a0 [drm]
> [ 8.099548] drm_atomic_check_only+0x2b1/0x450 [drm]
> [ 8.104573] drm_atomic_commit+0x18/0x50 [drm]
> [ 8.109070] drm_client_modeset_commit_atomic+0x1c9/0x200 [drm]
> [ 8.115056] drm_client_modeset_commit_force+0x55/0x160 [drm]
> [ 8.120866] drm_fb_helper_restore_fbdev_mode_unlocked+0x54/0xb0 [drm_kms_helper]
> [ 8.128415] drm_fb_helper_set_par+0x34/0x50 [drm_kms_helper]
> [ 8.134225] drm_fb_helper_hotplug_event.part.0+0xb4/0xe0 [drm_kms_helper]
> [ 8.141150] drm_fb_helper_hotplug_event+0x1c/0x30 [drm_kms_helper]
> [ 8.147481] intel_fbdev_output_poll_changed+0x6f/0xa0 [i915]
> [ 8.153287] drm_kms_helper_hotplug_event+0x2c/0x40 [drm_kms_helper]
> [ 8.159709] output_poll_execute+0x1aa/0x1c0 [drm_kms_helper]
> [ 8.165506] process_one_work+0x1e8/0x3b0
> [ 8.169561] worker_thread+0x4d/0x400
> [ 8.173249] kthread+0x104/0x140
> [ 8.176515] ? process_one_work+0x3b0/0x3b0
> [ 8.180726] ? kthread_park+0x90/0x90
> [ 8.184416] ret_from_fork+0x1f/0x40
>
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/2361
> References: https://gitlab.freedesktop.org/drm/intel/-/issues/2486
> Reported-by: William Tseng <william.tseng@intel.com>
> Reported-by: Cooper Chiou <cooper.chiou@intel.com>
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index b2544102e7b1..1576c3722d0b 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -1884,7 +1884,7 @@ void intel_psr_atomic_check(struct drm_connector *connector,
> return;
>
> intel_connector = to_intel_connector(connector);
> - dig_port = enc_to_dig_port(intel_attached_encoder(intel_connector));
> + dig_port = enc_to_dig_port(to_intel_encoder(new_state->best_encoder));
> if (dev_priv->psr.dp != &dig_port->dp)
> return;
>
> --
> 2.25.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Fix encoder lookup during PSR atomic check
2020-10-28 5:50 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
@ 2020-10-28 17:21 ` Imre Deak
0 siblings, 0 replies; 5+ messages in thread
From: Imre Deak @ 2020-10-28 17:21 UTC (permalink / raw)
To: intel-gfx, Anshuman Gupta
On Wed, Oct 28, 2020 at 05:50:13AM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/i915: Fix encoder lookup during PSR atomic check
> URL : https://patchwork.freedesktop.org/series/83102/
> State : success
Thanks for the review, pushed to -dinq.
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_9206_full -> Patchwork_18787_full
> ====================================================
>
> Summary
> -------
>
> **SUCCESS**
>
> No regressions found.
>
>
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in Patchwork_18787_full:
>
> ### IGT changes ###
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile}:
> - shard-skl: NOTRUN -> [FAIL][1]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
>
>
>
> ### Piglit changes ###
>
> #### Possible regressions ####
>
> * spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4 (NEW):
> - {pig-icl-1065g7}: NOTRUN -> [INCOMPLETE][2] +3 similar issues
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/pig-icl-1065g7/spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4.html
>
>
> New tests
> ---------
>
> New tests have been introduced between CI_DRM_9206_full and Patchwork_18787_full:
>
> ### New CI tests (1) ###
>
> * boot:
> - Statuses : 200 pass(s)
> - Exec time: [0.0] s
>
>
>
>
> ### New Piglit tests (4) ###
>
> * spec@glsl-4.00@execution@built-in-functions@fs-op-mult-dmat3x4-dmat3:
> - Statuses : 1 incomplete(s)
> - Exec time: [0.0] s
>
> * spec@glsl-4.00@execution@built-in-functions@fs-op-mult-dmat4-dmat3x4:
> - Statuses : 1 incomplete(s)
> - Exec time: [0.0] s
>
> * spec@glsl-4.00@execution@built-in-functions@fs-op-mult-double-dmat4:
> - Statuses : 1 incomplete(s)
> - Exec time: [0.0] s
>
> * spec@glsl-4.00@execution@built-in-functions@gs-op-div-double-dmat3x4:
> - Statuses : 1 incomplete(s)
> - Exec time: [0.0] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in Patchwork_18787_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@core_hotunplug@hotrebind-lateclose:
> - shard-snb: [PASS][3] -> [INCOMPLETE][4] ([i915#82])
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-snb2/igt@core_hotunplug@hotrebind-lateclose.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-snb4/igt@core_hotunplug@hotrebind-lateclose.html
>
> * igt@drm_read@empty-block:
> - shard-glk: [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk2/igt@drm_read@empty-block.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk6/igt@drm_read@empty-block.html
>
> * igt@gen9_exec_parse@allowed-single:
> - shard-skl: [PASS][7] -> [DMESG-WARN][8] ([i915#1436] / [i915#716])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@gen9_exec_parse@allowed-single.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@gen9_exec_parse@allowed-single.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
> - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([i915#1635] / [i915#1982]) +1 similar issue
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl7/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
>
> * igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge:
> - shard-skl: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +1 similar issue
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
> - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2346])
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@short-flip-after-cursor-toggle:
> - shard-hsw: [PASS][15] -> [DMESG-WARN][16] ([i915#1982]) +2 similar issues
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw4/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw6/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack:
> - shard-tglb: [PASS][17] -> [INCOMPLETE][18] ([i915#2606]) +2 similar issues
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
> - shard-tglb: [PASS][19] -> [INCOMPLETE][20] ([i915#2606] / [i915#750])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt:
> - shard-skl: [PASS][21] -> [INCOMPLETE][22] ([i915#123] / [i915#2606]) +1 similar issue
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
> - shard-skl: [PASS][23] -> [INCOMPLETE][24] ([i915#123]) +4 similar issues
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> - shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +3 similar issues
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
>
> * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
> - shard-skl: [PASS][27] -> [DMESG-FAIL][28] ([fdo#108145] / [i915#1982])
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
>
> * igt@kms_psr@cursor_render:
> - shard-skl: [PASS][29] -> [INCOMPLETE][30] ([i915#2606])
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@kms_psr@cursor_render.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@kms_psr@cursor_render.html
>
> * igt@kms_psr@sprite_plane_onoff:
> - shard-iclb: [PASS][31] -> [INCOMPLETE][32] ([i915#2606]) +1 similar issue
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb4/igt@kms_psr@sprite_plane_onoff.html
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb6/igt@kms_psr@sprite_plane_onoff.html
>
> * igt@sysfs_preempt_timeout@timeout@rcs0:
> - shard-skl: [PASS][33] -> [FAIL][34] ([i915#2060]) +1 similar issue
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@sysfs_preempt_timeout@timeout@rcs0.html
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@sysfs_preempt_timeout@timeout@rcs0.html
>
> * igt@sysfs_timeslice_duration@timeout@bcs0:
> - shard-skl: [PASS][35] -> [FAIL][36] ([i915#1732]) +1 similar issue
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@sysfs_timeslice_duration@timeout@bcs0.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@sysfs_timeslice_duration@timeout@bcs0.html
>
>
> #### Possible fixes ####
>
> * igt@gem_exec_gttfill@all:
> - shard-glk: [DMESG-WARN][37] ([i915#118] / [i915#95]) -> [PASS][38]
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk5/igt@gem_exec_gttfill@all.html
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk1/igt@gem_exec_gttfill@all.html
>
> * igt@gem_exec_whisper@basic-contexts-priority:
> - shard-iclb: [INCOMPLETE][39] -> [PASS][40]
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb3/igt@gem_exec_whisper@basic-contexts-priority.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb1/igt@gem_exec_whisper@basic-contexts-priority.html
>
> * igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent:
> - shard-skl: [FAIL][41] ([i915#54]) -> [PASS][42]
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent.html
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-alpha-transparent.html
>
> * igt@kms_cursor_crc@pipe-c-cursor-suspend:
> - shard-apl: [INCOMPLETE][43] ([i915#1635]) -> [PASS][44] +1 similar issue
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
>
> * igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge:
> - shard-glk: [DMESG-WARN][45] ([i915#1982]) -> [PASS][46] +1 similar issue
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk1/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html
>
> * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled:
> - shard-hsw: [DMESG-WARN][47] ([i915#1982]) -> [PASS][48]
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw6/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw4/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
> - shard-tglb: [INCOMPLETE][49] -> [PASS][50]
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-skl: [DMESG-WARN][51] ([i915#2606]) -> [PASS][52]
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
> - shard-skl: [INCOMPLETE][53] ([i915#123]) -> [PASS][54] +2 similar issues
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
>
> * igt@kms_plane@plane-position-hole-dpms-pipe-a-planes:
> - shard-skl: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +1 similar issue
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html
>
> * igt@kms_plane_lowres@pipe-a-tiling-x:
> - shard-kbl: [DMESG-WARN][57] ([i915#165] / [i915#78]) -> [PASS][58]
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-kbl6/igt@kms_plane_lowres@pipe-a-tiling-x.html
>
> * igt@kms_psr@cursor_blt:
> - shard-skl: [INCOMPLETE][59] ([i915#2606]) -> [PASS][60]
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@kms_psr@cursor_blt.html
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@kms_psr@cursor_blt.html
>
> * igt@kms_setmode@basic:
> - shard-glk: [FAIL][61] ([i915#31]) -> [PASS][62]
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-glk4/igt@kms_setmode@basic.html
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-glk7/igt@kms_setmode@basic.html
>
> * igt@kms_vblank@pipe-a-query-forked-busy-hang:
> - shard-apl: [DMESG-WARN][63] ([i915#1635] / [i915#1982]) -> [PASS][64] +1 similar issue
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-apl8/igt@kms_vblank@pipe-a-query-forked-busy-hang.html
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-apl3/igt@kms_vblank@pipe-a-query-forked-busy-hang.html
>
>
> #### Warnings ####
>
> * igt@core_hotunplug@hotrebind-lateclose:
> - shard-hsw: [FAIL][65] -> [WARN][66] ([i915#2283])
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-hsw4/igt@core_hotunplug@hotrebind-lateclose.html
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-hsw6/igt@core_hotunplug@hotrebind-lateclose.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
> - shard-iclb: [DMESG-WARN][67] ([i915#2606]) -> [INCOMPLETE][68] ([i915#2606])
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
> - shard-tglb: [DMESG-WARN][69] ([i915#2606]) -> [INCOMPLETE][70] ([i915#2606]) +1 similar issue
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
>
> * igt@kms_frontbuffer_tracking@psr-slowdraw:
> - shard-skl: [DMESG-WARN][71] ([i915#1982]) -> [INCOMPLETE][72] ([i915#123] / [i915#2606])
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@kms_frontbuffer_tracking@psr-slowdraw.html
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
>
> * igt@runner@aborted:
> - shard-tglb: ([FAIL][73], [FAIL][74], [FAIL][75], [FAIL][76], [FAIL][77], [FAIL][78], [FAIL][79], [FAIL][80], [FAIL][81], [FAIL][82], [FAIL][83], [FAIL][84], [FAIL][85], [FAIL][86], [FAIL][87], [FAIL][88], [FAIL][89], [FAIL][90], [FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94], [FAIL][95], [FAIL][96], [FAIL][97]) ([i915#1764] / [i915#1814] / [i915#456] / [k.org#205379]) -> ([FAIL][98], [FAIL][99], [FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122]) ([i915#1764] / [i915#1814] / [i915#456])
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb2/igt@runner@aborted.html
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb3/igt@runner@aborted.html
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb8/igt@runner@aborted.html
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb5/igt@runner@aborted.html
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb7/igt@runner@aborted.html
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb6/igt@runner@aborted.html
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-tglb1/igt@runner@aborted.html
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb3/igt@runner@aborted.html
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb7/igt@runner@aborted.html
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb5/igt@runner@aborted.html
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb2/igt@runner@aborted.html
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb6/igt@runner@aborted.html
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb8/igt@runner@aborted.html
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-tglb1/igt@runner@aborted.html
> - shard-skl: ([FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1814]) -> ([FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151], [FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162], [FAIL][163], [FAIL][164], [FAIL][165], [FAIL][166], [FAIL][167]) ([i915#1436] / [i915#1814])
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl4/igt@runner@aborted.html
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl8/igt@runner@aborted.html
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl3/igt@runner@aborted.html
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl3/igt@runner@aborted.html
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl4/igt@runner@aborted.html
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@runner@aborted.html
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl2/igt@runner@aborted.html
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl10/igt@runner@aborted.html
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl6/igt@runner@aborted.html
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl9/igt@runner@aborted.html
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl7/igt@runner@aborted.html
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@runner@aborted.html
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl10/igt@runner@aborted.html
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@runner@aborted.html
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@runner@aborted.html
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl2/igt@runner@aborted.html
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl10/igt@runner@aborted.html
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl4/igt@runner@aborted.html
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl6/igt@runner@aborted.html
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl8/igt@runner@aborted.html
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl3/igt@runner@aborted.html
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@runner@aborted.html
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl9/igt@runner@aborted.html
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl7/igt@runner@aborted.html
>
> * igt@sysfs_timeslice_duration@timeout@rcs0:
> - shard-skl: [DMESG-WARN][168] ([i915#1982]) -> [DMESG-FAIL][169] ([i915#1982])
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9206/shard-skl1/igt@sysfs_timeslice_duration@timeout@rcs0.html
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18787/shard-skl1/igt@sysfs_timeslice_duration@timeout@rcs0.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
> [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
> [i915#123]: https://gitlab.freedesktop.org/drm/intel/issues/123
> [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
> [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
> [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
> [i915#1732]: https://gitlab.freedesktop.org/drm/intel/issues/1732
> [i915#1764]: https://gitlab.freedesktop.org/drm/intel/issues/1764
> [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
> [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
> [i915#2060]: https://gitlab.freedesktop.org/drm/intel/issues/2060
> [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
> [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
> [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
> [i915#2606]: https://gitlab.freedesktop.org/drm/intel/issues/2606
> [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
> [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
> [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
> [i915#750]: https://gitlab.freedesktop.org/drm/intel/issues/750
> [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
> [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
> [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
>
>
> Participating hosts (11 -> 11)
> ------------------------------
>
> No changes in participating hosts
>
>
> Build changes
> -------------
>
> * Linux: CI_DRM_9206 -> Patchwork_18787
>
> CI-20190529: 20190529
> CI_DRM_9206: 85ce674ff932ed7ca41aef52d8bb42c04fbe2171 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGT_5827: 7fd7e3fb8b42eb4e62a4575f6edc5a048e5bec3d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> Patchwork_18787: 8e49e14f489cee113b00ffd974180e7b1cb85ca5 @ 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_18787/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-10-28 17:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-27 16:09 [Intel-gfx] [PATCH] drm/i915: Fix encoder lookup during PSR atomic check Imre Deak
2020-10-28 3:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2020-10-28 5:50 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2020-10-28 17:21 ` Imre Deak
2020-10-28 9:00 ` [Intel-gfx] [PATCH] " Anshuman Gupta
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox