* [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed
@ 2022-04-20 9:57 Karol Herbst
2022-04-20 10:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev2) Patchwork
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Karol Herbst @ 2022-04-20 9:57 UTC (permalink / raw)
To: linux-kernel; +Cc: intel-gfx, dri-devel, Karol Herbst, Chris Wilson
i915_vma_reopen checked if the vma is closed before without taking the
lock. So multiple threads could attempt removing the vma.
Instead the lock needs to be taken before actually checking.
v2: move struct declaration
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5732
Signed-off-by: Karol Herbst <kherbst@redhat.com>
---
drivers/gpu/drm/i915/i915_vma.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
index 162e8d83691b..2efdad2b43fa 100644
--- a/drivers/gpu/drm/i915/i915_vma.c
+++ b/drivers/gpu/drm/i915/i915_vma.c
@@ -1615,17 +1615,17 @@ void i915_vma_close(struct i915_vma *vma)
static void __i915_vma_remove_closed(struct i915_vma *vma)
{
- struct intel_gt *gt = vma->vm->gt;
-
- spin_lock_irq(>->closed_lock);
list_del_init(&vma->closed_link);
- spin_unlock_irq(>->closed_lock);
}
void i915_vma_reopen(struct i915_vma *vma)
{
+ struct intel_gt *gt = vma->vm->gt;
+
+ spin_lock_irq(>->closed_lock);
if (i915_vma_is_closed(vma))
__i915_vma_remove_closed(vma);
+ spin_unlock_irq(>->closed_lock);
}
static void force_unbind(struct i915_vma *vma)
@@ -1641,6 +1641,7 @@ static void force_unbind(struct i915_vma *vma)
static void release_references(struct i915_vma *vma, bool vm_ddestroy)
{
struct drm_i915_gem_object *obj = vma->obj;
+ struct intel_gt *gt = vma->vm->gt;
GEM_BUG_ON(i915_vma_is_active(vma));
@@ -1651,7 +1652,9 @@ static void release_references(struct i915_vma *vma, bool vm_ddestroy)
spin_unlock(&obj->vma.lock);
+ spin_lock_irq(>->closed_lock);
__i915_vma_remove_closed(vma);
+ spin_unlock_irq(>->closed_lock);
if (vm_ddestroy)
i915_vm_resv_put(vma->vm);
--
2.35.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev2)
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
@ 2022-04-20 10:46 ` Patchwork
2022-04-20 13:06 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
` (6 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-04-20 10:46 UTC (permalink / raw)
To: Karol Herbst; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4910 bytes --]
== Series Details ==
Series: drm/i915: Fix race in __i915_vma_remove_closed (rev2)
URL : https://patchwork.freedesktop.org/series/102845/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11526 -> Patchwork_102845v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/index.html
Participating hosts (51 -> 46)
------------------------------
Missing (5): fi-cml-u2 fi-hsw-4200u fi-icl-u2 fi-bsw-cyan fi-ctg-p8600
Known issues
------------
Here are the changes found in Patchwork_102845v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: [PASS][1] -> [INCOMPLETE][2] ([i915#4418])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#5341] / [i915#62])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
* igt@kms_pipe_crc_basic@read-crc-pipe-b:
- fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#62]) +11 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
* igt@runner@aborted:
- bat-dg1-6: NOTRUN -> [FAIL][7] ([i915#4312] / [i915#5257])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/bat-dg1-6/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_engines:
- bat-dg1-5: [INCOMPLETE][8] ([i915#4418]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/bat-dg1-5/igt@i915_selftest@live@gt_engines.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/bat-dg1-5/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@hangcheck:
- fi-hsw-g3258: [INCOMPLETE][10] ([i915#4785]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@reset:
- {bat-adlp-6}: [DMESG-FAIL][12] ([i915#4983]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/bat-adlp-6/igt@i915_selftest@live@reset.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/bat-adlp-6/igt@i915_selftest@live@reset.html
* igt@kms_busy@basic@flip:
- {bat-adlp-6}: [DMESG-WARN][14] ([i915#3576]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/bat-adlp-6/igt@kms_busy@basic@flip.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/bat-adlp-6/igt@kms_busy@basic@flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
[i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341
[i915#5722]: https://gitlab.freedesktop.org/drm/intel/issues/5722
[i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
Build changes
-------------
* Linux: CI_DRM_11526 -> Patchwork_102845v2
CI-20190529: 20190529
CI_DRM_11526: 6094ebd5db15c51e89ce9960d782613f8df57c63 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6440: 04262fc75ff3ec42f4db0c929d46b7cd5083911f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_102845v2: 6094ebd5db15c51e89ce9960d782613f8df57c63 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
73275f6b3638 drm/i915: Fix race in __i915_vma_remove_closed
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/index.html
[-- Attachment #2: Type: text/html, Size: 5648 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev2)
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
2022-04-20 10:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev2) Patchwork
@ 2022-04-20 13:06 ` Patchwork
2022-05-02 14:39 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-04-20 13:06 UTC (permalink / raw)
To: Karol Herbst; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 37645 bytes --]
== Series Details ==
Series: drm/i915: Fix race in __i915_vma_remove_closed (rev2)
URL : https://patchwork.freedesktop.org/series/102845/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11526_full -> Patchwork_102845v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_102845v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_102845v2_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 11)
------------------------------
Missing (1): shard-dg1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_102845v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
- shard-glk: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-glk9/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-glk5/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
* igt@kms_rmfb@close-fd:
- shard-tglb: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglb3/igt@kms_rmfb@close-fd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb8/igt@kms_rmfb@close-fd.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_schedule@wide@rcs0:
- {shard-tglu}: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglu-5/igt@gem_exec_schedule@wide@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglu-1/igt@gem_exec_schedule@wide@rcs0.html
Known issues
------------
Here are the changes found in Patchwork_102845v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@many-contexts:
- shard-tglb: [PASS][7] -> [FAIL][8] ([i915#2410])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglb3/igt@gem_ctx_persistence@many-contexts.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-kbl: NOTRUN -> [DMESG-WARN][9] ([i915#5076] / [i915#5614])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-apl: [PASS][10] -> [FAIL][11] ([i915#2842])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [PASS][12] -> [FAIL][13] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-snb: [PASS][14] -> [SKIP][15] ([fdo#109271]) +2 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-snb7/igt@gem_exec_flush@basic-uc-rw-default.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-snb6/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_whisper@basic-queues-forked-all:
- shard-glk: [PASS][16] -> [DMESG-WARN][17] ([i915#118])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-glk8/igt@gem_exec_whisper@basic-queues-forked-all.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-glk1/igt@gem_exec_whisper@basic-queues-forked-all.html
* igt@gem_media_vme:
- shard-skl: NOTRUN -> [SKIP][18] ([fdo#109271]) +62 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@gem_media_vme.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [PASS][19] -> [FAIL][20] ([i915#454])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb8/igt@i915_pm_dc@dc6-psr.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb3/igt@i915_pm_dc@dc6-psr.html
* igt@i915_selftest@live@hangcheck:
- shard-snb: [PASS][21] -> [INCOMPLETE][22] ([i915#3921])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-snb2/igt@i915_selftest@live@hangcheck.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-snb7/igt@i915_selftest@live@hangcheck.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][23] ([i915#5286])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-apl: NOTRUN -> [SKIP][24] ([fdo#109271]) +8 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-skl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#3777])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][26] ([i915#3689] / [i915#3886])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#3886])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-skl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#3886]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109278] / [i915#3886])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109278]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_chamelium@vga-edid-read:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [fdo#111827]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl2/igt@kms_chamelium@vga-edid-read.html
* igt@kms_color_chamelium@pipe-b-ctm-0-25:
- shard-iclb: NOTRUN -> [SKIP][32] ([fdo#109284] / [fdo#111827])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_color_chamelium@pipe-b-ctm-0-25.html
* igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
- shard-kbl: NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-b-ctm-limited-range:
- shard-skl: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][35] -> [FAIL][36] ([i915#2346] / [i915#533])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-kbl: [PASS][37] -> [INCOMPLETE][38] ([i915#180])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][39] -> [FAIL][40] ([i915#79])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-skl: [PASS][41] -> [FAIL][42] ([i915#79])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-skl: [PASS][43] -> [FAIL][44] ([i915#2122]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl10/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109280] / [fdo#111825]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109280]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
- shard-skl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#533])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
- shard-kbl: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#533])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-apl: [PASS][49] -> [DMESG-WARN][50] ([i915#180]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
- shard-skl: [PASS][51] -> [FAIL][52] ([fdo#108145] / [i915#265]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
- shard-skl: NOTRUN -> [FAIL][53] ([i915#265])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-skl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#658]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-kbl: NOTRUN -> [SKIP][55] ([fdo#109271]) +20 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl3/igt@kms_psr@psr2_primary_mmap_cpu.html
- shard-iclb: [PASS][56] -> [SKIP][57] ([fdo#109441]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: [PASS][58] -> [DMESG-WARN][59] ([i915#180]) +6 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@sysfs_clients@fair-1:
- shard-iclb: NOTRUN -> [SKIP][60] ([i915#2994])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb8/igt@sysfs_clients@fair-1.html
* igt@sysfs_clients@sema-50:
- shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#2994])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl2/igt@sysfs_clients@sema-50.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-tglb: [FAIL][62] ([i915#232]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglb1/igt@gem_eio@kms.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- {shard-tglu}: [TIMEOUT][64] ([i915#3063] / [i915#3648]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglu-6/igt@gem_eio@unwedge-stress.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglu-5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-deadline:
- shard-kbl: [FAIL][66] ([i915#2846]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl6/igt@gem_exec_fair@basic-deadline.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [FAIL][68] ([i915#2842]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [FAIL][70] ([i915#2842]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl3/igt@gem_exec_fair@basic-none@vecs0.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: [FAIL][72] ([i915#2842]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: [FAIL][74] ([i915#2842]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][76] ([i915#454]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- {shard-tglu}: [DMESG-WARN][78] ([i915#402]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglu-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglu-8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-kbl: [DMESG-WARN][80] ([i915#180]) -> [PASS][81] +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-iclb: [FAIL][82] ([i915#2346]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-iclb: [SKIP][84] ([i915#3701]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-iclb: [DMESG-WARN][86] ([i915#2867]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
- shard-skl: [FAIL][88] ([fdo#108145] / [i915#265]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
- shard-iclb: [SKIP][90] ([i915#5235]) -> [PASS][91] +2 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format:
- shard-iclb: [INCOMPLETE][92] ([i915#5395]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb2/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb6/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: [SKIP][94] ([fdo#109441]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb5/igt@kms_psr@psr2_no_drrs.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-tglb: [INCOMPLETE][96] -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
- shard-apl: [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +2 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@polling-parameterized:
- shard-skl: [FAIL][100] ([i915#5639]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl1/igt@perf@polling-parameterized.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl9/igt@perf@polling-parameterized.html
#### Warnings ####
* igt@gem_exec_balancer@parallel-contexts:
- shard-iclb: [SKIP][102] ([i915#4525]) -> [DMESG-WARN][103] ([i915#5614]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb3/igt@gem_exec_balancer@parallel-contexts.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [DMESG-WARN][104] ([i915#5614]) -> [SKIP][105] ([i915#4525])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [WARN][106] ([i915#1804]) -> [FAIL][107] ([i915#2680])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
- shard-skl: [SKIP][108] ([fdo#109271]) -> [SKIP][109] ([fdo#109271] / [i915#1888])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl10/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl7/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html
* igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
- shard-skl: [SKIP][110] ([fdo#109271] / [i915#1888]) -> [SKIP][111] ([fdo#109271])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-skl10/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-skl7/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: [FAIL][112] ([i915#4767]) -> [FAIL][113] ([i915#1888] / [i915#4767])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-iclb: [SKIP][114] ([i915#658]) -> [SKIP][115] ([i915#2920])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-iclb: [SKIP][116] ([fdo#111068] / [i915#658]) -> [SKIP][117] ([i915#2920])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([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], [FAIL][146]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl4/igt@runner@aborted.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@runner@aborted.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@runner@aborted.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@runner@aborted.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@runner@aborted.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl6/igt@runner@aborted.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@runner@aborted.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl4/igt@runner@aborted.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl6/igt@runner@aborted.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@runner@aborted.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl1/igt@runner@aborted.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl7/igt@runner@aborted.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-kbl4/igt@runner@aborted.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl4/igt@runner@aborted.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl1/igt@runner@aborted.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl4/igt@runner@aborted.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl4/igt@runner@aborted.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl7/igt@runner@aborted.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@runner@aborted.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@runner@aborted.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl6/igt@runner@aborted.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl7/igt@runner@aborted.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl7/igt@runner@aborted.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-kbl4/igt@runner@aborted.html
- shard-apl: ([FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151], [FAIL][152], [FAIL][153], [FAIL][154]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl3/igt@runner@aborted.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl7/igt@runner@aborted.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl6/igt@runner@aborted.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl2/igt@runner@aborted.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl8/igt@runner@aborted.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl1/igt@runner@aborted.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl4/igt@runner@aborted.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11526/shard-apl6/igt@runner@aborted.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl6/igt@runner@aborted.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl6/igt@runner@aborted.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl4/igt@runner@aborted.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl1/igt@runner@aborted.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl3/igt@runner@aborted.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl1/igt@runner@aborted.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v2/shard-apl8/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#232]: https://gitlab.freedesktop.org/drm/intel/issues/232
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2680]: https://gitlab.freedesktop.org/drm/intel/issues/2680
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3648]: https://gitlab.freedesktop.org/drm/intel/issues/3648
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3777]: https://gitlab.freedesktop.org/drm/intel/issues/3777
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5395]: https://gitlab.freedesktop.org/drm/intel/issues/5395
[i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
[i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
Build changes
-------------
* Linux: CI_DRM_11526 -> Patchwork_102845v2
CI-20190529: 20190529
CI_DRM_11526: 6094ebd5db15c51e89ce9960d782613f8df57c63 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6440: 04262fc75ff3ec42f4db0c929d46b7cd5083911f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_102845v2: 6094ebd5db15c51e89ce9960d782613f8df57c63 @ 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_102845v2/index.html
[-- Attachment #2: Type: text/html, Size: 41391 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
2022-04-20 10:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev2) Patchwork
2022-04-20 13:06 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-02 14:39 ` Karol Herbst
2022-05-03 9:36 ` Tvrtko Ursulin
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Karol Herbst @ 2022-05-02 14:39 UTC (permalink / raw)
To: LKML; +Cc: Intel Graphics Development, dri-devel
friendly ping.
I am not even myself completely convinced that this is the correct
patch and it might just workaround some issues, but list_debug.c does
check if a list was already deleted and throws an error if it was and
this patch indeed fixes this one issue as multiple threads could enter
__i915_vma_remove_closed on the same vma.
On Wed, Apr 20, 2022 at 11:57 AM Karol Herbst <kherbst@redhat.com> wrote:
>
> i915_vma_reopen checked if the vma is closed before without taking the
> lock. So multiple threads could attempt removing the vma.
>
> Instead the lock needs to be taken before actually checking.
>
> v2: move struct declaration
>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: intel-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5732
> Signed-off-by: Karol Herbst <kherbst@redhat.com>
> ---
> drivers/gpu/drm/i915/i915_vma.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index 162e8d83691b..2efdad2b43fa 100644
> --- a/drivers/gpu/drm/i915/i915_vma.c
> +++ b/drivers/gpu/drm/i915/i915_vma.c
> @@ -1615,17 +1615,17 @@ void i915_vma_close(struct i915_vma *vma)
>
> static void __i915_vma_remove_closed(struct i915_vma *vma)
> {
> - struct intel_gt *gt = vma->vm->gt;
> -
> - spin_lock_irq(>->closed_lock);
> list_del_init(&vma->closed_link);
> - spin_unlock_irq(>->closed_lock);
> }
>
> void i915_vma_reopen(struct i915_vma *vma)
> {
> + struct intel_gt *gt = vma->vm->gt;
> +
> + spin_lock_irq(>->closed_lock);
> if (i915_vma_is_closed(vma))
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
> }
>
> static void force_unbind(struct i915_vma *vma)
> @@ -1641,6 +1641,7 @@ static void force_unbind(struct i915_vma *vma)
> static void release_references(struct i915_vma *vma, bool vm_ddestroy)
> {
> struct drm_i915_gem_object *obj = vma->obj;
> + struct intel_gt *gt = vma->vm->gt;
>
> GEM_BUG_ON(i915_vma_is_active(vma));
>
> @@ -1651,7 +1652,9 @@ static void release_references(struct i915_vma *vma, bool vm_ddestroy)
>
> spin_unlock(&obj->vma.lock);
>
> + spin_lock_irq(>->closed_lock);
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
>
> if (vm_ddestroy)
> i915_vm_resv_put(vma->vm);
> --
> 2.35.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (2 preceding siblings ...)
2022-05-02 14:39 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
@ 2022-05-03 9:36 ` Tvrtko Ursulin
2022-05-03 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev3) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Tvrtko Ursulin @ 2022-05-03 9:36 UTC (permalink / raw)
To: Karol Herbst, linux-kernel; +Cc: intel-gfx, dri-devel, Chris Wilson
On 20/04/2022 10:57, Karol Herbst wrote:
> i915_vma_reopen checked if the vma is closed before without taking the
> lock. So multiple threads could attempt removing the vma.
>
> Instead the lock needs to be taken before actually checking.
>
> v2: move struct declaration
Fix looks correct to me. In which case it seems breakage was introduced
with:
Fixes: 155ab8836caa ("drm/i915: Move object close under its own lock")
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: <stable@vger.kernel.org> # v5.3+
AFAICT at least. I will add these tags and pull it in unless someone
shouts a correction.
Regards,
Tvrtko
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: intel-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5732
> Signed-off-by: Karol Herbst <kherbst@redhat.com>
> ---
> drivers/gpu/drm/i915/i915_vma.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index 162e8d83691b..2efdad2b43fa 100644
> --- a/drivers/gpu/drm/i915/i915_vma.c
> +++ b/drivers/gpu/drm/i915/i915_vma.c
> @@ -1615,17 +1615,17 @@ void i915_vma_close(struct i915_vma *vma)
>
> static void __i915_vma_remove_closed(struct i915_vma *vma)
> {
> - struct intel_gt *gt = vma->vm->gt;
> -
> - spin_lock_irq(>->closed_lock);
> list_del_init(&vma->closed_link);
> - spin_unlock_irq(>->closed_lock);
> }
>
> void i915_vma_reopen(struct i915_vma *vma)
> {
> + struct intel_gt *gt = vma->vm->gt;
> +
> + spin_lock_irq(>->closed_lock);
> if (i915_vma_is_closed(vma))
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
> }
>
> static void force_unbind(struct i915_vma *vma)
> @@ -1641,6 +1641,7 @@ static void force_unbind(struct i915_vma *vma)
> static void release_references(struct i915_vma *vma, bool vm_ddestroy)
> {
> struct drm_i915_gem_object *obj = vma->obj;
> + struct intel_gt *gt = vma->vm->gt;
>
> GEM_BUG_ON(i915_vma_is_active(vma));
>
> @@ -1651,7 +1652,9 @@ static void release_references(struct i915_vma *vma, bool vm_ddestroy)
>
> spin_unlock(&obj->vma.lock);
>
> + spin_lock_irq(>->closed_lock);
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
>
> if (vm_ddestroy)
> i915_vm_resv_put(vma->vm);
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev3)
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (3 preceding siblings ...)
2022-05-03 9:36 ` Tvrtko Ursulin
@ 2022-05-03 13:32 ` Patchwork
2022-05-03 17:44 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev4) Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-05-03 13:32 UTC (permalink / raw)
To: Karol Herbst; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10708 bytes --]
== Series Details ==
Series: drm/i915: Fix race in __i915_vma_remove_closed (rev3)
URL : https://patchwork.freedesktop.org/series/102845/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11595 -> Patchwork_102845v3
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_102845v3 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_102845v3, 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_102845v3/index.html
Participating hosts (40 -> 41)
------------------------------
Additional (3): bat-rpls-1 fi-icl-u2 bat-dg1-6
Missing (2): fi-bsw-cyan fi-bdw-5557u
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_102845v3:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_parallel@engines@contexts:
- fi-icl-u2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-icl-u2/igt@gem_exec_parallel@engines@contexts.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gt_heartbeat:
- {fi-tgl-dsi}: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/fi-tgl-dsi/igt@i915_selftest@live@gt_heartbeat.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-tgl-dsi/igt@i915_selftest@live@gt_heartbeat.html
Known issues
------------
Here are the changes found in Patchwork_102845v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg1-6: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-6: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg1-6: NOTRUN -> [SKIP][7] ([i915#1155])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: NOTRUN -> [INCOMPLETE][8] ([i915#4418])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_mocs:
- fi-tgl-1115g4: [PASS][9] -> [DMESG-WARN][10] ([i915#2867]) +22 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/fi-tgl-1115g4/igt@i915_selftest@live@gt_mocs.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-tgl-1115g4/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- fi-tgl-1115g4: [PASS][11] -> [DMESG-FAIL][12] ([i915#3987])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-dg1-6: NOTRUN -> [SKIP][13] ([i915#4212]) +7 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-6: NOTRUN -> [SKIP][14] ([i915#4215])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-snb-2600: NOTRUN -> [SKIP][15] ([fdo#109271] / [fdo#111827])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-snb-2600/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@hdmi-edid-read:
- bat-dg1-6: NOTRUN -> [SKIP][16] ([fdo#111827]) +7 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg1-6: NOTRUN -> [SKIP][17] ([i915#4103] / [i915#4213]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-6: NOTRUN -> [SKIP][18] ([fdo#109285])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#1072] / [i915#4078]) +3 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-6: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-gtt:
- bat-dg1-6: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-userptr:
- bat-dg1-6: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4873])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@basic-write:
- bat-dg1-6: NOTRUN -> [SKIP][23] ([i915#3708]) +3 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@prime_vgem@basic-write.html
* igt@runner@aborted:
- bat-dg1-6: NOTRUN -> [FAIL][24] ([i915#4312] / [i915#5257])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-dg1-6/igt@runner@aborted.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- {bat-rpls-2}: [DMESG-WARN][25] ([i915#4391]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/bat-rpls-2/igt@core_hotunplug@unbind-rebind.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-rpls-2/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live@hangcheck:
- fi-snb-2600: [INCOMPLETE][27] ([i915#3921]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
* igt@kms_flip@basic-flip-vs-modeset@b-edp1:
- {bat-adlp-6}: [DMESG-WARN][29] ([i915#3576]) -> [PASS][30] +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html
#### Warnings ####
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: [SKIP][31] ([fdo#109271] / [i915#4613]) -> [SKIP][32] ([fdo#109271])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11595/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5828]: https://gitlab.freedesktop.org/drm/intel/issues/5828
Build changes
-------------
* Linux: CI_DRM_11595 -> Patchwork_102845v3
CI-20190529: 20190529
CI_DRM_11595: 39f10ae27121125b412db10366fdb066c00d17e1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6464: eddc67c5c85b8ee6eb4d13752ca43da5073dc985 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_102845v3: 39f10ae27121125b412db10366fdb066c00d17e1 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
b708b9fe82eb drm/i915: Fix race in __i915_vma_remove_closed
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v3/index.html
[-- Attachment #2: Type: text/html, Size: 12159 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev4)
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (4 preceding siblings ...)
2022-05-03 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev3) Patchwork
@ 2022-05-03 17:44 ` Patchwork
2022-05-04 13:30 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-04 15:20 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Tvrtko Ursulin
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-05-03 17:44 UTC (permalink / raw)
To: Karol Herbst; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 9459 bytes --]
== Series Details ==
Series: drm/i915: Fix race in __i915_vma_remove_closed (rev4)
URL : https://patchwork.freedesktop.org/series/102845/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11597 -> Patchwork_102845v4
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/index.html
Participating hosts (42 -> 40)
------------------------------
Additional (2): bat-rpls-1 bat-dg1-6
Missing (4): fi-bsw-cyan fi-hsw-4770 fi-icl-u2 bat-dg1-5
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_102845v4:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gt_mocs:
- {bat-rpls-1}: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-rpls-1/igt@i915_selftest@live@gt_mocs.html
Known issues
------------
Here are the changes found in Patchwork_102845v4 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg1-6: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-dg1-6: NOTRUN -> [SKIP][3] ([i915#4077]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-6: NOTRUN -> [SKIP][4] ([i915#4079]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#1155])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_selftest@live@gt_engines:
- bat-dg1-6: NOTRUN -> [INCOMPLETE][6] ([i915#4418])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_lrc:
- fi-bsw-n3050: [PASS][7] -> [DMESG-FAIL][8] ([i915#2373])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/fi-bsw-n3050/igt@i915_selftest@live@gt_lrc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/fi-bsw-n3050/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@gtt:
- fi-bdw-5557u: NOTRUN -> [INCOMPLETE][9] ([i915#5685])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/fi-bdw-5557u/igt@i915_selftest@live@gtt.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-dg1-6: NOTRUN -> [SKIP][10] ([i915#4212]) +7 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-6: NOTRUN -> [SKIP][11] ([i915#4215])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-snb-2600: NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/fi-snb-2600/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@hdmi-edid-read:
- bat-dg1-6: NOTRUN -> [SKIP][13] ([fdo#111827]) +7 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg1-6: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-6: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg1-6: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#4078]) +3 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-6: NOTRUN -> [SKIP][17] ([i915#3555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-gtt:
- bat-dg1-6: NOTRUN -> [SKIP][18] ([i915#3708] / [i915#4077]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-userptr:
- bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4873])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@basic-write:
- bat-dg1-6: NOTRUN -> [SKIP][20] ([i915#3708]) +3 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@prime_vgem@basic-write.html
* igt@runner@aborted:
- bat-dg1-6: NOTRUN -> [FAIL][21] ([i915#4312] / [i915#5257])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-dg1-6/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@coherency:
- fi-bdw-5557u: [INCOMPLETE][22] ([i915#5674] / [i915#5685]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/fi-bdw-5557u/igt@i915_selftest@live@coherency.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/fi-bdw-5557u/igt@i915_selftest@live@coherency.html
* igt@i915_selftest@live@hangcheck:
- fi-snb-2600: [INCOMPLETE][24] ([i915#3921]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
* igt@kms_busy@basic@modeset:
- {bat-adlp-6}: [DMESG-WARN][26] ([i915#3576]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/bat-adlp-6/igt@kms_busy@basic@modeset.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/bat-adlp-6/igt@kms_busy@basic@modeset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5338]: https://gitlab.freedesktop.org/drm/intel/issues/5338
[i915#5674]: https://gitlab.freedesktop.org/drm/intel/issues/5674
[i915#5685]: https://gitlab.freedesktop.org/drm/intel/issues/5685
Build changes
-------------
* Linux: CI_DRM_11597 -> Patchwork_102845v4
CI-20190529: 20190529
CI_DRM_11597: 896c2bfb80a2522f6652358c53584741e0bf1e4b @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6464: eddc67c5c85b8ee6eb4d13752ca43da5073dc985 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_102845v4: 896c2bfb80a2522f6652358c53584741e0bf1e4b @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
c95b77198f55 drm/i915: Fix race in __i915_vma_remove_closed
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/index.html
[-- Attachment #2: Type: text/html, Size: 10713 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev4)
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (5 preceding siblings ...)
2022-05-03 17:44 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev4) Patchwork
@ 2022-05-04 13:30 ` Patchwork
2022-05-04 15:20 ` Tvrtko Ursulin
2022-05-04 15:20 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Tvrtko Ursulin
7 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2022-05-04 13:30 UTC (permalink / raw)
To: Karol Herbst; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 45449 bytes --]
== Series Details ==
Series: drm/i915: Fix race in __i915_vma_remove_closed (rev4)
URL : https://patchwork.freedesktop.org/series/102845/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11597_full -> Patchwork_102845v4_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_102845v4_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_102845v4_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_102845v4_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_persistence@engines-hostile@vecs0:
- shard-apl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@gem_ctx_persistence@engines-hostile@vecs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_ctx_persistence@engines-hostile@vecs0.html
* {igt@kms_concurrent@pipe-a@hdmi-a-3} (NEW):
- {shard-dg1}: NOTRUN -> [CRASH][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-dg1-18/igt@kms_concurrent@pipe-a@hdmi-a-3.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rpm@cursor-dpms:
- {shard-rkl}: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@system-suspend-devices:
- {shard-dg1}: NOTRUN -> [INCOMPLETE][5] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-dg1-18/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live@hangcheck:
- {shard-rkl}: NOTRUN -> [DMESG-FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_selftest@live@hangcheck.html
New tests
---------
New tests have been introduced between CI_DRM_11597_full and Patchwork_102845v4_full:
### New IGT tests (1) ###
* igt@kms_concurrent@pipe-a@hdmi-a-3:
- Statuses : 1 crash(s)
- Exec time: [0.03] s
Known issues
------------
Here are the changes found in Patchwork_102845v4_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_eio@unwedge-stress:
- shard-skl: [PASS][7] -> [TIMEOUT][8] ([i915#3063])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl6/igt@gem_eio@unwedge-stress.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl1/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-kbl: [PASS][9] -> [FAIL][10] ([i915#2842]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: [PASS][13] -> [FAIL][14] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_flink_race@flink_close:
- shard-iclb: [PASS][16] -> [FAIL][17] ([i915#5687])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb2/igt@gem_flink_race@flink_close.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb5/igt@gem_flink_race@flink_close.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [PASS][18] -> [SKIP][19] ([i915#2190])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb2/igt@gem_huc_copy@huc-copy.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][21] ([i915#2658])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@gem_pwrite@basic-exhaustion.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][22] -> [DMESG-WARN][23] ([i915#5566] / [i915#716])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk7/igt@gen9_exec_parse@allowed-single.html
- shard-kbl: [PASS][24] -> [DMESG-WARN][25] ([i915#5566] / [i915#716])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@gen9_exec_parse@allowed-single.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [PASS][26] -> [FAIL][27] ([i915#454])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_selftest@live@hangcheck:
- shard-snb: [PASS][28] -> [INCOMPLETE][29] ([i915#3921])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb6/igt@i915_selftest@live@hangcheck.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb2/igt@i915_selftest@live@hangcheck.html
* igt@i915_suspend@debugfs-reader:
- shard-kbl: [PASS][30] -> [DMESG-WARN][31] ([i915#180]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl7/igt@i915_suspend@debugfs-reader.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@i915_suspend@debugfs-reader.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3886]) +8 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cdclk@plane-scaling:
- shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271]) +102 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium@vga-hpd-after-suspend:
- shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +7 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_chamelium@vga-hpd-after-suspend.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-skl: [PASS][35] -> [INCOMPLETE][36] ([i915#5713])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-skl: [PASS][37] -> [FAIL][38] ([i915#79])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
- shard-snb: [PASS][39] -> [SKIP][40] ([fdo#109271]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [PASS][41] -> [DMESG-WARN][42] ([i915#180])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-skl: [PASS][43] -> [INCOMPLETE][44] ([i915#4939])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl4/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl4/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
- shard-glk: [PASS][45] -> [FAIL][46] ([i915#2122])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk5/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-tglb: [PASS][47] -> [DMESG-WARN][48] ([i915#2411])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
- shard-apl: NOTRUN -> [FAIL][49] ([fdo#108145] / [i915#265])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#658]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_primary_mmap_gtt:
- shard-iclb: [PASS][51] -> [SKIP][52] ([fdo#109441])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb5/igt@kms_psr@psr2_primary_mmap_gtt.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2437])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_writeback@writeback-check-output.html
* igt@perf@polling-parameterized:
- shard-skl: [PASS][54] -> [FAIL][55] ([i915#5639])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@perf@polling-parameterized.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@perf@polling-parameterized.html
- shard-tglb: [PASS][56] -> [FAIL][57] ([i915#5639])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb2/igt@perf@polling-parameterized.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb7/igt@perf@polling-parameterized.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#2994])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@sysfs_clients@fair-0.html
#### Possible fixes ####
* igt@fbdev@read:
- {shard-rkl}: [SKIP][59] ([i915#2582]) -> [PASS][60] +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@fbdev@read.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@fbdev@read.html
* igt@gem_blits@basic:
- {shard-rkl}: [INCOMPLETE][61] ([i915#5855]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@gem_blits@basic.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-4/igt@gem_blits@basic.html
* igt@gem_ctx_persistence@engines-hostile@rcs0:
- shard-apl: [FAIL][63] -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@gem_ctx_persistence@engines-hostile@rcs0.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_ctx_persistence@engines-hostile@rcs0.html
* igt@gem_ctx_persistence@many-contexts:
- {shard-rkl}: [FAIL][65] ([i915#2410]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][67] ([i915#5784]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb5/igt@gem_eio@kms.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb6/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-iclb: [TIMEOUT][69] ([i915#3070]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb4/igt@gem_eio@unwedge-stress.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb6/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][71] ([i915#2842]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglb: [FAIL][73] ([i915#2842]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-kbl: [FAIL][75] ([i915#2842]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- {shard-rkl}: [FAIL][77] ([i915#5115]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices@smem.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@i915_pm_backlight@basic-brightness:
- {shard-rkl}: [SKIP][79] ([i915#3012]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@system-suspend-modeset:
- {shard-rkl}: [SKIP][81] ([fdo#109308]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@i915_pm_rpm@system-suspend-modeset.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_pm_rps@waitboost:
- {shard-rkl}: [FAIL][83] ([i915#4016]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@i915_pm_rps@waitboost.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_pm_rps@waitboost.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][85] ([i915#180]) -> [PASS][86] +3 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
- {shard-rkl}: [FAIL][87] ([fdo#103375]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_color@pipe-b-ctm-negative:
- {shard-rkl}: [SKIP][89] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_color@pipe-b-ctm-negative.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_color@pipe-b-ctm-negative.html
* igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen:
- {shard-rkl}: [SKIP][91] ([fdo#112022] / [i915#4070]) -> [PASS][92] +3 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html
* igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge:
- {shard-rkl}: [SKIP][93] ([i915#4070] / [i915#4098]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge:
- {shard-rkl}: [SKIP][95] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][96] +1 similar issue
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-2/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
- {shard-rkl}: [SKIP][97] ([fdo#111825] / [i915#4070]) -> [PASS][98] +3 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
* igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
- {shard-rkl}: [SKIP][99] ([i915#4098] / [i915#4369]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled:
- {shard-rkl}: [SKIP][101] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][102] +3 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-2/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-apl: [FAIL][103] ([i915#4767]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-glk: [FAIL][105] ([i915#4911]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- {shard-rkl}: [SKIP][107] ([i915#1849] / [i915#4098]) -> [PASS][108] +20 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_invalid_mode@clock-too-high:
- shard-snb: [SKIP][109] ([fdo#109271]) -> [PASS][110] +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb2/igt@kms_invalid_mode@clock-too-high.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-apl: [DMESG-WARN][111] ([i915#180] / [i915#1982]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
- shard-skl: [FAIL][113] ([fdo#108145] / [i915#265]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
* igt@kms_plane_cursor@pipe-b-overlay-size-256:
- {shard-rkl}: [SKIP][115] ([i915#1845] / [i915#4098]) -> [PASS][116] +12 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_plane_cursor@pipe-b-overlay-size-256.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_cursor@pipe-b-overlay-size-256.html
* igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
- {shard-rkl}: [SKIP][117] ([i915#3558] / [i915#4070]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
* igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
- {shard-rkl}: [SKIP][119] ([i915#1849] / [i915#3558] / [i915#4070]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
* igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping:
- shard-iclb: [SKIP][121] ([i915#5176]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
* igt@kms_psr@sprite_plane_onoff:
- {shard-rkl}: [SKIP][123] ([i915#1072]) -> [PASS][124] +2 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_psr@sprite_plane_onoff.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- {shard-rkl}: [SKIP][125] ([i915#5461]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-a:
- {shard-rkl}: [SKIP][127] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html
* igt@perf@polling-small-buf:
- shard-skl: [FAIL][129] ([i915#1722]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl7/igt@perf@polling-small-buf.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl7/igt@perf@polling-small-buf.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-skl: [SKIP][131] ([fdo#109271]) -> [SKIP][132] ([fdo#109271] / [i915#1888])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl7/igt@gem_ccs@ctrl-surf-copy.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_eio@unwedge-stress:
- shard-tglb: [TIMEOUT][133] ([i915#3063]) -> [FAIL][134] ([i915#5784])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb7/igt@gem_eio@unwedge-stress.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb3/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-iclb: [SKIP][135] ([i915#4525]) -> [DMESG-WARN][136] ([i915#5614]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
- shard-iclb: [SKIP][137] ([i915#5176]) -> [INCOMPLETE][138] ([i915#5243])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][139] ([fdo#111068] / [i915#658]) -> [SKIP][140] ([i915#2920])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([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]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@runner@aborted.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@runner@aborted.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@runner@aborted.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@runner@aborted.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl7/igt@runner@aborted.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@runner@aborted.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl3/igt@runner@aborted.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@runner@aborted.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl3/igt@runner@aborted.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl7/igt@runner@aborted.html
- shard-apl: ([FAIL][166], [FAIL][167], [FAIL][168], [FAIL][169], [FAIL][170], [FAIL][171], [FAIL][172], [FAIL][173], [FAIL][174], [FAIL][175], [FAIL][176]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][177], [FAIL][178], [FAIL][179], [FAIL][180], [FAIL][181], [FAIL][182], [FAIL][183]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl2/igt@runner@aborted.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@runner@aborted.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@runner@aborted.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@runner@aborted.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@runner@aborted.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@runner@aborted.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@runner@aborted.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl1/igt@runner@aborted.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl7/igt@runner@aborted.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl6/igt@runner@aborted.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
[i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
[i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
[i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
[i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5243]: https://gitlab.freedesktop.org/drm/intel/issues/5243
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
[i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
[i915#5687]: https://gitlab.freedesktop.org/drm/intel/issues/5687
[i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
[i915#5713]: https://gitlab.freedesktop.org/drm/intel/issues/5713
[i915#5775]: https://gitlab.freedesktop.org/drm/intel/issues/5775
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5849]: https://gitlab.freedesktop.org/drm/intel/issues/5849
[i915#5855]: https://gitlab.freedesktop.org/drm/intel/issues/5855
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* Linux: CI_DRM_11597 -> Patchwork_102845v4
CI-20190529: 20190529
CI_DRM_11597: 896c2bfb80a2522f6652358c53584741e0bf1e4b @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6464: eddc67c5c85b8ee6eb4d13752ca43da5073dc985 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_102845v4: 896c2bfb80a2522f6652358c53584741e0bf1e4b @ 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_102845v4/index.html
[-- Attachment #2: Type: text/html, Size: 45614 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev4)
2022-05-04 13:30 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-04 15:20 ` Tvrtko Ursulin
0 siblings, 0 replies; 10+ messages in thread
From: Tvrtko Ursulin @ 2022-05-04 15:20 UTC (permalink / raw)
To: intel-gfx, Patchwork, Karol Herbst
On 04/05/2022 14:30, Patchwork wrote:
> *Patch Details*
> *Series:* drm/i915: Fix race in __i915_vma_remove_closed (rev4)
> *URL:* https://patchwork.freedesktop.org/series/102845/
> <https://patchwork.freedesktop.org/series/102845/>
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/index.html
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/index.html>
>
>
> CI Bug Log - changes from CI_DRM_11597_full -> Patchwork_102845v4_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with Patchwork_102845v4_full absolutely
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_102845v4_full, please notify your bug team to
> allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
> Participating hosts (13 -> 13)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> Patchwork_102845v4_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@gem_ctx_persistence@engines-hostile@vecs0:
>
> o shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@gem_ctx_persistence@engines-hostile@vecs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_ctx_persistence@engines-hostile@vecs0.html>
> *
>
> {igt@kms_concurrent@pipe-a@hdmi-a-3} (NEW):
>
> o {shard-dg1}: NOTRUN -> CRASH
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-dg1-18/igt@kms_concurrent@pipe-a@hdmi-a-3.html>
Neither failure is new - will merge.
Regards,
Tvrtko
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> *
>
> igt@i915_pm_rpm@cursor-dpms:
>
> o {shard-rkl}: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_pm_rpm@cursor-dpms.html>
> *
>
> igt@i915_pm_rpm@system-suspend-devices:
>
> o {shard-dg1}: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-dg1-18/igt@i915_pm_rpm@system-suspend-devices.html>
> +1 similar issue
> *
>
> igt@i915_selftest@live@hangcheck:
>
> o {shard-rkl}: NOTRUN -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_selftest@live@hangcheck.html>
>
>
> New tests
>
> New tests have been introduced between CI_DRM_11597_full and
> Patchwork_102845v4_full:
>
>
> New IGT tests (1)
>
> * igt@kms_concurrent@pipe-a@hdmi-a-3:
> o Statuses : 1 crash(s)
> o Exec time: [0.03] s
>
>
> Known issues
>
> Here are the changes found in Patchwork_102845v4_full that come from
> known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-skl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl6/igt@gem_eio@unwedge-stress.html>
> -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl1/igt@gem_eio@unwedge-stress.html>
> (i915#3063 <https://gitlab.freedesktop.org/drm/intel/issues/3063>)
> *
>
> igt@gem_exec_fair@basic-none-vip@rcs0:
>
> o shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2
> similar issues
> *
>
> igt@gem_exec_fair@basic-none@vecs0:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-pace@bcs0:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb5/igt@gem_exec_fair@basic-pace@bcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-pace@vcs1:
>
> o shard-iclb: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_flink_race@flink_close:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb2/igt@gem_flink_race@flink_close.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb5/igt@gem_flink_race@flink_close.html>
> (i915#5687 <https://gitlab.freedesktop.org/drm/intel/issues/5687>)
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb2/igt@gem_huc_copy@huc-copy.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb7/igt@gem_huc_copy@huc-copy.html>
> (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> *
>
> igt@gem_lmem_swapping@heavy-random:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@gem_lmem_swapping@heavy-random.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1
> similar issue
> *
>
> igt@gem_pwrite@basic-exhaustion:
>
> o shard-apl: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@gem_pwrite@basic-exhaustion.html>
> (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>)
> *
>
> igt@gen9_exec_parse@allowed-single:
>
> o
>
> shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk8/igt@gen9_exec_parse@allowed-single.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk7/igt@gen9_exec_parse@allowed-single.html>
> (i915#5566
> <https://gitlab.freedesktop.org/drm/intel/issues/5566> /
> i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>
> o
>
> shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@gen9_exec_parse@allowed-single.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@gen9_exec_parse@allowed-single.html>
> (i915#5566
> <https://gitlab.freedesktop.org/drm/intel/issues/5566> /
> i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>
> *
>
> igt@i915_pm_dc@dc6-dpms:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html>
> (i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
> *
>
> igt@i915_selftest@live@hangcheck:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb6/igt@i915_selftest@live@hangcheck.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb2/igt@i915_selftest@live@hangcheck.html>
> (i915#3921 <https://gitlab.freedesktop.org/drm/intel/issues/3921>)
> *
>
> igt@i915_suspend@debugfs-reader:
>
> o shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl7/igt@i915_suspend@debugfs-reader.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@i915_suspend@debugfs-reader.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> +1 similar issue
> *
>
> igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +8
> similar issues
> *
>
> igt@kms_cdclk@plane-scaling:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@kms_cdclk@plane-scaling.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +102
> similar issues
> *
>
> igt@kms_chamelium@vga-hpd-after-suspend:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_chamelium@vga-hpd-after-suspend.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +7
> similar issues
> *
>
> igt@kms_cursor_crc@pipe-b-cursor-suspend:
>
> o shard-skl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html>
> (i915#5713 <https://gitlab.freedesktop.org/drm/intel/issues/5713>)
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>
> o shard-skl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2
> similar issues
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
>
> o shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
>
> o shard-skl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl4/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl4/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html>
> (i915#4939 <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
> *
>
> igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk5/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html>
> (i915#2122 <https://gitlab.freedesktop.org/drm/intel/issues/2122>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-suspend:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411>)
> *
>
> igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>
> o shard-apl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html>
> (fdo#108145
> <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> *
>
> igt@kms_psr2_su@page_flip-xrgb8888:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_psr2_su@page_flip-xrgb8888.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
> *
>
> igt@kms_psr@psr2_primary_mmap_gtt:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb5/igt@kms_psr@psr2_primary_mmap_gtt.html>
> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
> *
>
> igt@kms_writeback@writeback-check-output:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@kms_writeback@writeback-check-output.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
> *
>
> igt@perf@polling-parameterized:
>
> o
>
> shard-skl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@perf@polling-parameterized.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@perf@polling-parameterized.html>
> (i915#5639 <https://gitlab.freedesktop.org/drm/intel/issues/5639>)
>
> o
>
> shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb2/igt@perf@polling-parameterized.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb7/igt@perf@polling-parameterized.html>
> (i915#5639 <https://gitlab.freedesktop.org/drm/intel/issues/5639>)
>
> *
>
> igt@sysfs_clients@fair-0:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@sysfs_clients@fair-0.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>
>
> Possible fixes
>
> *
>
> igt@fbdev@read:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@fbdev@read.html>
> (i915#2582
> <https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@fbdev@read.html>
> +1 similar issue
> *
>
> igt@gem_blits@basic:
>
> o {shard-rkl}: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@gem_blits@basic.html>
> (i915#5855
> <https://gitlab.freedesktop.org/drm/intel/issues/5855>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-4/igt@gem_blits@basic.html>
> *
>
> igt@gem_ctx_persistence@engines-hostile@rcs0:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@gem_ctx_persistence@engines-hostile@rcs0.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_ctx_persistence@engines-hostile@rcs0.html>
> *
>
> igt@gem_ctx_persistence@many-contexts:
>
> o {shard-rkl}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html>
> (i915#2410
> <https://gitlab.freedesktop.org/drm/intel/issues/2410>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html>
> *
>
> igt@gem_eio@kms:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb5/igt@gem_eio@kms.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb6/igt@gem_eio@kms.html>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-iclb: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb4/igt@gem_eio@unwedge-stress.html>
> (i915#3070
> <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb6/igt@gem_eio@unwedge-stress.html>
> *
>
> igt@gem_exec_fair@basic-none-solo@rcs0:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb5/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_102845v4/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace@vcs0:
>
> o shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>
> *
>
> igt@gem_exec_suspend@basic-s3-devices@smem:
>
> o {shard-rkl}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices@smem.html>
> (i915#5115
> <https://gitlab.freedesktop.org/drm/intel/issues/5115>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices@smem.html>
> *
>
> igt@i915_pm_backlight@basic-brightness:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html>
> (i915#3012
> <https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
> *
>
> igt@i915_pm_rpm@system-suspend-modeset:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@i915_pm_rpm@system-suspend-modeset.html>
> (fdo#109308
> <https://bugs.freedesktop.org/show_bug.cgi?id=109308>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@i915_pm_rpm@system-suspend-modeset.html>
> *
>
> igt@i915_pm_rps@waitboost:
>
> o {shard-rkl}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@i915_pm_rps@waitboost.html>
> (i915#4016
> <https://gitlab.freedesktop.org/drm/intel/issues/4016>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-5/igt@i915_pm_rps@waitboost.html>
> *
>
> igt@i915_suspend@fence-restore-tiled2untiled:
>
> o
>
> shard-apl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html>
> +3 similar issues
>
> o
>
> {shard-rkl}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html>
> (fdo#103375
> <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html>
>
> *
>
> igt@kms_color@pipe-b-ctm-negative:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_color@pipe-b-ctm-negative.html>
> (i915#1149
> <https://gitlab.freedesktop.org/drm/intel/issues/1149> /
> i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>
> / i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_color@pipe-b-ctm-negative.html>
> *
>
> igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html>
> (fdo#112022
> <https://bugs.freedesktop.org/show_bug.cgi?id=112022> /
> i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html>
> +3 similar issues
> *
>
> igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html>
> *
>
> igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-2/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
> / i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html>
> +1 similar issue
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html>
> +3 similar issues
> *
>
> igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#4369
> <https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html>
> *
>
> igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-2/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled.html>
> (fdo#111314
> <https://bugs.freedesktop.org/show_bug.cgi?id=111314> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>
> / i915#4369
> <https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-ytiled.html>
> +3 similar issues
> *
>
> igt@kms_fbcon_fbt@fbc-suspend:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html>
> (i915#4767
> <https://gitlab.freedesktop.org/drm/intel/issues/4767>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html>
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html>
> (i915#4911
> <https://gitlab.freedesktop.org/drm/intel/issues/4911>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html>
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html>
> +20 similar issues
> *
>
> igt@kms_invalid_mode@clock-too-high:
>
> o shard-snb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-snb2/igt@kms_invalid_mode@clock-too-high.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-snb6/igt@kms_invalid_mode@clock-too-high.html>
> +2 similar issues
> *
>
> igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>
> o shard-apl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
> / i915#1982
> <https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> *
>
> igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>
> o shard-skl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl1/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html>
> (fdo#108145
> <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
> <https://gitlab.freedesktop.org/drm/intel/issues/265>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl6/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html>
> *
>
> igt@kms_plane_cursor@pipe-b-overlay-size-256:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_plane_cursor@pipe-b-overlay-size-256.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_cursor@pipe-b-overlay-size-256.html>
> +12 similar issues
> *
>
> igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html>
> (i915#3558
> <https://gitlab.freedesktop.org/drm/intel/issues/3558> /
> i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html>
> *
>
> igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#3558 <https://gitlab.freedesktop.org/drm/intel/issues/3558>
> / i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html>
> *
>
> igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html>
> *
>
> igt@kms_psr@sprite_plane_onoff:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-1/igt@kms_psr@sprite_plane_onoff.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_psr@sprite_plane_onoff.html>
> +2 similar issues
> *
>
> igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#5461
> <https://gitlab.freedesktop.org/drm/intel/issues/5461>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> *
>
> igt@kms_universal_plane@disable-primary-vs-flip-pipe-a:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-rkl-5/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
> / i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html>
> *
>
> igt@perf@polling-small-buf:
>
> o shard-skl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl7/igt@perf@polling-small-buf.html>
> (i915#1722
> <https://gitlab.freedesktop.org/drm/intel/issues/1722>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl7/igt@perf@polling-small-buf.html>
>
>
> Warnings
>
> *
>
> igt@gem_ccs@ctrl-surf-copy:
>
> o shard-skl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-skl7/igt@gem_ccs@ctrl-surf-copy.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-skl7/igt@gem_ccs@ctrl-surf-copy.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1888 <https://gitlab.freedesktop.org/drm/intel/issues/1888>)
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-tglb: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-tglb7/igt@gem_eio@unwedge-stress.html>
> (i915#3063
> <https://gitlab.freedesktop.org/drm/intel/issues/3063>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-tglb3/igt@gem_eio@unwedge-stress.html>
> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>)
> *
>
> igt@gem_exec_balancer@parallel-out-fence:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/intel/issues/4525>) ->
> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html>
> (i915#5614
> <https://gitlab.freedesktop.org/drm/intel/issues/5614>) +1
> similar issue
> *
>
> igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) ->
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html>
> (i915#5243 <https://gitlab.freedesktop.org/drm/intel/issues/5243>)
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html>
> (fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html>
> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
> *
>
> igt@runner@aborted:
>
> o
>
> shard-kbl: (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-kbl7/igt@runner@aborted.html>)
> (i915#3002
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
> i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
> / i915#5257
> <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-kbl7/igt@runner@aborted.html>)
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180
> <https://gitlab.freedesktop.org/drm/intel/issues/180> /
> i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002>
> / i915#4312
> <https://gitlab.freedesktop.org/drm/intel/issues/4312> /
> i915#5257 <https://gitlab.freedesktop.org/drm/intel/issues/5257>
> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>
> o
>
> shard-apl: (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl2/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11597/shard-apl8/igt@runner@aborted.html>)
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180
> <https://gitlab.freedesktop.org/drm/intel/issues/180> /
> i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002>
> / i915#4312
> <https://gitlab.freedesktop.org/drm/intel/issues/4312> /
> i915#5257
> <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl2/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl1/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl7/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl6/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_102845v4/shard-apl8/igt@runner@aborted.html>)
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
> / i915#3002
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
> i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
> / i915#5257 <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
>
> {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_11597 -> Patchwork_102845v4
>
> CI-20190529: 20190529
> CI_DRM_11597: 896c2bfb80a2522f6652358c53584741e0bf1e4b @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_6464: eddc67c5c85b8ee6eb4d13752ca43da5073dc985 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_102845v4: 896c2bfb80a2522f6652358c53584741e0bf1e4b @
> git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
` (6 preceding siblings ...)
2022-05-04 13:30 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-04 15:20 ` Tvrtko Ursulin
7 siblings, 0 replies; 10+ messages in thread
From: Tvrtko Ursulin @ 2022-05-04 15:20 UTC (permalink / raw)
To: Karol Herbst, linux-kernel; +Cc: intel-gfx, dri-devel, Chris Wilson
On 20/04/2022 10:57, Karol Herbst wrote:
> i915_vma_reopen checked if the vma is closed before without taking the
> lock. So multiple threads could attempt removing the vma.
>
> Instead the lock needs to be taken before actually checking.
>
> v2: move struct declaration
>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: intel-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5732
> Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
> ---
> drivers/gpu/drm/i915/i915_vma.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index 162e8d83691b..2efdad2b43fa 100644
> --- a/drivers/gpu/drm/i915/i915_vma.c
> +++ b/drivers/gpu/drm/i915/i915_vma.c
> @@ -1615,17 +1615,17 @@ void i915_vma_close(struct i915_vma *vma)
>
> static void __i915_vma_remove_closed(struct i915_vma *vma)
> {
> - struct intel_gt *gt = vma->vm->gt;
> -
> - spin_lock_irq(>->closed_lock);
> list_del_init(&vma->closed_link);
> - spin_unlock_irq(>->closed_lock);
> }
>
> void i915_vma_reopen(struct i915_vma *vma)
> {
> + struct intel_gt *gt = vma->vm->gt;
> +
> + spin_lock_irq(>->closed_lock);
> if (i915_vma_is_closed(vma))
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
> }
>
> static void force_unbind(struct i915_vma *vma)
> @@ -1641,6 +1641,7 @@ static void force_unbind(struct i915_vma *vma)
> static void release_references(struct i915_vma *vma, bool vm_ddestroy)
> {
> struct drm_i915_gem_object *obj = vma->obj;
> + struct intel_gt *gt = vma->vm->gt;
>
> GEM_BUG_ON(i915_vma_is_active(vma));
>
> @@ -1651,7 +1652,9 @@ static void release_references(struct i915_vma *vma, bool vm_ddestroy)
>
> spin_unlock(&obj->vma.lock);
>
> + spin_lock_irq(>->closed_lock);
> __i915_vma_remove_closed(vma);
> + spin_unlock_irq(>->closed_lock);
>
> if (vm_ddestroy)
> i915_vm_resv_put(vma->vm);
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-05-04 15:20 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-20 9:57 [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
2022-04-20 10:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev2) Patchwork
2022-04-20 13:06 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-02 14:39 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Karol Herbst
2022-05-03 9:36 ` Tvrtko Ursulin
2022-05-03 13:32 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Fix race in __i915_vma_remove_closed (rev3) Patchwork
2022-05-03 17:44 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Fix race in __i915_vma_remove_closed (rev4) Patchwork
2022-05-04 13:30 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-04 15:20 ` Tvrtko Ursulin
2022-05-04 15:20 ` [Intel-gfx] [PATCH v2] drm/i915: Fix race in __i915_vma_remove_closed Tvrtko Ursulin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox