* [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
@ 2020-11-09 12:06 ` Imre Deak
2020-11-09 12:08 ` Chris Wilson
2020-11-09 13:34 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2) Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Imre Deak @ 2020-11-09 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: Chris Wilson
If the delta of a relocation target wrt. the object base address crosses
the 4GB address boundary the upper 32bit of the target address will be
incorrect, fix this.
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
lib/intel_batchbuffer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index fc73495c0..7b4cfb0dd 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -1850,7 +1850,7 @@ static uint64_t __intel_bb_emit_reloc(struct intel_bb *ibb,
intel_bb_out(ibb, delta + address);
if (ibb->gen >= 8)
- intel_bb_out(ibb, address >> 32);
+ intel_bb_out(ibb, (delta + address) >> 32);
return address;
}
--
2.25.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 12:06 ` Imre Deak
@ 2020-11-09 12:08 ` Chris Wilson
2020-11-09 13:02 ` Zbigniew Kempczyński
0 siblings, 1 reply; 14+ messages in thread
From: Chris Wilson @ 2020-11-09 12:08 UTC (permalink / raw)
To: Imre Deak, igt-dev
Quoting Imre Deak (2020-11-09 12:06:32)
> If the delta of a relocation target wrt. the object base address crosses
> the 4GB address boundary the upper 32bit of the target address will be
> incorrect, fix this.
>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
Zbigniew, fancy writing a test case for this?
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 12:08 ` Chris Wilson
@ 2020-11-09 13:02 ` Zbigniew Kempczyński
2020-11-09 13:05 ` Chris Wilson
0 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-09 13:02 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
On Mon, Nov 09, 2020 at 12:08:43PM +0000, Chris Wilson wrote:
> Quoting Imre Deak (2020-11-09 12:06:32)
> > If the delta of a relocation target wrt. the object base address crosses
> > the 4GB address boundary the upper 32bit of the target address will be
> > incorrect, fix this.
> >
> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
>
> Zbigniew, fancy writing a test case for this?
> -Chris
Sure, enqueued.
Apart of fix is correct - I thought we're mostly using delta
to set some bits in commands. What's the real usage?
--
Zbigniew
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 13:02 ` Zbigniew Kempczyński
@ 2020-11-09 13:05 ` Chris Wilson
2020-11-09 13:06 ` Chris Wilson
2020-11-09 13:12 ` Imre Deak
0 siblings, 2 replies; 14+ messages in thread
From: Chris Wilson @ 2020-11-09 13:05 UTC (permalink / raw)
To: zbigniew.kempczynski; +Cc: igt-dev
Quoting Zbigniew Kempczyński (2020-11-09 13:02:14)
> On Mon, Nov 09, 2020 at 12:08:43PM +0000, Chris Wilson wrote:
> > Quoting Imre Deak (2020-11-09 12:06:32)
> > > If the delta of a relocation target wrt. the object base address crosses
> > > the 4GB address boundary the upper 32bit of the target address will be
> > > incorrect, fix this.
> > >
> > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> >
> > Zbigniew, fancy writing a test case for this?
> > -Chris
>
> Sure, enqueued.
>
> Apart of fix is correct - I thought we're mostly using delta
> to set some bits in commands. What's the real usage?
Large offsets would most commonly be used for subsurfaces or auxiliary
state contained within one buffer.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 13:05 ` Chris Wilson
@ 2020-11-09 13:06 ` Chris Wilson
2020-11-09 13:12 ` Imre Deak
1 sibling, 0 replies; 14+ messages in thread
From: Chris Wilson @ 2020-11-09 13:06 UTC (permalink / raw)
To: zbigniew.kempczynski; +Cc: igt-dev
Quoting Chris Wilson (2020-11-09 13:05:29)
> Quoting Zbigniew Kempczyński (2020-11-09 13:02:14)
> > On Mon, Nov 09, 2020 at 12:08:43PM +0000, Chris Wilson wrote:
> > > Quoting Imre Deak (2020-11-09 12:06:32)
> > > > If the delta of a relocation target wrt. the object base address crosses
> > > > the 4GB address boundary the upper 32bit of the target address will be
> > > > incorrect, fix this.
> > > >
> > > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > >
> > > Zbigniew, fancy writing a test case for this?
> > > -Chris
> >
> > Sure, enqueued.
> >
> > Apart of fix is correct - I thought we're mostly using delta
> > to set some bits in commands. What's the real usage?
>
> Large offsets would most commonly be used for subsurfaces or auxiliary
> state contained within one buffer.
Also something to keep in mind is that the delta is actually an s32
despite the u32 field.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 13:05 ` Chris Wilson
2020-11-09 13:06 ` Chris Wilson
@ 2020-11-09 13:12 ` Imre Deak
1 sibling, 0 replies; 14+ messages in thread
From: Imre Deak @ 2020-11-09 13:12 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
On Mon, Nov 09, 2020 at 01:05:29PM +0000, Chris Wilson wrote:
> Quoting Zbigniew Kempczyński (2020-11-09 13:02:14)
> > On Mon, Nov 09, 2020 at 12:08:43PM +0000, Chris Wilson wrote:
> > > Quoting Imre Deak (2020-11-09 12:06:32)
> > > > If the delta of a relocation target wrt. the object base address crosses
> > > > the 4GB address boundary the upper 32bit of the target address will be
> > > > incorrect, fix this.
> > > >
> > > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > >
> > > Zbigniew, fancy writing a test case for this?
> > > -Chris
> >
> > Sure, enqueued.
> >
> > Apart of fix is correct - I thought we're mostly using delta
> > to set some bits in commands. What's the real usage?
>
> Large offsets would most commonly be used for subsurfaces or auxiliary
> state contained within one buffer.
Yes, it came up with a relocation needed for the color clear value
address within a framebuffer object.
> -Chris
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
2020-11-09 12:06 ` Imre Deak
@ 2020-11-09 13:34 ` Patchwork
2020-11-09 15:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2020-11-09 13:34 UTC (permalink / raw)
To: Imre Deak; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 3151 bytes --]
== Series Details ==
Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
URL : https://patchwork.freedesktop.org/series/83644/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9296 -> IGTPW_5146
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
Known issues
------------
Here are the changes found in IGTPW_5146 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-bsw-kefka: [PASS][1] -> [DMESG-WARN][2] ([i915#1982])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@prime_vgem@basic-read:
- fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/fi-tgl-y/igt@prime_vgem@basic-read.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/fi-tgl-y/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries:
- fi-tgl-y: [DMESG-WARN][5] ([i915#402]) -> [PASS][6] +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/fi-tgl-y/igt@debugfs_test@read_all_entries.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/fi-tgl-y/igt@debugfs_test@read_all_entries.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-apl-guc: [DMESG-WARN][7] ([i915#1635] / [i915#1982]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/fi-apl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/fi-apl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@kms_frontbuffer_tracking@basic:
- fi-kbl-soraka: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10] +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/fi-kbl-soraka/igt@kms_frontbuffer_tracking@basic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/fi-kbl-soraka/igt@kms_frontbuffer_tracking@basic.html
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
Participating hosts (43 -> 39)
------------------------------
Missing (4): fi-ilk-m540 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5839 -> IGTPW_5146
CI-20190529: 20190529
CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
[-- Attachment #1.2: Type: text/html, Size: 4065 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
2020-11-09 12:06 ` Imre Deak
2020-11-09 13:34 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2) Patchwork
@ 2020-11-09 15:04 ` Patchwork
2020-11-09 15:26 ` Imre Deak
2020-11-09 17:11 ` Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2020-11-09 15:04 UTC (permalink / raw)
To: Imre Deak; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 27545 bytes --]
== Series Details ==
Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
URL : https://patchwork.freedesktop.org/series/83644/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9296_full -> IGTPW_5146_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5146_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5146_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5146_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@gem_render_tiled_blits@basic:
- shard-snb: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_render_tiled_blits@basic.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_render_tiled_blits@basic.html
* igt@kms_plane_cursor@pipe-b-overlay-size-128:
- shard-glk: [PASS][5] -> [FAIL][6] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
Known issues
------------
Here are the changes found in IGTPW_5146_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@close-race:
- shard-snb: [PASS][7] -> [INCOMPLETE][8] ([i915#2650])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb7/igt@gem_busy@close-race.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@gem_busy@close-race.html
- shard-hsw: [PASS][9] -> [FAIL][10] ([i915#1888])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_busy@close-race.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_busy@close-race.html
* igt@gem_mmap_gtt@pf-nonblock:
- shard-tglb: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +3 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
* igt@gem_partial_pwrite_pread@reads:
- shard-hsw: [PASS][13] -> [FAIL][14] ([i915#1888] / [i915#2261])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_partial_pwrite_pread@reads.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl7/igt@i915_pm_rpm@dpms-non-lpsp.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-apl: [PASS][17] -> [SKIP][18] ([fdo#109271] / [i915#1635])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@i915_pm_rpm@dpms-non-lpsp.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-glk: [PASS][19] -> [SKIP][20] ([fdo#109271])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk1/igt@i915_pm_rpm@dpms-non-lpsp.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_3d:
- shard-tglb: [PASS][21] -> [DMESG-WARN][22] ([i915#402])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@kms_3d.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_3d.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
- shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#1982]) +3 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk7/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge:
- shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#1635] / [i915#1982]) +4 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [PASS][27] -> [FAIL][28] ([i915#96])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#95]) +3 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1:
- shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#1982]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
* igt@kms_plane@plane-panning-bottom-right-pipe-a-planes:
- shard-glk: [PASS][33] -> [FAIL][34] ([i915#1036])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
* igt@kms_properties@connector-properties-legacy:
- shard-kbl: [PASS][35] -> [DMESG-WARN][36] ([i915#165] / [i915#78])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_properties@connector-properties-legacy.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109642] / [fdo#111068])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr2_su@page_flip.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][41] -> [FAIL][42] ([i915#31])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw6/igt@kms_setmode@basic.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@kms_setmode@basic.html
* igt@perf@enable-disable:
- shard-iclb: [PASS][43] -> [SKIP][44] ([i915#1354]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb4/igt@perf@enable-disable.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb1/igt@perf@enable-disable.html
- shard-hsw: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@perf@enable-disable.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@perf@enable-disable.html
- shard-kbl: [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@perf@enable-disable.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@perf@enable-disable.html
- shard-apl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354] / [i915#1635]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@perf@enable-disable.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@perf@enable-disable.html
* igt@perf@oa-exponents:
- shard-tglb: [PASS][51] -> [SKIP][52] ([i915#1354]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@perf@oa-exponents.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@perf@oa-exponents.html
- shard-glk: [PASS][53] -> [SKIP][54] ([fdo#109271] / [i915#1354]) +2 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@perf@oa-exponents.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk2/igt@perf@oa-exponents.html
#### Possible fixes ####
* {igt@core_hotunplug@hotrebind}:
- shard-tglb: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +5 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@core_hotunplug@hotrebind.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@core_hotunplug@hotrebind.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-snb: [INCOMPLETE][57] -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_partial_pwrite_pread@reads-display.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb7/igt@gem_partial_pwrite_pread@reads-display.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-glk: [SKIP][59] ([fdo#109271]) -> [PASS][60] +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@i915_pm_rpm@system-suspend-modeset.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-iclb: [SKIP][61] ([i915#579]) -> [PASS][62] +2 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@i915_pm_rpm@system-suspend-modeset.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-apl: [SKIP][63] ([fdo#109271] / [i915#1635]) -> [PASS][64] +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_suspend@forcewake:
- shard-apl: [INCOMPLETE][65] ([i915#1635]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@i915_suspend@forcewake.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-snb: [FAIL][67] -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [INCOMPLETE][69] ([i915#1635] / [i915#2635]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-iclb: [INCOMPLETE][71] ([i915#1185]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-glk: [INCOMPLETE][73] ([i915#2635]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-hsw: [INCOMPLETE][75] ([i915#2637]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-kbl: [INCOMPLETE][77] ([i915#155]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
- shard-glk: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +4 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge:
- shard-apl: [DMESG-WARN][81] ([i915#1635] / [i915#1982]) -> [PASS][82] +4 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
- shard-hsw: [INCOMPLETE][83] -> [PASS][84] +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1:
- shard-hsw: [DMESG-WARN][85] ([i915#1982]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-iclb: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-snb: [FAIL][89] ([i915#2546]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_frontbuffer_tracking@fbc-badstride.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [SKIP][91] ([fdo#109441]) -> [PASS][92] +3 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-glk: [INCOMPLETE][93] -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vblank@pipe-b-query-forked-busy-hang:
- shard-hsw: [DMESG-WARN][95] ([i915#44]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
- shard-hsw: [SKIP][97] ([fdo#109271]) -> [PASS][98] +6 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-kbl: [SKIP][99] ([fdo#109271]) -> [PASS][100] +4 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-iclb: [SKIP][101] ([fdo#109278]) -> [PASS][102] +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
* igt@kms_vblank@pipe-c-wait-idle:
- shard-kbl: [DMESG-WARN][103] ([i915#1982]) -> [PASS][104] +5 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl6/igt@kms_vblank@pipe-c-wait-idle.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_vblank@pipe-c-wait-idle.html
* igt@perf@disabled-read-error:
- shard-glk: [SKIP][105] ([fdo#109271] / [i915#1354]) -> [PASS][106] +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk9/igt@perf@disabled-read-error.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk6/igt@perf@disabled-read-error.html
- shard-apl: [SKIP][107] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][108] +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl3/igt@perf@disabled-read-error.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl3/igt@perf@disabled-read-error.html
- shard-kbl: [SKIP][109] ([fdo#109271] / [i915#1354]) -> [PASS][110] +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl2/igt@perf@disabled-read-error.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl7/igt@perf@disabled-read-error.html
- shard-tglb: [SKIP][111] ([i915#1354]) -> [PASS][112] +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@perf@disabled-read-error.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@perf@disabled-read-error.html
* igt@perf@invalid-remove-userspace-config:
- shard-iclb: [SKIP][113] ([i915#1354]) -> [PASS][114] +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb6/igt@perf@invalid-remove-userspace-config.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@perf@invalid-remove-userspace-config.html
#### Warnings ####
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: [SKIP][115] ([fdo#111644] / [i915#1397] / [i915#2411]) -> [SKIP][116] ([i915#579])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: [SKIP][117] ([fdo#110892]) -> [SKIP][118] ([i915#579])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-pread:
- shard-tglb: [SKIP][119] ([i915#579]) -> [DMESG-WARN][120] ([i915#2411]) +2 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@i915_pm_rpm@gem-pread.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@gem-pread.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-tglb: [INCOMPLETE][121] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][122] ([i915#2411])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [DMESG-WARN][123] ([i915#1226]) -> [SKIP][124] ([fdo#109349])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-apl: [FAIL][125] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][126] ([fdo#108145] / [i915#1635] / [i915#1982])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
- shard-tglb: [SKIP][127] -> [DMESG-WARN][128] ([i915#2411]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-tglb: [INCOMPLETE][129] ([i915#1436] / [i915#456]) -> [DMESG-WARN][130] ([i915#2411])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@mi-rpc:
- shard-tglb: [SKIP][131] ([fdo#109289]) -> [SKIP][132] ([i915#1354])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@perf@mi-rpc.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb3/igt@perf@mi-rpc.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[i915#1036]: https://gitlab.freedesktop.org/drm/intel/issues/1036
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
[i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
[i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2261]: https://gitlab.freedesktop.org/drm/intel/issues/2261
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
[i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
[i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2650]: https://gitlab.freedesktop.org/drm/intel/issues/2650
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5839 -> IGTPW_5146
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
[-- Attachment #1.2: Type: text/html, Size: 33137 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 15:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-11-09 15:26 ` Imre Deak
2020-11-09 17:26 ` Vudum, Lakshminarayana
0 siblings, 1 reply; 14+ messages in thread
From: Imre Deak @ 2020-11-09 15:26 UTC (permalink / raw)
To: igt-dev; +Cc: Lakshminarayana Vudum
On Mon, Nov 09, 2020 at 03:04:02PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
> URL : https://patchwork.freedesktop.org/series/83644/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_9296_full -> IGTPW_5146_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_5146_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_5146_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_5146_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_ppgtt@blt-vs-render-ctx0:
> - shard-snb: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html
>
> * igt@gem_render_tiled_blits@basic:
> - shard-snb: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_render_tiled_blits@basic.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_render_tiled_blits@basic.html
The change is relevant only on GEN8+, so the above two are on unrelated
platforms.
>
> * igt@kms_plane_cursor@pipe-b-overlay-size-128:
> - shard-glk: [PASS][5] -> [FAIL][6] +1 similar issue
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
This test is using a linear buffer and GTT mapping so doesn't use
GT engines/reloc entries.
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_5146_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@gem_busy@close-race:
> - shard-snb: [PASS][7] -> [INCOMPLETE][8] ([i915#2650])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb7/igt@gem_busy@close-race.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@gem_busy@close-race.html
> - shard-hsw: [PASS][9] -> [FAIL][10] ([i915#1888])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_busy@close-race.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_busy@close-race.html
>
> * igt@gem_mmap_gtt@pf-nonblock:
> - shard-tglb: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +3 similar issues
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
>
> * igt@gem_partial_pwrite_pread@reads:
> - shard-hsw: [PASS][13] -> [FAIL][14] ([i915#1888] / [i915#2261])
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_partial_pwrite_pread@reads.html
>
> * igt@i915_pm_rpm@dpms-non-lpsp:
> - shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271])
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl7/igt@i915_pm_rpm@dpms-non-lpsp.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-apl: [PASS][17] -> [SKIP][18] ([fdo#109271] / [i915#1635])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@i915_pm_rpm@dpms-non-lpsp.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-glk: [PASS][19] -> [SKIP][20] ([fdo#109271])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk1/igt@i915_pm_rpm@dpms-non-lpsp.html
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@dpms-non-lpsp.html
>
> * igt@kms_3d:
> - shard-tglb: [PASS][21] -> [DMESG-WARN][22] ([i915#402])
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@kms_3d.html
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_3d.html
>
> * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
> - shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#1982]) +3 similar issues
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk7/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
>
> * igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge:
> - shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#1635] / [i915#1982]) +4 similar issues
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
> - shard-hsw: [PASS][27] -> [FAIL][28] ([i915#96])
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
>
> * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
> - shard-glk: [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#95]) +3 similar issues
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
>
> * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1:
> - shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#1982]) +1 similar issue
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
>
> * igt@kms_plane@plane-panning-bottom-right-pipe-a-planes:
> - shard-glk: [PASS][33] -> [FAIL][34] ([i915#1036])
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
>
> * igt@kms_properties@connector-properties-legacy:
> - shard-kbl: [PASS][35] -> [DMESG-WARN][36] ([i915#165] / [i915#78])
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_properties@connector-properties-legacy.html
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_properties@connector-properties-legacy.html
>
> * igt@kms_psr2_su@page_flip:
> - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109642] / [fdo#111068])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr2_su@page_flip.html
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr2_su@page_flip.html
>
> * igt@kms_psr@psr2_sprite_plane_move:
> - shard-iclb: [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html
>
> * igt@kms_setmode@basic:
> - shard-hsw: [PASS][41] -> [FAIL][42] ([i915#31])
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw6/igt@kms_setmode@basic.html
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@kms_setmode@basic.html
>
> * igt@perf@enable-disable:
> - shard-iclb: [PASS][43] -> [SKIP][44] ([i915#1354]) +2 similar issues
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb4/igt@perf@enable-disable.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb1/igt@perf@enable-disable.html
> - shard-hsw: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@perf@enable-disable.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@perf@enable-disable.html
> - shard-kbl: [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354]) +2 similar issues
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@perf@enable-disable.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@perf@enable-disable.html
> - shard-apl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354] / [i915#1635]) +2 similar issues
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@perf@enable-disable.html
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@perf@enable-disable.html
>
> * igt@perf@oa-exponents:
> - shard-tglb: [PASS][51] -> [SKIP][52] ([i915#1354]) +1 similar issue
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@perf@oa-exponents.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@perf@oa-exponents.html
> - shard-glk: [PASS][53] -> [SKIP][54] ([fdo#109271] / [i915#1354]) +2 similar issues
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@perf@oa-exponents.html
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk2/igt@perf@oa-exponents.html
>
>
> #### Possible fixes ####
>
> * {igt@core_hotunplug@hotrebind}:
> - shard-tglb: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +5 similar issues
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@core_hotunplug@hotrebind.html
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@core_hotunplug@hotrebind.html
>
> * igt@gem_partial_pwrite_pread@reads-display:
> - shard-snb: [INCOMPLETE][57] -> [PASS][58]
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_partial_pwrite_pread@reads-display.html
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb7/igt@gem_partial_pwrite_pread@reads-display.html
>
> * igt@i915_pm_rpm@system-suspend-modeset:
> - shard-glk: [SKIP][59] ([fdo#109271]) -> [PASS][60] +4 similar issues
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@i915_pm_rpm@system-suspend-modeset.html
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@system-suspend-modeset.html
> - shard-iclb: [SKIP][61] ([i915#579]) -> [PASS][62] +2 similar issues
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@i915_pm_rpm@system-suspend-modeset.html
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html
> - shard-apl: [SKIP][63] ([fdo#109271] / [i915#1635]) -> [PASS][64] +4 similar issues
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
>
> * igt@i915_suspend@forcewake:
> - shard-apl: [INCOMPLETE][65] ([i915#1635]) -> [PASS][66]
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@i915_suspend@forcewake.html
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@i915_suspend@forcewake.html
>
> * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
> - shard-snb: [FAIL][67] -> [PASS][68]
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
>
> * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> - shard-apl: [INCOMPLETE][69] ([i915#1635] / [i915#2635]) -> [PASS][70]
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-iclb: [INCOMPLETE][71] ([i915#1185]) -> [PASS][72]
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-glk: [INCOMPLETE][73] ([i915#2635]) -> [PASS][74]
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-hsw: [INCOMPLETE][75] ([i915#2637]) -> [PASS][76]
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-kbl: [INCOMPLETE][77] ([i915#155]) -> [PASS][78]
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>
> * igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
> - shard-glk: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +4 similar issues
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
>
> * igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge:
> - shard-apl: [DMESG-WARN][81] ([i915#1635] / [i915#1982]) -> [PASS][82] +4 similar issues
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
> - shard-hsw: [INCOMPLETE][83] -> [PASS][84] +1 similar issue
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
>
> * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1:
> - shard-hsw: [DMESG-WARN][85] ([i915#1982]) -> [PASS][86]
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
> - shard-iclb: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88]
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-badstride:
> - shard-snb: [FAIL][89] ([i915#2546]) -> [PASS][90]
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_frontbuffer_tracking@fbc-badstride.html
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@kms_frontbuffer_tracking@fbc-badstride.html
>
> * igt@kms_psr@psr2_cursor_mmap_cpu:
> - shard-iclb: [SKIP][91] ([fdo#109441]) -> [PASS][92] +3 similar issues
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> - shard-glk: [INCOMPLETE][93] -> [PASS][94]
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>
> * igt@kms_vblank@pipe-b-query-forked-busy-hang:
> - shard-hsw: [DMESG-WARN][95] ([i915#44]) -> [PASS][96]
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
>
> * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
> - shard-hsw: [SKIP][97] ([fdo#109271]) -> [PASS][98] +6 similar issues
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> - shard-kbl: [SKIP][99] ([fdo#109271]) -> [PASS][100] +4 similar issues
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> - shard-iclb: [SKIP][101] ([fdo#109278]) -> [PASS][102] +1 similar issue
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
>
> * igt@kms_vblank@pipe-c-wait-idle:
> - shard-kbl: [DMESG-WARN][103] ([i915#1982]) -> [PASS][104] +5 similar issues
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl6/igt@kms_vblank@pipe-c-wait-idle.html
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_vblank@pipe-c-wait-idle.html
>
> * igt@perf@disabled-read-error:
> - shard-glk: [SKIP][105] ([fdo#109271] / [i915#1354]) -> [PASS][106] +1 similar issue
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk9/igt@perf@disabled-read-error.html
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk6/igt@perf@disabled-read-error.html
> - shard-apl: [SKIP][107] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][108] +1 similar issue
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl3/igt@perf@disabled-read-error.html
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl3/igt@perf@disabled-read-error.html
> - shard-kbl: [SKIP][109] ([fdo#109271] / [i915#1354]) -> [PASS][110] +1 similar issue
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl2/igt@perf@disabled-read-error.html
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl7/igt@perf@disabled-read-error.html
> - shard-tglb: [SKIP][111] ([i915#1354]) -> [PASS][112] +1 similar issue
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@perf@disabled-read-error.html
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@perf@disabled-read-error.html
>
> * igt@perf@invalid-remove-userspace-config:
> - shard-iclb: [SKIP][113] ([i915#1354]) -> [PASS][114] +1 similar issue
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb6/igt@perf@invalid-remove-userspace-config.html
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@perf@invalid-remove-userspace-config.html
>
>
> #### Warnings ####
>
> * igt@i915_pm_rpm@dpms-non-lpsp:
> - shard-tglb: [SKIP][115] ([fdo#111644] / [i915#1397] / [i915#2411]) -> [SKIP][116] ([i915#579])
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-iclb: [SKIP][117] ([fdo#110892]) -> [SKIP][118] ([i915#579])
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@dpms-non-lpsp.html
>
> * igt@i915_pm_rpm@gem-pread:
> - shard-tglb: [SKIP][119] ([i915#579]) -> [DMESG-WARN][120] ([i915#2411]) +2 similar issues
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@i915_pm_rpm@gem-pread.html
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@gem-pread.html
>
> * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> - shard-tglb: [INCOMPLETE][121] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][122] ([i915#2411])
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>
> * igt@kms_dp_dsc@basic-dsc-enable-edp:
> - shard-iclb: [DMESG-WARN][123] ([i915#1226]) -> [SKIP][124] ([fdo#109349])
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
>
> * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
> - shard-apl: [FAIL][125] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][126] ([fdo#108145] / [i915#1635] / [i915#1982])
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
> - shard-tglb: [SKIP][127] -> [DMESG-WARN][128] ([i915#2411]) +1 similar issue
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> - shard-tglb: [INCOMPLETE][129] ([i915#1436] / [i915#456]) -> [DMESG-WARN][130] ([i915#2411])
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>
> * igt@perf@mi-rpc:
> - shard-tglb: [SKIP][131] ([fdo#109289]) -> [SKIP][132] ([i915#1354])
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@perf@mi-rpc.html
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb3/igt@perf@mi-rpc.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
> [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
> [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
> [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
> [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
> [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
> [i915#1036]: https://gitlab.freedesktop.org/drm/intel/issues/1036
> [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
> [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
> [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
> [i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
> [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
> [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
> [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
> [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
> [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798
> [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
> [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
> [i915#2261]: https://gitlab.freedesktop.org/drm/intel/issues/2261
> [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
> [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
> [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
> [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
> [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
> [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
> [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
> [i915#2650]: https://gitlab.freedesktop.org/drm/intel/issues/2650
> [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
> [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
> [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
> [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
> [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
> [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
>
>
> Participating hosts (11 -> 8)
> ------------------------------
>
> Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_5839 -> IGTPW_5146
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
> IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 15:26 ` Imre Deak
@ 2020-11-09 17:26 ` Vudum, Lakshminarayana
0 siblings, 0 replies; 14+ messages in thread
From: Vudum, Lakshminarayana @ 2020-11-09 17:26 UTC (permalink / raw)
To: Deak, Imre, igt-dev@lists.freedesktop.org
Re-reported results.
-----Original Message-----
From: Imre Deak <imre.deak@intel.com>
Sent: Monday, November 9, 2020 7:26 AM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
On Mon, Nov 09, 2020 at 03:04:02PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
> URL : https://patchwork.freedesktop.org/series/83644/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_9296_full -> IGTPW_5146_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_5146_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_5146_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_5146_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_ppgtt@blt-vs-render-ctx0:
> - shard-snb: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html
> [2]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem
> _ppgtt@blt-vs-render-ctx0.html
>
> * igt@gem_render_tiled_blits@basic:
> - shard-snb: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_render_tiled_blits@basic.html
> [4]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem
> _render_tiled_blits@basic.html
The change is relevant only on GEN8+, so the above two are on unrelated platforms.
>
> * igt@kms_plane_cursor@pipe-b-overlay-size-128:
> - shard-glk: [PASS][5] -> [FAIL][6] +1 similar issue
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
> [6]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms
> _plane_cursor@pipe-b-overlay-size-128.html
This test is using a linear buffer and GTT mapping so doesn't use GT engines/reloc entries.
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_5146_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@gem_busy@close-race:
> - shard-snb: [PASS][7] -> [INCOMPLETE][8] ([i915#2650])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb7/igt@gem_busy@close-race.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@gem_busy@close-race.html
> - shard-hsw: [PASS][9] -> [FAIL][10] ([i915#1888])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_busy@close-race.html
> [10]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem
> _busy@close-race.html
>
> * igt@gem_mmap_gtt@pf-nonblock:
> - shard-tglb: [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +3 similar issues
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
> [12]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb7/igt@ge
> m_mmap_gtt@pf-nonblock.html
>
> * igt@gem_partial_pwrite_pread@reads:
> - shard-hsw: [PASS][13] -> [FAIL][14] ([i915#1888] / [i915#2261])
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
> [14]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem
> _partial_pwrite_pread@reads.html
>
> * igt@i915_pm_rpm@dpms-non-lpsp:
> - shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271])
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl7/igt@i915_pm_rpm@dpms-non-lpsp.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-apl: [PASS][17] -> [SKIP][18] ([fdo#109271] / [i915#1635])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@i915_pm_rpm@dpms-non-lpsp.html
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-glk: [PASS][19] -> [SKIP][20] ([fdo#109271])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk1/igt@i915_pm_rpm@dpms-non-lpsp.html
> [20]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i91
> 5_pm_rpm@dpms-non-lpsp.html
>
> * igt@kms_3d:
> - shard-tglb: [PASS][21] -> [DMESG-WARN][22] ([i915#402])
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@kms_3d.html
> [22]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@km
> s_3d.html
>
> * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
> - shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#1982]) +3 similar issues
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk7/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
> [24]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms
> _cursor_edge_walk@pipe-b-256x256-left-edge.html
>
> * igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge:
> - shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#1635] / [i915#1982]) +4 similar issues
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
> [26]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms
> _cursor_edge_walk@pipe-c-256x256-bottom-edge.html
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
> - shard-hsw: [PASS][27] -> [FAIL][28] ([i915#96])
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
> [28]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms
> _cursor_legacy@2x-long-cursor-vs-flip-legacy.html
>
> * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
> - shard-glk: [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#95]) +3 similar issues
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
> [30]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms
> _flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
>
> * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1:
> - shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#1982]) +1 similar issue
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
> [32]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms
> _flip@dpms-vs-vblank-race-interruptible@a-dp1.html
>
> * igt@kms_plane@plane-panning-bottom-right-pipe-a-planes:
> - shard-glk: [PASS][33] -> [FAIL][34] ([i915#1036])
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
> [34]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms
> _plane@plane-panning-bottom-right-pipe-a-planes.html
>
> * igt@kms_properties@connector-properties-legacy:
> - shard-kbl: [PASS][35] -> [DMESG-WARN][36] ([i915#165] / [i915#78])
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_properties@connector-properties-legacy.html
> [36]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms
> _properties@connector-properties-legacy.html
>
> * igt@kms_psr2_su@page_flip:
> - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109642] / [fdo#111068])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr2_su@page_flip.html
> [38]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@km
> s_psr2_su@page_flip.html
>
> * igt@kms_psr@psr2_sprite_plane_move:
> - shard-iclb: [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> [40]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@km
> s_psr@psr2_sprite_plane_move.html
>
> * igt@kms_setmode@basic:
> - shard-hsw: [PASS][41] -> [FAIL][42] ([i915#31])
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw6/igt@kms_setmode@basic.html
> [42]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@kms
> _setmode@basic.html
>
> * igt@perf@enable-disable:
> - shard-iclb: [PASS][43] -> [SKIP][44] ([i915#1354]) +2 similar issues
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb4/igt@perf@enable-disable.html
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb1/igt@perf@enable-disable.html
> - shard-hsw: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@perf@enable-disable.html
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@perf@enable-disable.html
> - shard-kbl: [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354]) +2 similar issues
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@perf@enable-disable.html
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@perf@enable-disable.html
> - shard-apl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354] / [i915#1635]) +2 similar issues
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@perf@enable-disable.html
> [50]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@per
> f@enable-disable.html
>
> * igt@perf@oa-exponents:
> - shard-tglb: [PASS][51] -> [SKIP][52] ([i915#1354]) +1 similar issue
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@perf@oa-exponents.html
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@perf@oa-exponents.html
> - shard-glk: [PASS][53] -> [SKIP][54] ([fdo#109271] / [i915#1354]) +2 similar issues
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@perf@oa-exponents.html
> [54]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk2/igt@per
> f@oa-exponents.html
>
>
> #### Possible fixes ####
>
> * {igt@core_hotunplug@hotrebind}:
> - shard-tglb: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +5 similar issues
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@core_hotunplug@hotrebind.html
> [56]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@co
> re_hotunplug@hotrebind.html
>
> * igt@gem_partial_pwrite_pread@reads-display:
> - shard-snb: [INCOMPLETE][57] -> [PASS][58]
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_partial_pwrite_pread@reads-display.html
> [58]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb7/igt@gem
> _partial_pwrite_pread@reads-display.html
>
> * igt@i915_pm_rpm@system-suspend-modeset:
> - shard-glk: [SKIP][59] ([fdo#109271]) -> [PASS][60] +4 similar issues
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@i915_pm_rpm@system-suspend-modeset.html
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@system-suspend-modeset.html
> - shard-iclb: [SKIP][61] ([i915#579]) -> [PASS][62] +2 similar issues
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@i915_pm_rpm@system-suspend-modeset.html
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html
> - shard-apl: [SKIP][63] ([fdo#109271] / [i915#1635]) -> [PASS][64] +4 similar issues
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
> [64]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i91
> 5_pm_rpm@system-suspend-modeset.html
>
> * igt@i915_suspend@forcewake:
> - shard-apl: [INCOMPLETE][65] ([i915#1635]) -> [PASS][66]
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@i915_suspend@forcewake.html
> [66]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@i91
> 5_suspend@forcewake.html
>
> * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
> - shard-snb: [FAIL][67] -> [PASS][68]
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
> [68]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@kms
> _big_fb@x-tiled-64bpp-rotate-180.html
>
> * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> - shard-apl: [INCOMPLETE][69] ([i915#1635] / [i915#2635]) -> [PASS][70]
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-iclb: [INCOMPLETE][71] ([i915#1185]) -> [PASS][72]
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-glk: [INCOMPLETE][73] ([i915#2635]) -> [PASS][74]
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-hsw: [INCOMPLETE][75] ([i915#2637]) -> [PASS][76]
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> - shard-kbl: [INCOMPLETE][77] ([i915#155]) -> [PASS][78]
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [78]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms
> _cursor_crc@pipe-b-cursor-suspend.html
>
> * igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
> - shard-glk: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +4 similar issues
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
> [80]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms
> _cursor_edge_walk@pipe-a-256x256-left-edge.html
>
> * igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge:
> - shard-apl: [DMESG-WARN][81] ([i915#1635] / [i915#1982]) -> [PASS][82] +4 similar issues
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
> [82]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@kms
> _cursor_edge_walk@pipe-c-256x256-right-edge.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
> - shard-hsw: [INCOMPLETE][83] -> [PASS][84] +1 similar issue
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
> [84]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms
> _cursor_legacy@cursora-vs-flipa-legacy.html
>
> * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1:
> - shard-hsw: [DMESG-WARN][85] ([i915#1982]) -> [PASS][86]
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
> [86]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms
> _flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
> - shard-iclb: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88]
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
> [88]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb4/igt@km
> s_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-badstride:
> - shard-snb: [FAIL][89] ([i915#2546]) -> [PASS][90]
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_frontbuffer_tracking@fbc-badstride.html
> [90]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@kms
> _frontbuffer_tracking@fbc-badstride.html
>
> * igt@kms_psr@psr2_cursor_mmap_cpu:
> - shard-iclb: [SKIP][91] ([fdo#109441]) -> [PASS][92] +3 similar issues
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
> [92]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb2/igt@km
> s_psr@psr2_cursor_mmap_cpu.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> - shard-glk: [INCOMPLETE][93] -> [PASS][94]
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> [94]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms
> _vblank@pipe-a-ts-continuation-suspend.html
>
> * igt@kms_vblank@pipe-b-query-forked-busy-hang:
> - shard-hsw: [DMESG-WARN][95] ([i915#44]) -> [PASS][96]
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
> [96]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms
> _vblank@pipe-b-query-forked-busy-hang.html
>
> * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
> - shard-hsw: [SKIP][97] ([fdo#109271]) -> [PASS][98] +6 similar issues
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> - shard-kbl: [SKIP][99] ([fdo#109271]) -> [PASS][100] +4 similar issues
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> - shard-iclb: [SKIP][101] ([fdo#109278]) -> [PASS][102] +1 similar issue
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
> [102]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@km
> s_vblank@pipe-c-ts-continuation-modeset-rpm.html
>
> * igt@kms_vblank@pipe-c-wait-idle:
> - shard-kbl: [DMESG-WARN][103] ([i915#1982]) -> [PASS][104] +5 similar issues
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl6/igt@kms_vblank@pipe-c-wait-idle.html
> [104]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms
> _vblank@pipe-c-wait-idle.html
>
> * igt@perf@disabled-read-error:
> - shard-glk: [SKIP][105] ([fdo#109271] / [i915#1354]) -> [PASS][106] +1 similar issue
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk9/igt@perf@disabled-read-error.html
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk6/igt@perf@disabled-read-error.html
> - shard-apl: [SKIP][107] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][108] +1 similar issue
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl3/igt@perf@disabled-read-error.html
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl3/igt@perf@disabled-read-error.html
> - shard-kbl: [SKIP][109] ([fdo#109271] / [i915#1354]) -> [PASS][110] +1 similar issue
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl2/igt@perf@disabled-read-error.html
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl7/igt@perf@disabled-read-error.html
> - shard-tglb: [SKIP][111] ([i915#1354]) -> [PASS][112] +1 similar issue
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@perf@disabled-read-error.html
> [112]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@pe
> rf@disabled-read-error.html
>
> * igt@perf@invalid-remove-userspace-config:
> - shard-iclb: [SKIP][113] ([i915#1354]) -> [PASS][114] +1 similar issue
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb6/igt@perf@invalid-remove-userspace-config.html
> [114]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@pe
> rf@invalid-remove-userspace-config.html
>
>
> #### Warnings ####
>
> * igt@i915_pm_rpm@dpms-non-lpsp:
> - shard-tglb: [SKIP][115] ([fdo#111644] / [i915#1397] / [i915#2411]) -> [SKIP][116] ([i915#579])
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html
> - shard-iclb: [SKIP][117] ([fdo#110892]) -> [SKIP][118] ([i915#579])
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html
> [118]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i9
> 15_pm_rpm@dpms-non-lpsp.html
>
> * igt@i915_pm_rpm@gem-pread:
> - shard-tglb: [SKIP][119] ([i915#579]) -> [DMESG-WARN][120] ([i915#2411]) +2 similar issues
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@i915_pm_rpm@gem-pread.html
> [120]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i9
> 15_pm_rpm@gem-pread.html
>
> * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> - shard-tglb: [INCOMPLETE][121] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][122] ([i915#2411])
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> [122]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@km
> s_cursor_crc@pipe-b-cursor-suspend.html
>
> * igt@kms_dp_dsc@basic-dsc-enable-edp:
> - shard-iclb: [DMESG-WARN][123] ([i915#1226]) -> [SKIP][124] ([fdo#109349])
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
> [124]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@km
> s_dp_dsc@basic-dsc-enable-edp.html
>
> * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
> - shard-apl: [FAIL][125] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][126] ([fdo#108145] / [i915#1635] / [i915#1982])
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> [126]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@kms
> _plane_alpha_blend@pipe-b-alpha-basic.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
> - shard-tglb: [SKIP][127] -> [DMESG-WARN][128] ([i915#2411]) +1 similar issue
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
> [128]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@km
> s_vblank@pipe-a-ts-continuation-dpms-rpm.html
>
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> - shard-tglb: [INCOMPLETE][129] ([i915#1436] / [i915#456]) -> [DMESG-WARN][130] ([i915#2411])
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> [130]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@km
> s_vblank@pipe-a-ts-continuation-suspend.html
>
> * igt@perf@mi-rpc:
> - shard-tglb: [SKIP][131] ([fdo#109289]) -> [SKIP][132] ([i915#1354])
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@perf@mi-rpc.html
> [132]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb3/igt@pe
> rf@mi-rpc.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
> [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
> [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
> [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
> [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
> [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
> [i915#1036]: https://gitlab.freedesktop.org/drm/intel/issues/1036
> [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
> [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
> [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
> [i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
> [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
> [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
> [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
> [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
> [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798
> [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
> [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
> [i915#2261]: https://gitlab.freedesktop.org/drm/intel/issues/2261
> [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
> [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
> [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
> [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
> [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
> [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
> [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
> [i915#2650]: https://gitlab.freedesktop.org/drm/intel/issues/2650
> [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
> [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
> [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
> [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
> [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
> [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
>
>
> Participating hosts (11 -> 8)
> ------------------------------
>
> Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_5839 -> IGTPW_5146
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
> IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
` (2 preceding siblings ...)
2020-11-09 15:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-11-09 17:11 ` Patchwork
2020-11-09 17:17 ` [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Zbigniew Kempczyński
2020-11-09 17:23 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2) Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2020-11-09 17:11 UTC (permalink / raw)
To: Imre Deak; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 28125 bytes --]
== Series Details ==
Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
URL : https://patchwork.freedesktop.org/series/83644/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9296_full -> IGTPW_5146_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5146_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5146_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5146_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@pipe-c-primary-size-128:
- shard-glk: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk8/igt@kms_plane_cursor@pipe-c-primary-size-128.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane_cursor@pipe-c-primary-size-128.html
Known issues
------------
Here are the changes found in IGTPW_5146_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@close-race:
- shard-snb: [PASS][3] -> [INCOMPLETE][4] ([i915#2650])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb7/igt@gem_busy@close-race.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@gem_busy@close-race.html
- shard-hsw: [PASS][5] -> [FAIL][6] ([i915#1888])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_busy@close-race.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_busy@close-race.html
* igt@gem_mmap_gtt@pf-nonblock:
- shard-tglb: [PASS][7] -> [DMESG-WARN][8] ([i915#1982]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
* igt@gem_partial_pwrite_pread@reads:
- shard-hsw: [PASS][9] -> [FAIL][10] ([i915#1888] / [i915#2261])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-snb: [PASS][11] -> [INCOMPLETE][12] ([i915#2651])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@gem_render_tiled_blits@basic:
- shard-snb: [PASS][13] -> [FAIL][14] ([i915#2656])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_render_tiled_blits@basic.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl7/igt@i915_pm_rpm@dpms-non-lpsp.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-apl: [PASS][17] -> [SKIP][18] ([fdo#109271] / [i915#1635])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@i915_pm_rpm@dpms-non-lpsp.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-glk: [PASS][19] -> [SKIP][20] ([fdo#109271])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk1/igt@i915_pm_rpm@dpms-non-lpsp.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_3d:
- shard-tglb: [PASS][21] -> [DMESG-WARN][22] ([i915#402])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@kms_3d.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_3d.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
- shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#1982]) +3 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk7/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge:
- shard-apl: [PASS][25] -> [DMESG-WARN][26] ([i915#1635] / [i915#1982]) +4 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [PASS][27] -> [FAIL][28] ([i915#96])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#95]) +3 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1:
- shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#1982]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
* igt@kms_plane@plane-panning-bottom-right-pipe-a-planes:
- shard-glk: [PASS][33] -> [FAIL][34] ([i915#1036])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
* igt@kms_plane_cursor@pipe-b-overlay-size-128:
- shard-glk: [PASS][35] -> [FAIL][36] ([i915#2657])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
* igt@kms_properties@connector-properties-legacy:
- shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#165] / [i915#78])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_properties@connector-properties-legacy.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [PASS][39] -> [SKIP][40] ([fdo#109642] / [fdo#111068])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr2_su@page_flip.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][41] -> [SKIP][42] ([fdo#109441]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][43] -> [FAIL][44] ([i915#31])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw6/igt@kms_setmode@basic.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@kms_setmode@basic.html
* igt@perf@enable-disable:
- shard-iclb: [PASS][45] -> [SKIP][46] ([i915#1354]) +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb4/igt@perf@enable-disable.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb1/igt@perf@enable-disable.html
- shard-hsw: [PASS][47] -> [SKIP][48] ([fdo#109271]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@perf@enable-disable.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@perf@enable-disable.html
- shard-kbl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@perf@enable-disable.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@perf@enable-disable.html
- shard-apl: [PASS][51] -> [SKIP][52] ([fdo#109271] / [i915#1354] / [i915#1635]) +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@perf@enable-disable.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@perf@enable-disable.html
* igt@perf@oa-exponents:
- shard-tglb: [PASS][53] -> [SKIP][54] ([i915#1354]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@perf@oa-exponents.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@perf@oa-exponents.html
- shard-glk: [PASS][55] -> [SKIP][56] ([fdo#109271] / [i915#1354]) +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@perf@oa-exponents.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk2/igt@perf@oa-exponents.html
#### Possible fixes ####
* {igt@core_hotunplug@hotrebind}:
- shard-tglb: [DMESG-WARN][57] ([i915#1982]) -> [PASS][58] +5 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@core_hotunplug@hotrebind.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@core_hotunplug@hotrebind.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-snb: [INCOMPLETE][59] -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_partial_pwrite_pread@reads-display.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb7/igt@gem_partial_pwrite_pread@reads-display.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-glk: [SKIP][61] ([fdo#109271]) -> [PASS][62] +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@i915_pm_rpm@system-suspend-modeset.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-iclb: [SKIP][63] ([i915#579]) -> [PASS][64] +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@i915_pm_rpm@system-suspend-modeset.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-apl: [SKIP][65] ([fdo#109271] / [i915#1635]) -> [PASS][66] +4 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_suspend@forcewake:
- shard-apl: [INCOMPLETE][67] ([i915#1635]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@i915_suspend@forcewake.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-snb: [FAIL][69] -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [INCOMPLETE][71] ([i915#1635] / [i915#2635]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-iclb: [INCOMPLETE][73] ([i915#1185]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-glk: [INCOMPLETE][75] ([i915#2635]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-hsw: [INCOMPLETE][77] ([i915#2637]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-kbl: [INCOMPLETE][79] ([i915#155]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
- shard-glk: [DMESG-WARN][81] ([i915#1982]) -> [PASS][82] +4 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge:
- shard-apl: [DMESG-WARN][83] ([i915#1635] / [i915#1982]) -> [PASS][84] +4 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
- shard-hsw: [INCOMPLETE][85] -> [PASS][86] +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1:
- shard-hsw: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-iclb: [DMESG-WARN][89] ([i915#1982]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-snb: [FAIL][91] ([i915#2546]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_frontbuffer_tracking@fbc-badstride.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [SKIP][93] ([fdo#109441]) -> [PASS][94] +3 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-glk: [INCOMPLETE][95] -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vblank@pipe-b-query-forked-busy-hang:
- shard-hsw: [DMESG-WARN][97] ([i915#44]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
- shard-hsw: [SKIP][99] ([fdo#109271]) -> [PASS][100] +6 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-kbl: [SKIP][101] ([fdo#109271]) -> [PASS][102] +4 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-iclb: [SKIP][103] ([fdo#109278]) -> [PASS][104] +1 similar issue
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
* igt@kms_vblank@pipe-c-wait-idle:
- shard-kbl: [DMESG-WARN][105] ([i915#1982]) -> [PASS][106] +5 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl6/igt@kms_vblank@pipe-c-wait-idle.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_vblank@pipe-c-wait-idle.html
* igt@perf@disabled-read-error:
- shard-glk: [SKIP][107] ([fdo#109271] / [i915#1354]) -> [PASS][108] +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk9/igt@perf@disabled-read-error.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk6/igt@perf@disabled-read-error.html
- shard-apl: [SKIP][109] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][110] +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl3/igt@perf@disabled-read-error.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl3/igt@perf@disabled-read-error.html
- shard-kbl: [SKIP][111] ([fdo#109271] / [i915#1354]) -> [PASS][112] +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl2/igt@perf@disabled-read-error.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl7/igt@perf@disabled-read-error.html
- shard-tglb: [SKIP][113] ([i915#1354]) -> [PASS][114] +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@perf@disabled-read-error.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@perf@disabled-read-error.html
* igt@perf@invalid-remove-userspace-config:
- shard-iclb: [SKIP][115] ([i915#1354]) -> [PASS][116] +1 similar issue
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb6/igt@perf@invalid-remove-userspace-config.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@perf@invalid-remove-userspace-config.html
#### Warnings ####
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: [SKIP][117] ([fdo#111644] / [i915#1397] / [i915#2411]) -> [SKIP][118] ([i915#579])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: [SKIP][119] ([fdo#110892]) -> [SKIP][120] ([i915#579])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-pread:
- shard-tglb: [SKIP][121] ([i915#579]) -> [DMESG-WARN][122] ([i915#2411]) +2 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@i915_pm_rpm@gem-pread.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@gem-pread.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-tglb: [INCOMPLETE][123] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][124] ([i915#2411])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [DMESG-WARN][125] ([i915#1226]) -> [SKIP][126] ([fdo#109349])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-apl: [FAIL][127] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][128] ([fdo#108145] / [i915#1635] / [i915#1982])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
- shard-tglb: [SKIP][129] -> [DMESG-WARN][130] ([i915#2411]) +1 similar issue
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-tglb: [INCOMPLETE][131] ([i915#1436] / [i915#456]) -> [DMESG-WARN][132] ([i915#2411])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@mi-rpc:
- shard-tglb: [SKIP][133] ([fdo#109289]) -> [SKIP][134] ([i915#1354])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@perf@mi-rpc.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb3/igt@perf@mi-rpc.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[i915#1036]: https://gitlab.freedesktop.org/drm/intel/issues/1036
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
[i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
[i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2261]: https://gitlab.freedesktop.org/drm/intel/issues/2261
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
[i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
[i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2650]: https://gitlab.freedesktop.org/drm/intel/issues/2650
[i915#2651]: https://gitlab.freedesktop.org/drm/intel/issues/2651
[i915#2656]: https://gitlab.freedesktop.org/drm/intel/issues/2656
[i915#2657]: https://gitlab.freedesktop.org/drm/intel/issues/2657
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5839 -> IGTPW_5146
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
[-- Attachment #1.2: Type: text/html, Size: 33723 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
` (3 preceding siblings ...)
2020-11-09 17:11 ` Patchwork
@ 2020-11-09 17:17 ` Zbigniew Kempczyński
2020-11-09 17:23 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2) Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-09 17:17 UTC (permalink / raw)
To: Imre Deak; +Cc: igt-dev, Chris Wilson
On Mon, Nov 09, 2020 at 02:06:31PM +0200, Imre Deak wrote:
> If the delta of a relocation target wrt. the object base address crosses
> the 4GB address boundary the upper 32bit of the target address will be
> incorrect, fix this.
Give me a day, I'm going to add accompanying test. I need to do this
twice - one with current API and second for allocator series where
API changed a bit in alignment management.
--
Zbigniew
>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> lib/intel_batchbuffer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
> index fc73495c0..7b4cfb0dd 100644
> --- a/lib/intel_batchbuffer.c
> +++ b/lib/intel_batchbuffer.c
> @@ -1850,7 +1850,7 @@ static uint64_t __intel_bb_emit_reloc(struct intel_bb *ibb,
>
> intel_bb_out(ibb, delta + address);
> if (ibb->gen >= 8)
> - intel_bb_out(ibb, address >> 32);
> + intel_bb_out(ibb, (delta + address) >> 32);
>
> return address;
> }
> --
> 2.25.1
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
2020-11-09 12:06 [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Imre Deak
` (4 preceding siblings ...)
2020-11-09 17:17 ` [igt-dev] [PATCH i-g-t] lib/intel_batchbuffer: Fix relocs across the 4GB address boundary Zbigniew Kempczyński
@ 2020-11-09 17:23 ` Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2020-11-09 17:23 UTC (permalink / raw)
To: Imre Deak; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 27311 bytes --]
== Series Details ==
Series: lib/intel_batchbuffer: Fix relocs across the 4GB address boundary (rev2)
URL : https://patchwork.freedesktop.org/series/83644/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9296_full -> IGTPW_5146_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
Known issues
------------
Here are the changes found in IGTPW_5146_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@close-race:
- shard-snb: [PASS][1] -> [INCOMPLETE][2] ([i915#2650])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb7/igt@gem_busy@close-race.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@gem_busy@close-race.html
- shard-hsw: [PASS][3] -> [FAIL][4] ([i915#1888])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_busy@close-race.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_busy@close-race.html
* igt@gem_mmap_gtt@pf-nonblock:
- shard-tglb: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb7/igt@gem_mmap_gtt@pf-nonblock.html
* igt@gem_partial_pwrite_pread@reads:
- shard-hsw: [PASS][7] -> [FAIL][8] ([i915#1888] / [i915#2261])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@gem_partial_pwrite_pread@reads.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-snb: [PASS][9] -> [INCOMPLETE][10] ([i915#2651])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@gem_render_tiled_blits@basic:
- shard-snb: [PASS][11] -> [FAIL][12] ([i915#2656])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_render_tiled_blits@basic.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-kbl: [PASS][13] -> [SKIP][14] ([fdo#109271])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl7/igt@i915_pm_rpm@dpms-non-lpsp.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-apl: [PASS][15] -> [SKIP][16] ([fdo#109271] / [i915#1635])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@i915_pm_rpm@dpms-non-lpsp.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-glk: [PASS][17] -> [SKIP][18] ([fdo#109271])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk1/igt@i915_pm_rpm@dpms-non-lpsp.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_3d:
- shard-tglb: [PASS][19] -> [DMESG-WARN][20] ([i915#402])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@kms_3d.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_3d.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
- shard-glk: [PASS][21] -> [DMESG-WARN][22] ([i915#1982]) +3 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk7/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge:
- shard-apl: [PASS][23] -> [DMESG-WARN][24] ([i915#1635] / [i915#1982]) +4 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_edge_walk@pipe-c-256x256-bottom-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [PASS][25] -> [FAIL][26] ([i915#96])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][27] -> [DMESG-WARN][28] ([i915#118] / [i915#95]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1:
- shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#1982]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp1.html
* igt@kms_plane@plane-panning-bottom-right-pipe-a-planes:
- shard-glk: [PASS][31] -> [FAIL][32] ([i915#1036])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html
* igt@kms_plane_cursor@pipe-b-overlay-size-128:
- shard-glk: [PASS][33] -> [FAIL][34] ([i915#2657]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk4/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk9/igt@kms_plane_cursor@pipe-b-overlay-size-128.html
* igt@kms_properties@connector-properties-legacy:
- shard-kbl: [PASS][35] -> [DMESG-WARN][36] ([i915#165] / [i915#78])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_properties@connector-properties-legacy.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr2_su@page_flip:
- shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109642] / [fdo#111068])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr2_su@page_flip.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][41] -> [FAIL][42] ([i915#31])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw6/igt@kms_setmode@basic.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw4/igt@kms_setmode@basic.html
* igt@perf@enable-disable:
- shard-iclb: [PASS][43] -> [SKIP][44] ([i915#1354]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb4/igt@perf@enable-disable.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb1/igt@perf@enable-disable.html
- shard-hsw: [PASS][45] -> [SKIP][46] ([fdo#109271]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@perf@enable-disable.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@perf@enable-disable.html
- shard-kbl: [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl1/igt@perf@enable-disable.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl3/igt@perf@enable-disable.html
- shard-apl: [PASS][49] -> [SKIP][50] ([fdo#109271] / [i915#1354] / [i915#1635]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl4/igt@perf@enable-disable.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@perf@enable-disable.html
* igt@perf@oa-exponents:
- shard-tglb: [PASS][51] -> [SKIP][52] ([i915#1354]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@perf@oa-exponents.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@perf@oa-exponents.html
- shard-glk: [PASS][53] -> [SKIP][54] ([fdo#109271] / [i915#1354]) +2 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@perf@oa-exponents.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk2/igt@perf@oa-exponents.html
#### Possible fixes ####
* {igt@core_hotunplug@hotrebind}:
- shard-tglb: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +5 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@core_hotunplug@hotrebind.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb8/igt@core_hotunplug@hotrebind.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-snb: [INCOMPLETE][57] -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@gem_partial_pwrite_pread@reads-display.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb7/igt@gem_partial_pwrite_pread@reads-display.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-glk: [SKIP][59] ([fdo#109271]) -> [PASS][60] +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@i915_pm_rpm@system-suspend-modeset.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk7/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-iclb: [SKIP][61] ([i915#579]) -> [PASS][62] +2 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@i915_pm_rpm@system-suspend-modeset.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@system-suspend-modeset.html
- shard-apl: [SKIP][63] ([fdo#109271] / [i915#1635]) -> [PASS][64] +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl8/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_suspend@forcewake:
- shard-apl: [INCOMPLETE][65] ([i915#1635]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@i915_suspend@forcewake.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-snb: [FAIL][67] -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [INCOMPLETE][69] ([i915#1635] / [i915#2635]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-iclb: [INCOMPLETE][71] ([i915#1185]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-glk: [INCOMPLETE][73] ([i915#2635]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-hsw: [INCOMPLETE][75] ([i915#2637]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
- shard-kbl: [INCOMPLETE][77] ([i915#155]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
- shard-glk: [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +4 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk5/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk8/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
* igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge:
- shard-apl: [DMESG-WARN][81] ([i915#1635] / [i915#1982]) -> [PASS][82] +4 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl2/igt@kms_cursor_edge_walk@pipe-c-256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
- shard-hsw: [INCOMPLETE][83] -> [PASS][84] +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1:
- shard-hsw: [DMESG-WARN][85] ([i915#1982]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-iclb: [DMESG-WARN][87] ([i915#1982]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-snb: [FAIL][89] ([i915#2546]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-snb5/igt@kms_frontbuffer_tracking@fbc-badstride.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-snb4/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [SKIP][91] ([fdo#109441]) -> [PASS][92] +3 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-glk: [INCOMPLETE][93] -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vblank@pipe-b-query-forked-busy-hang:
- shard-hsw: [DMESG-WARN][95] ([i915#44]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw5/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw8/igt@kms_vblank@pipe-b-query-forked-busy-hang.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
- shard-hsw: [SKIP][97] ([fdo#109271]) -> [PASS][98] +6 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-hsw1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-kbl: [SKIP][99] ([fdo#109271]) -> [PASS][100] +4 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
- shard-iclb: [SKIP][101] ([fdo#109278]) -> [PASS][102] +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
* igt@kms_vblank@pipe-c-wait-idle:
- shard-kbl: [DMESG-WARN][103] ([i915#1982]) -> [PASS][104] +5 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl6/igt@kms_vblank@pipe-c-wait-idle.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl2/igt@kms_vblank@pipe-c-wait-idle.html
* igt@perf@disabled-read-error:
- shard-glk: [SKIP][105] ([fdo#109271] / [i915#1354]) -> [PASS][106] +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-glk9/igt@perf@disabled-read-error.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-glk6/igt@perf@disabled-read-error.html
- shard-apl: [SKIP][107] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][108] +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl3/igt@perf@disabled-read-error.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl3/igt@perf@disabled-read-error.html
- shard-kbl: [SKIP][109] ([fdo#109271] / [i915#1354]) -> [PASS][110] +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-kbl2/igt@perf@disabled-read-error.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-kbl7/igt@perf@disabled-read-error.html
- shard-tglb: [SKIP][111] ([i915#1354]) -> [PASS][112] +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb6/igt@perf@disabled-read-error.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@perf@disabled-read-error.html
* igt@perf@invalid-remove-userspace-config:
- shard-iclb: [SKIP][113] ([i915#1354]) -> [PASS][114] +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb6/igt@perf@invalid-remove-userspace-config.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@perf@invalid-remove-userspace-config.html
#### Warnings ####
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: [SKIP][115] ([fdo#111644] / [i915#1397] / [i915#2411]) -> [SKIP][116] ([i915#579])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: [SKIP][117] ([fdo#110892]) -> [SKIP][118] ([i915#579])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb5/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-pread:
- shard-tglb: [SKIP][119] ([i915#579]) -> [DMESG-WARN][120] ([i915#2411]) +2 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@i915_pm_rpm@gem-pread.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@i915_pm_rpm@gem-pread.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-tglb: [INCOMPLETE][121] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) -> [DMESG-WARN][122] ([i915#2411])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [DMESG-WARN][123] ([i915#1226]) -> [SKIP][124] ([fdo#109349])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-apl: [FAIL][125] ([fdo#108145] / [i915#1635] / [i915#265]) -> [DMESG-FAIL][126] ([fdo#108145] / [i915#1635] / [i915#1982])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
- shard-tglb: [SKIP][127] -> [DMESG-WARN][128] ([i915#2411]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-tglb: [INCOMPLETE][129] ([i915#1436] / [i915#456]) -> [DMESG-WARN][130] ([i915#2411])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@mi-rpc:
- shard-tglb: [SKIP][131] ([fdo#109289]) -> [SKIP][132] ([i915#1354])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9296/shard-tglb1/igt@perf@mi-rpc.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/shard-tglb3/igt@perf@mi-rpc.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[i915#1036]: https://gitlab.freedesktop.org/drm/intel/issues/1036
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
[i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
[i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
[i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2261]: https://gitlab.freedesktop.org/drm/intel/issues/2261
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
[i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
[i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2650]: https://gitlab.freedesktop.org/drm/intel/issues/2650
[i915#2651]: https://gitlab.freedesktop.org/drm/intel/issues/2651
[i915#2656]: https://gitlab.freedesktop.org/drm/intel/issues/2656
[i915#2657]: https://gitlab.freedesktop.org/drm/intel/issues/2657
[i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
[i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
[i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5839 -> IGTPW_5146
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_9296: 275f92f65fdb0df603309149a164b52611f64ce4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5146: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
IGT_5839: 2dbd64a6301e36eb432bc50ad7021fabaeebd1f4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5146/index.html
[-- Attachment #1.2: Type: text/html, Size: 32876 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 14+ messages in thread