* [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms
@ 2021-06-24 11:29 Thomas Hellström
2021-06-24 12:04 ` Daniel Vetter
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Thomas Hellström @ 2021-06-24 11:29 UTC (permalink / raw)
To: intel-gfx, dri-devel; +Cc: Thomas Hellström, matthew.auld
Reinstate the mmap ioctl for all current integrated platforms.
The intention was really to have it disabled for discrete graphics
where we enforce a single mmap mode.
Fixes: 35cbd91eb541 ("drm/i915: Disable mmap ioctl for gen12+")
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
v2:
- Added a R-B.
- Fixed up the code comment a bit.
---
drivers/gpu/drm/i915/gem/i915_gem_mman.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c
index 2fd155742bd2..4f50a508c7a0 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c
@@ -62,10 +62,11 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
struct drm_i915_gem_object *obj;
unsigned long addr;
- /* mmap ioctl is disallowed for all platforms after TGL-LP. This also
- * covers all platforms with local memory.
+ /*
+ * mmap ioctl is disallowed for all discrete platforms,
+ * and for all platforms with GRAPHICS_VER > 12.
*/
- if (GRAPHICS_VER(i915) >= 12 && !IS_TIGERLAKE(i915))
+ if (IS_DGFX(i915) || GRAPHICS_VER(i915) > 12)
return -EOPNOTSUPP;
if (args->flags & ~(I915_MMAP_WC))
--
2.31.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms 2021-06-24 11:29 [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms Thomas Hellström @ 2021-06-24 12:04 ` Daniel Vetter 2021-06-25 7:48 ` Maarten Lankhorst 2021-06-24 15:35 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reinstate the mmap ioctl for some platforms (rev2) Patchwork 2021-06-24 20:57 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Daniel Vetter @ 2021-06-24 12:04 UTC (permalink / raw) To: Thomas Hellström; +Cc: intel-gfx, Matthew Auld, dri-devel On Thu, Jun 24, 2021 at 1:29 PM Thomas Hellström <thomas.hellstrom@linux.intel.com> wrote: > > Reinstate the mmap ioctl for all current integrated platforms. > The intention was really to have it disabled for discrete graphics > where we enforce a single mmap mode. > > Fixes: 35cbd91eb541 ("drm/i915: Disable mmap ioctl for gen12+") > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Reviewed-by: Matthew Auld <matthew.auld@intel.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> > --- > v2: > - Added a R-B. > - Fixed up the code comment a bit. > --- > drivers/gpu/drm/i915/gem/i915_gem_mman.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c > index 2fd155742bd2..4f50a508c7a0 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c > +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c > @@ -62,10 +62,11 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data, > struct drm_i915_gem_object *obj; > unsigned long addr; > > - /* mmap ioctl is disallowed for all platforms after TGL-LP. This also > - * covers all platforms with local memory. > + /* > + * mmap ioctl is disallowed for all discrete platforms, > + * and for all platforms with GRAPHICS_VER > 12. > */ > - if (GRAPHICS_VER(i915) >= 12 && !IS_TIGERLAKE(i915)) > + if (IS_DGFX(i915) || GRAPHICS_VER(i915) > 12) > return -EOPNOTSUPP; > > if (args->flags & ~(I915_MMAP_WC)) > -- > 2.31.1 > -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms 2021-06-24 12:04 ` Daniel Vetter @ 2021-06-25 7:48 ` Maarten Lankhorst 2021-06-25 8:03 ` Daniel Vetter 0 siblings, 1 reply; 6+ messages in thread From: Maarten Lankhorst @ 2021-06-25 7:48 UTC (permalink / raw) To: Daniel Vetter, Thomas Hellström; +Cc: intel-gfx, Matthew Auld, dri-devel Op 24-06-2021 om 14:04 schreef Daniel Vetter: > On Thu, Jun 24, 2021 at 1:29 PM Thomas Hellström > <thomas.hellstrom@linux.intel.com> wrote: >> Reinstate the mmap ioctl for all current integrated platforms. >> The intention was really to have it disabled for discrete graphics >> where we enforce a single mmap mode. >> >> Fixes: 35cbd91eb541 ("drm/i915: Disable mmap ioctl for gen12+") >> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> >> Reviewed-by: Matthew Auld <matthew.auld@intel.com> > Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> > >> --- >> v2: >> - Added a R-B. >> - Fixed up the code comment a bit. >> --- >> drivers/gpu/drm/i915/gem/i915_gem_mman.c | 7 ++++--- >> 1 file changed, 4 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c >> index 2fd155742bd2..4f50a508c7a0 100644 >> --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c >> +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c >> @@ -62,10 +62,11 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data, >> struct drm_i915_gem_object *obj; >> unsigned long addr; >> >> - /* mmap ioctl is disallowed for all platforms after TGL-LP. This also >> - * covers all platforms with local memory. >> + /* >> + * mmap ioctl is disallowed for all discrete platforms, >> + * and for all platforms with GRAPHICS_VER > 12. >> */ >> - if (GRAPHICS_VER(i915) >= 12 && !IS_TIGERLAKE(i915)) >> + if (IS_DGFX(i915) || GRAPHICS_VER(i915) > 12) >> return -EOPNOTSUPP; >> >> if (args->flags & ~(I915_MMAP_WC)) >> -- >> 2.31.1 >> > Would keeping this change unapplied break any currently shipping platforms? If not, could we leave it as-is? _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms 2021-06-25 7:48 ` Maarten Lankhorst @ 2021-06-25 8:03 ` Daniel Vetter 0 siblings, 0 replies; 6+ messages in thread From: Daniel Vetter @ 2021-06-25 8:03 UTC (permalink / raw) To: Maarten Lankhorst Cc: Thomas Hellström, intel-gfx, Matthew Auld, dri-devel On Fri, Jun 25, 2021 at 9:48 AM Maarten Lankhorst <maarten.lankhorst@linux.intel.com> wrote: > > Op 24-06-2021 om 14:04 schreef Daniel Vetter: > > On Thu, Jun 24, 2021 at 1:29 PM Thomas Hellström > > <thomas.hellstrom@linux.intel.com> wrote: > >> Reinstate the mmap ioctl for all current integrated platforms. > >> The intention was really to have it disabled for discrete graphics > >> where we enforce a single mmap mode. > >> > >> Fixes: 35cbd91eb541 ("drm/i915: Disable mmap ioctl for gen12+") > >> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > >> Reviewed-by: Matthew Auld <matthew.auld@intel.com> > > Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> > > > >> --- > >> v2: > >> - Added a R-B. > >> - Fixed up the code comment a bit. > >> --- > >> drivers/gpu/drm/i915/gem/i915_gem_mman.c | 7 ++++--- > >> 1 file changed, 4 insertions(+), 3 deletions(-) > >> > >> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c > >> index 2fd155742bd2..4f50a508c7a0 100644 > >> --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c > >> +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c > >> @@ -62,10 +62,11 @@ i915_gem_mmap_ioctl(struct drm_device *dev, void *data, > >> struct drm_i915_gem_object *obj; > >> unsigned long addr; > >> > >> - /* mmap ioctl is disallowed for all platforms after TGL-LP. This also > >> - * covers all platforms with local memory. > >> + /* > >> + * mmap ioctl is disallowed for all discrete platforms, > >> + * and for all platforms with GRAPHICS_VER > 12. > >> */ > >> - if (GRAPHICS_VER(i915) >= 12 && !IS_TIGERLAKE(i915)) > >> + if (IS_DGFX(i915) || GRAPHICS_VER(i915) > 12) > >> return -EOPNOTSUPP; > >> > >> if (args->flags & ~(I915_MMAP_WC)) > >> -- > >> 2.31.1 > >> > > > Would keeping this change unapplied break any currently shipping platforms? If not, could we leave it as-is? It breaks media on rkl/adl afaik. Which should be part of the commit message. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reinstate the mmap ioctl for some platforms (rev2) 2021-06-24 11:29 [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms Thomas Hellström 2021-06-24 12:04 ` Daniel Vetter @ 2021-06-24 15:35 ` Patchwork 2021-06-24 20:57 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2021-06-24 15:35 UTC (permalink / raw) To: Thomas Hellström; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 2160 bytes --] == Series Details == Series: drm/i915: Reinstate the mmap ioctl for some platforms (rev2) URL : https://patchwork.freedesktop.org/series/91865/ State : success == Summary == CI Bug Log - changes from CI_DRM_10276 -> Patchwork_20455 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/index.html Known issues ------------ Here are the changes found in Patchwork_20455 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#2782] / [i915#2940]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/fi-bsw-nick/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@runner@aborted: - fi-bsw-nick: NOTRUN -> [FAIL][3] ([fdo#109271] / [i915#1436]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/fi-bsw-nick/igt@runner@aborted.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 Participating hosts (45 -> 40) ------------------------------ Missing (5): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * Linux: CI_DRM_10276 -> Patchwork_20455 CI-20190529: 20190529 CI_DRM_10276: dc72fe3798577491293de99bfcf132e5d321ab7e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6117: 3ba0a02404f243d6d8f232c6215163cc4b0fd699 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_20455: fa79f45b7695f89ccddfe7e3377b095bff8218f5 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == fa79f45b7695 drm/i915: Reinstate the mmap ioctl for some platforms == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/index.html [-- Attachment #1.2: Type: text/html, Size: 2782 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Reinstate the mmap ioctl for some platforms (rev2) 2021-06-24 11:29 [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms Thomas Hellström 2021-06-24 12:04 ` Daniel Vetter 2021-06-24 15:35 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reinstate the mmap ioctl for some platforms (rev2) Patchwork @ 2021-06-24 20:57 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2021-06-24 20:57 UTC (permalink / raw) To: Thomas Hellström; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 30283 bytes --] == Series Details == Series: drm/i915: Reinstate the mmap ioctl for some platforms (rev2) URL : https://patchwork.freedesktop.org/series/91865/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10276_full -> Patchwork_20455_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_20455_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_20455_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_20455_full: ### IGT changes ### #### Possible regressions #### * igt@i915_suspend@forcewake: - shard-iclb: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb1/igt@i915_suspend@forcewake.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb1/igt@i915_suspend@forcewake.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-skl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2: - shard-iclb: [SKIP][5] ([i915#658]) -> [SKIP][6] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html Known issues ------------ Here are the changes found in Patchwork_20455_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-apl: NOTRUN -> [DMESG-WARN][7] ([i915#3002]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-snb2/igt@gem_ctx_persistence@smoketest.html * igt@gem_eio@unwedge-stress: - shard-iclb: [PASS][9] -> [TIMEOUT][10] ([i915#2369] / [i915#2481] / [i915#3070]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb5/igt@gem_eio@unwedge-stress.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-apl: NOTRUN -> [FAIL][11] ([i915#2846]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][12] -> [FAIL][13] ([i915#2842]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][16] ([i915#2842]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [PASS][19] -> [DMESG-WARN][20] ([i915#118] / [i915#95]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk6/igt@gem_exec_whisper@basic-queues-forked-all.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk5/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2190]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_offset@clear: - shard-iclb: [PASS][22] -> [FAIL][23] ([i915#3160]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb3/igt@gem_mmap_offset@clear.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb5/igt@gem_mmap_offset@clear.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#644]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_workarounds@suspend-resume: - shard-skl: [PASS][26] -> [INCOMPLETE][27] ([i915#198]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl2/igt@gem_workarounds@suspend-resume.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl10/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@bb-large: - shard-glk: NOTRUN -> [FAIL][28] ([i915#3296]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@gen9_exec_parse@bb-large.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: NOTRUN -> [WARN][29] ([i915#1804] / [i915#2684]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271]) +169 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-skl: [PASS][31] -> [FAIL][32] ([i915#2521]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl5/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_chamelium@dp-crc-fast: - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#109284] / [fdo#111827]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@dp-hpd-storm-disable: - shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +7 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@kms_chamelium@dp-hpd-storm-disable.html * igt@kms_color@pipe-a-ctm-0-75: - shard-skl: [PASS][35] -> [DMESG-WARN][36] ([i915#1982]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl10/igt@kms_color@pipe-a-ctm-0-75.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl5/igt@kms_color@pipe-a-ctm-0-75.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-snb: NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +17 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [fdo#111827]) +10 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +17 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes: - shard-skl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html * igt@kms_content_protection@atomic-dpms: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109300] / [fdo#111066]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][42] ([i915#1319]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109278] / [fdo#109279]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-apl: [PASS][44] -> [DMESG-WARN][45] ([i915#180]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109274] / [fdo#109278]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: NOTRUN -> [FAIL][47] ([i915#2346]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@pipe-d-single-bo: - shard-kbl: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#533]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl1/igt@kms_cursor_legacy@pipe-d-single-bo.html - shard-skl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#533]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_cursor_legacy@pipe-d-single-bo.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][50] -> [FAIL][51] ([i915#79]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [PASS][52] -> [FAIL][53] ([i915#79]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][54] -> [DMESG-WARN][55] ([i915#180]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1: - shard-skl: [PASS][56] -> [FAIL][57] ([i915#2122]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271]) +305 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-snb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271]) +52 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-skl: NOTRUN -> [SKIP][60] ([fdo#109271]) +50 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109280]) +5 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271]) +57 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-skl: NOTRUN -> [FAIL][63] ([i915#1188]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-skl: [PASS][64] -> [FAIL][65] ([i915#1188]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl10/igt@kms_hdr@bpc-switch-suspend.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_invalid_dotclock: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109310]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_invalid_dotclock.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][68] ([i915#265]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html - shard-skl: NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant: - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109278]) +3 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb7/igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][74] -> [SKIP][75] ([fdo#109441]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#533]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2437]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl8/igt@kms_writeback@writeback-fb-id.html - shard-skl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2437]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl1/igt@kms_writeback@writeback-fb-id.html * igt@perf@polling-parameterized: - shard-skl: [PASS][79] -> [FAIL][80] ([i915#1542]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl2/igt@perf@polling-parameterized.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl9/igt@perf@polling-parameterized.html * igt@sysfs_clients@fair-7: - shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2994]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@sysfs_clients@fair-7.html * igt@sysfs_clients@sema-25: - shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2994]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk7/igt@sysfs_clients@sema-25.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-skl: [INCOMPLETE][83] ([i915#198]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl6/igt@gem_ctx_isolation@preservation-s3@vecs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_exec_capture@pi@rcs0: - shard-skl: [INCOMPLETE][85] ([i915#2369]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl4/igt@gem_exec_capture@pi@rcs0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl8/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [FAIL][87] ([i915#2842]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_suspend@basic-s3: - shard-skl: [INCOMPLETE][89] ([i915#146] / [i915#198]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl10/igt@gem_exec_suspend@basic-s3.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl8/igt@gem_exec_suspend@basic-s3.html * igt@gem_exec_whisper@basic-contexts-all: - shard-glk: [DMESG-WARN][91] ([i915#118] / [i915#95]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk2/igt@gem_exec_whisper@basic-contexts-all.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-snb: [INCOMPLETE][93] ([i915#2055]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-snb5/igt@gem_fenced_exec_thrash@2-spare-fences.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-snb2/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_mmap_gtt@big-copy-xy: - shard-skl: [FAIL][95] ([i915#307]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl10/igt@gem_mmap_gtt@big-copy-xy.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl2/igt@gem_mmap_gtt@big-copy-xy.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][97] ([i915#1436] / [i915#716]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk4/igt@gen9_exec_parse@allowed-all.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk6/igt@gen9_exec_parse@allowed-all.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [FAIL][99] ([i915#2346] / [i915#533]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-apl: [DMESG-WARN][101] ([IGT#6]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-skl: [FAIL][103] ([i915#79]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][105] ([i915#180]) -> [PASS][106] +9 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: - shard-skl: [FAIL][107] ([fdo#108145] / [i915#265]) -> [PASS][108] +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl7/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl7/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html * igt@kms_psr2_su@page_flip: - shard-iclb: [SKIP][109] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb5/igt@kms_psr2_su@page_flip.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb2/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_primary_render: - shard-iclb: [SKIP][111] ([fdo#109441]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb1/igt@kms_psr@psr2_primary_render.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb2/igt@kms_psr@psr2_primary_render.html * igt@perf@polling-parameterized: - shard-glk: [FAIL][113] ([i915#1542]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-glk6/igt@perf@polling-parameterized.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-glk5/igt@perf@polling-parameterized.html - shard-iclb: [FAIL][115] ([i915#1542]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb3/igt@perf@polling-parameterized.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb8/igt@perf@polling-parameterized.html * igt@sysfs_timeslice_duration@timeout@vcs0: - shard-skl: [FAIL][117] ([i915#3259]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl4/igt@sysfs_timeslice_duration@timeout@vcs0.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl2/igt@sysfs_timeslice_duration@timeout@vcs0.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][119] ([i915#658]) -> [SKIP][120] ([i915#588]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb1/igt@i915_pm_dc@dc3co-vpb-simulation.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3: - shard-iclb: [SKIP][121] -> [SKIP][122] ([i915#658]) +3 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html * igt@runner@aborted: - shard-kbl: ([FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131]) ([fdo#109271] / [i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363]) -> ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#602]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl4/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl1/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl1/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl7/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl3/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl6/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl7/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl6/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-kbl4/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl7/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl7/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl2/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl1/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl3/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-kbl1/igt@runner@aborted.html - shard-iclb: ([FAIL][138], [FAIL][139], [FAIL][140]) ([i915#1814] / [i915#3002]) -> ([FAIL][141], [FAIL][142]) ([i915#3002]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb1/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb7/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-iclb2/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb2/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-iclb8/igt@runner@aborted.html - shard-apl: ([FAIL][143], [FAIL][144]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3363]) -> ([FAIL][145], [FAIL][146]) ([i915#1814] / [i915#3002] / [i915#3363]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-apl8/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-apl3/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl8/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-apl2/igt@runner@aborted.html - shard-skl: ([FAIL][147], [FAIL][148]) ([i915#3002] / [i915#3363]) -> ([FAIL][149], [FAIL][150]) ([i915#1814] / [i915#2029] / [i915#3002] / [i915#3363]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl2/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10276/shard-skl3/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl3/igt@runner@aborted.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/shard-skl7/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https:/ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20455/index.html [-- Attachment #1.2: Type: text/html, Size: 35366 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-06-25 8:03 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-06-24 11:29 [Intel-gfx] [PATCH v2] drm/i915: Reinstate the mmap ioctl for some platforms Thomas Hellström 2021-06-24 12:04 ` Daniel Vetter 2021-06-25 7:48 ` Maarten Lankhorst 2021-06-25 8:03 ` Daniel Vetter 2021-06-24 15:35 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reinstate the mmap ioctl for some platforms (rev2) Patchwork 2021-06-24 20:57 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox