* [PATCH] drm/i915: fix accidental static variable use
@ 2019-11-15 12:04 Jani Nikula
2019-11-15 12:04 ` [Intel-gfx] " Jani Nikula
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Jani Nikula @ 2019-11-15 12:04 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula, Lucas De Marchi, Dhinakaran Pandiyan
It's supposed to be just a const pointer.
Fixes: 074c77e3ec63 ("drm/i915/tgl: Gen-12 display loses Yf tiling and legacy CCS support")
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_sprite.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c
index d7f71fa90659..8394502b092d 100644
--- a/drivers/gpu/drm/i915/display/intel_sprite.c
+++ b/drivers/gpu/drm/i915/display/intel_sprite.c
@@ -2921,7 +2921,7 @@ struct intel_plane *
skl_universal_plane_create(struct drm_i915_private *dev_priv,
enum pipe pipe, enum plane_id plane_id)
{
- static const struct drm_plane_funcs *plane_funcs;
+ const struct drm_plane_funcs *plane_funcs;
struct intel_plane *plane;
enum drm_plane_type plane_type;
unsigned int supported_rotations;
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH] drm/i915: fix accidental static variable use 2019-11-15 12:04 [PATCH] drm/i915: fix accidental static variable use Jani Nikula @ 2019-11-15 12:04 ` Jani Nikula 2019-11-15 12:45 ` Ville Syrjälä ` (2 subsequent siblings) 3 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2019-11-15 12:04 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula, Lucas De Marchi, Dhinakaran Pandiyan It's supposed to be just a const pointer. Fixes: 074c77e3ec63 ("drm/i915/tgl: Gen-12 display loses Yf tiling and legacy CCS support") Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_sprite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c index d7f71fa90659..8394502b092d 100644 --- a/drivers/gpu/drm/i915/display/intel_sprite.c +++ b/drivers/gpu/drm/i915/display/intel_sprite.c @@ -2921,7 +2921,7 @@ struct intel_plane * skl_universal_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe, enum plane_id plane_id) { - static const struct drm_plane_funcs *plane_funcs; + const struct drm_plane_funcs *plane_funcs; struct intel_plane *plane; enum drm_plane_type plane_type; unsigned int supported_rotations; -- 2.20.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915: fix accidental static variable use 2019-11-15 12:04 [PATCH] drm/i915: fix accidental static variable use Jani Nikula 2019-11-15 12:04 ` [Intel-gfx] " Jani Nikula @ 2019-11-15 12:45 ` Ville Syrjälä 2019-11-15 12:45 ` [Intel-gfx] " Ville Syrjälä 2019-11-15 15:13 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-11-16 23:22 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 1 reply; 10+ messages in thread From: Ville Syrjälä @ 2019-11-15 12:45 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, Lucas De Marchi, Dhinakaran Pandiyan On Fri, Nov 15, 2019 at 02:04:40PM +0200, Jani Nikula wrote: > It's supposed to be just a const pointer. > > Fixes: 074c77e3ec63 ("drm/i915/tgl: Gen-12 display loses Yf tiling and legacy CCS support") > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_sprite.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c > index d7f71fa90659..8394502b092d 100644 > --- a/drivers/gpu/drm/i915/display/intel_sprite.c > +++ b/drivers/gpu/drm/i915/display/intel_sprite.c > @@ -2921,7 +2921,7 @@ struct intel_plane * > skl_universal_plane_create(struct drm_i915_private *dev_priv, > enum pipe pipe, enum plane_id plane_id) > { > - static const struct drm_plane_funcs *plane_funcs; > + const struct drm_plane_funcs *plane_funcs; > struct intel_plane *plane; > enum drm_plane_type plane_type; > unsigned int supported_rotations; > -- > 2.20.1 -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: fix accidental static variable use 2019-11-15 12:45 ` Ville Syrjälä @ 2019-11-15 12:45 ` Ville Syrjälä 0 siblings, 0 replies; 10+ messages in thread From: Ville Syrjälä @ 2019-11-15 12:45 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, Lucas De Marchi, Dhinakaran Pandiyan On Fri, Nov 15, 2019 at 02:04:40PM +0200, Jani Nikula wrote: > It's supposed to be just a const pointer. > > Fixes: 074c77e3ec63 ("drm/i915/tgl: Gen-12 display loses Yf tiling and legacy CCS support") > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_sprite.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c > index d7f71fa90659..8394502b092d 100644 > --- a/drivers/gpu/drm/i915/display/intel_sprite.c > +++ b/drivers/gpu/drm/i915/display/intel_sprite.c > @@ -2921,7 +2921,7 @@ struct intel_plane * > skl_universal_plane_create(struct drm_i915_private *dev_priv, > enum pipe pipe, enum plane_id plane_id) > { > - static const struct drm_plane_funcs *plane_funcs; > + const struct drm_plane_funcs *plane_funcs; > struct intel_plane *plane; > enum drm_plane_type plane_type; > unsigned int supported_rotations; > -- > 2.20.1 -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: fix accidental static variable use 2019-11-15 12:04 [PATCH] drm/i915: fix accidental static variable use Jani Nikula 2019-11-15 12:04 ` [Intel-gfx] " Jani Nikula 2019-11-15 12:45 ` Ville Syrjälä @ 2019-11-15 15:13 ` Patchwork 2019-11-15 15:13 ` [Intel-gfx] " Patchwork 2019-11-16 23:22 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2019-11-15 15:13 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: fix accidental static variable use URL : https://patchwork.freedesktop.org/series/69525/ State : success == Summary == CI Bug Log - changes from CI_DRM_7352 -> Patchwork_15280 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html Known issues ------------ Here are the changes found in Patchwork_15280 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_module_load@reload-with-fault-injection: - fi-skl-6770hq: [INCOMPLETE][1] -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_chamelium@dp-crc-fast: - fi-icl-u2: [FAIL][3] ([fdo#109635 ] / [fdo#110387]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html #### Warnings #### * igt@i915_pm_rpm@basic-rte: - fi-kbl-guc: [SKIP][5] ([fdo#109271]) -> [FAIL][6] ([fdo#110829]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 [fdo#110387]: https://bugs.freedesktop.org/show_bug.cgi?id=110387 [fdo#110829]: https://bugs.freedesktop.org/show_bug.cgi?id=110829 Participating hosts (53 -> 44) ------------------------------ Missing (9): fi-ilk-m540 fi-bxt-dsi fi-tgl-u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_7352 -> Patchwork_15280 CI-20190529: 20190529 CI_DRM_7352: 9d6a1b13121af95e05798c72a76bf00207816f0e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5288: ff4551e36cd8e573ceb1e450d17a12e3298dc04c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_15280: cdfe59d34183b784bd191d3daf63e1c03d64bf1b @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == cdfe59d34183 drm/i915: fix accidental static variable use == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: fix accidental static variable use 2019-11-15 15:13 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-11-15 15:13 ` Patchwork 0 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2019-11-15 15:13 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: fix accidental static variable use URL : https://patchwork.freedesktop.org/series/69525/ State : success == Summary == CI Bug Log - changes from CI_DRM_7352 -> Patchwork_15280 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html Known issues ------------ Here are the changes found in Patchwork_15280 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_module_load@reload-with-fault-injection: - fi-skl-6770hq: [INCOMPLETE][1] -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_chamelium@dp-crc-fast: - fi-icl-u2: [FAIL][3] ([fdo#109635 ] / [fdo#110387]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html #### Warnings #### * igt@i915_pm_rpm@basic-rte: - fi-kbl-guc: [SKIP][5] ([fdo#109271]) -> [FAIL][6] ([fdo#110829]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 [fdo#110387]: https://bugs.freedesktop.org/show_bug.cgi?id=110387 [fdo#110829]: https://bugs.freedesktop.org/show_bug.cgi?id=110829 Participating hosts (53 -> 44) ------------------------------ Missing (9): fi-ilk-m540 fi-bxt-dsi fi-tgl-u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_7352 -> Patchwork_15280 CI-20190529: 20190529 CI_DRM_7352: 9d6a1b13121af95e05798c72a76bf00207816f0e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5288: ff4551e36cd8e573ceb1e450d17a12e3298dc04c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_15280: cdfe59d34183b784bd191d3daf63e1c03d64bf1b @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == cdfe59d34183 drm/i915: fix accidental static variable use == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: fix accidental static variable use 2019-11-15 12:04 [PATCH] drm/i915: fix accidental static variable use Jani Nikula ` (2 preceding siblings ...) 2019-11-15 15:13 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-11-16 23:22 ` Patchwork 2019-11-16 23:22 ` [Intel-gfx] " Patchwork 2019-11-18 11:17 ` Jani Nikula 3 siblings, 2 replies; 10+ messages in thread From: Patchwork @ 2019-11-16 23:22 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: fix accidental static variable use URL : https://patchwork.freedesktop.org/series/69525/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7352_full -> Patchwork_15280_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_15280_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_15280_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_15280_full: ### IGT changes ### #### Possible regressions #### * igt@prime_vgem@fence-wait-bsd1: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@prime_vgem@fence-wait-bsd1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb4/igt@prime_vgem@fence-wait-bsd1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_exec_parse_blt@bb-chained}: - shard-tglb: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_exec_parse_blt@bb-chained.html Known issues ------------ Here are the changes found in Patchwork_15280_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@vecs0-s3: - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_ctx_isolation@vecs0-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_ctx_isolation@vecs0-s3.html * igt@gem_ctx_persistence@vcs1-mixed-process: - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#109276] / [fdo#112080]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html * igt@gem_ctx_switch@queue-light: - shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111672]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb3/igt@gem_ctx_switch@queue-light.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_ctx_switch@queue-light.html * igt@gem_exec_schedule@pi-ringfull-bsd: - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@gem_exec_schedule@pi-ringfull-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276]) +13 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-queue-chain-blt: - shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([fdo#111606] / [fdo#111677]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@gem_exec_schedule@preempt-queue-chain-blt.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-chain-blt.html * igt@gem_exec_suspend@basic-s3: - shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([fdo#111736] / [fdo#111850]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@gem_exec_suspend@basic-s3.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb8/igt@gem_exec_suspend@basic-s3.html * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: - shard-apl: [PASS][18] -> [TIMEOUT][19] ([fdo#112113]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_wait@basic-wait-all: - shard-skl: [PASS][22] -> [DMESG-WARN][23] ([fdo#106107]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@gem_wait@basic-wait-all.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@gem_wait@basic-wait-all.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][24] -> [FAIL][25] ([fdo#111830 ]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@i915_pm_dc@dc6-psr.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_selftest@live_hangcheck: - shard-hsw: [PASS][26] -> [DMESG-FAIL][27] ([fdo#111991]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw5/igt@i915_selftest@live_hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@i915_selftest@live_hangcheck.html * igt@i915_suspend@sysfs-reader: - shard-tglb: [PASS][28] -> [INCOMPLETE][29] ([fdo#111832] / [fdo#111850]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb2/igt@i915_suspend@sysfs-reader.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@i915_suspend@sysfs-reader.html * igt@kms_color@pipe-a-ctm-red-to-blue: - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#107201]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_color@pipe-a-ctm-red-to-blue.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#103232]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - shard-snb: [PASS][34] -> [SKIP][35] ([fdo#109271]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb5/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [PASS][36] -> [FAIL][37] ([fdo#102670]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][38] -> [FAIL][39] ([fdo#105363]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-tglb: [PASS][40] -> [INCOMPLETE][41] ([fdo#111850] / [fdo#112031]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_flip@flip-vs-suspend.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_flip@flip-vs-suspend.html - shard-glk: [PASS][42] -> [INCOMPLETE][43] ([fdo#103359] / [k.org#198133]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk5/igt@kms_flip@flip-vs-suspend.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-skl: [PASS][44] -> [FAIL][45] ([fdo#100368]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl4/igt@kms_flip@plain-flip-ts-check-interruptible.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl6/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglb: [PASS][46] -> [FAIL][47] ([fdo#103167]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-iclb: [PASS][48] -> [FAIL][49] ([fdo#103167]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([fdo#108566]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][52] -> [FAIL][53] ([fdo#108145]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][54] -> [FAIL][55] ([fdo#103166]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][56] -> [SKIP][57] ([fdo#109441]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][58] -> [SKIP][59] ([fdo#112080]) +5 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][60] ([fdo#112080]) -> [PASS][61] +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_busy@busy-vcs1.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-kbl: [INCOMPLETE][62] ([fdo#103665]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_params@invalid-bsd-ring: - shard-iclb: [SKIP][64] ([fdo#109276]) -> [PASS][65] +6 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_exec_params@invalid-bsd-ring.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_exec_params@invalid-bsd-ring.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][66] ([fdo#112146]) -> [PASS][67] +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt: - shard-tglb: [INCOMPLETE][68] ([fdo#111606] / [fdo#111677]) -> [PASS][69] +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html * igt@gem_softpin@noreloc-s3: - shard-tglb: [INCOMPLETE][70] ([fdo#111832]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb1/igt@gem_softpin@noreloc-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@sync-unmap: - shard-hsw: [DMESG-WARN][72] ([fdo#111870]) -> [PASS][73] +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-snb: [DMESG-WARN][74] ([fdo#111870]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][76] ([fdo#108566]) -> [PASS][77] +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_workarounds@suspend-resume-context.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl7/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][78] ([fdo#111830 ]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_selftest@live_gt_timelines: - shard-tglb: [INCOMPLETE][80] ([fdo#111831]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@i915_selftest@live_gt_timelines.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@i915_selftest@live_gt_timelines.html * igt@kms_color@pipe-c-gamma: - shard-skl: [FAIL][82] ([fdo#104782]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_color@pipe-c-gamma.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_color@pipe-c-gamma.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +5 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: - shard-skl: [DMESG-WARN][86] ([fdo#105541]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@flip-vs-suspend: - shard-skl: [INCOMPLETE][88] ([fdo#109507]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_flip@flip-vs-suspend.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-iclb: [FAIL][90] ([fdo#103167]) -> [PASS][91] +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglb: [FAIL][92] ([fdo#103167]) -> [PASS][93] +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-tglb: [INCOMPLETE][94] ([fdo#111832] / [fdo#111850]) -> [PASS][95] +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [FAIL][96] ([fdo#108145] / [fdo#110403]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: [INCOMPLETE][98] ([fdo#111850]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_vblank@pipe-d-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_schedule@deep-vebox: - shard-tglb: [FAIL][100] ([fdo#111646]) -> [INCOMPLETE][101] ([fdo#111671]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb8/igt@gem_exec_schedule@deep-vebox.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@gem_exec_schedule@deep-vebox.html * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: - shard-tglb: [SKIP][102] ([fdo#112021 ]) -> [SKIP][103] ([fdo#112 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: fix accidental static variable use 2019-11-16 23:22 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2019-11-16 23:22 ` Patchwork 2019-11-18 11:17 ` Jani Nikula 1 sibling, 0 replies; 10+ messages in thread From: Patchwork @ 2019-11-16 23:22 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: fix accidental static variable use URL : https://patchwork.freedesktop.org/series/69525/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7352_full -> Patchwork_15280_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_15280_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_15280_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_15280_full: ### IGT changes ### #### Possible regressions #### * igt@prime_vgem@fence-wait-bsd1: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@prime_vgem@fence-wait-bsd1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb4/igt@prime_vgem@fence-wait-bsd1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_exec_parse_blt@bb-chained}: - shard-tglb: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_exec_parse_blt@bb-chained.html Known issues ------------ Here are the changes found in Patchwork_15280_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@vecs0-s3: - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_ctx_isolation@vecs0-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_ctx_isolation@vecs0-s3.html * igt@gem_ctx_persistence@vcs1-mixed-process: - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#109276] / [fdo#112080]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html * igt@gem_ctx_switch@queue-light: - shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111672]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb3/igt@gem_ctx_switch@queue-light.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_ctx_switch@queue-light.html * igt@gem_exec_schedule@pi-ringfull-bsd: - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@gem_exec_schedule@pi-ringfull-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd.html * igt@gem_exec_schedule@preempt-contexts-bsd2: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276]) +13 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html * igt@gem_exec_schedule@preempt-queue-chain-blt: - shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([fdo#111606] / [fdo#111677]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@gem_exec_schedule@preempt-queue-chain-blt.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-chain-blt.html * igt@gem_exec_suspend@basic-s3: - shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([fdo#111736] / [fdo#111850]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@gem_exec_suspend@basic-s3.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb8/igt@gem_exec_suspend@basic-s3.html * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: - shard-apl: [PASS][18] -> [TIMEOUT][19] ([fdo#112113]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_wait@basic-wait-all: - shard-skl: [PASS][22] -> [DMESG-WARN][23] ([fdo#106107]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@gem_wait@basic-wait-all.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@gem_wait@basic-wait-all.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][24] -> [FAIL][25] ([fdo#111830 ]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@i915_pm_dc@dc6-psr.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_selftest@live_hangcheck: - shard-hsw: [PASS][26] -> [DMESG-FAIL][27] ([fdo#111991]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw5/igt@i915_selftest@live_hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@i915_selftest@live_hangcheck.html * igt@i915_suspend@sysfs-reader: - shard-tglb: [PASS][28] -> [INCOMPLETE][29] ([fdo#111832] / [fdo#111850]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb2/igt@i915_suspend@sysfs-reader.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@i915_suspend@sysfs-reader.html * igt@kms_color@pipe-a-ctm-red-to-blue: - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#107201]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_color@pipe-a-ctm-red-to-blue.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_color@pipe-a-ctm-red-to-blue.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#103232]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - shard-snb: [PASS][34] -> [SKIP][35] ([fdo#109271]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb5/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [PASS][36] -> [FAIL][37] ([fdo#102670]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][38] -> [FAIL][39] ([fdo#105363]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-tglb: [PASS][40] -> [INCOMPLETE][41] ([fdo#111850] / [fdo#112031]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_flip@flip-vs-suspend.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_flip@flip-vs-suspend.html - shard-glk: [PASS][42] -> [INCOMPLETE][43] ([fdo#103359] / [k.org#198133]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk5/igt@kms_flip@flip-vs-suspend.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-skl: [PASS][44] -> [FAIL][45] ([fdo#100368]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl4/igt@kms_flip@plain-flip-ts-check-interruptible.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl6/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-tglb: [PASS][46] -> [FAIL][47] ([fdo#103167]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-iclb: [PASS][48] -> [FAIL][49] ([fdo#103167]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([fdo#108566]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][52] -> [FAIL][53] ([fdo#108145]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [PASS][54] -> [FAIL][55] ([fdo#103166]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][56] -> [SKIP][57] ([fdo#109441]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][58] -> [SKIP][59] ([fdo#112080]) +5 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][60] ([fdo#112080]) -> [PASS][61] +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_busy@busy-vcs1.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_busy@busy-vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-kbl: [INCOMPLETE][62] ([fdo#103665]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_params@invalid-bsd-ring: - shard-iclb: [SKIP][64] ([fdo#109276]) -> [PASS][65] +6 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_exec_params@invalid-bsd-ring.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_exec_params@invalid-bsd-ring.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][66] ([fdo#112146]) -> [PASS][67] +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt: - shard-tglb: [INCOMPLETE][68] ([fdo#111606] / [fdo#111677]) -> [PASS][69] +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html * igt@gem_softpin@noreloc-s3: - shard-tglb: [INCOMPLETE][70] ([fdo#111832]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb1/igt@gem_softpin@noreloc-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@sync-unmap: - shard-hsw: [DMESG-WARN][72] ([fdo#111870]) -> [PASS][73] +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-snb: [DMESG-WARN][74] ([fdo#111870]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][76] ([fdo#108566]) -> [PASS][77] +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_workarounds@suspend-resume-context.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl7/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][78] ([fdo#111830 ]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_selftest@live_gt_timelines: - shard-tglb: [INCOMPLETE][80] ([fdo#111831]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@i915_selftest@live_gt_timelines.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@i915_selftest@live_gt_timelines.html * igt@kms_color@pipe-c-gamma: - shard-skl: [FAIL][82] ([fdo#104782]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_color@pipe-c-gamma.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_color@pipe-c-gamma.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +5 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: - shard-skl: [DMESG-WARN][86] ([fdo#105541]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@flip-vs-suspend: - shard-skl: [INCOMPLETE][88] ([fdo#109507]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_flip@flip-vs-suspend.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-iclb: [FAIL][90] ([fdo#103167]) -> [PASS][91] +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglb: [FAIL][92] ([fdo#103167]) -> [PASS][93] +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-tglb: [INCOMPLETE][94] ([fdo#111832] / [fdo#111850]) -> [PASS][95] +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [FAIL][96] ([fdo#108145] / [fdo#110403]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: [INCOMPLETE][98] ([fdo#111850]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_vblank@pipe-d-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_schedule@deep-vebox: - shard-tglb: [FAIL][100] ([fdo#111646]) -> [INCOMPLETE][101] ([fdo#111671]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb8/igt@gem_exec_schedule@deep-vebox.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@gem_exec_schedule@deep-vebox.html * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: - shard-tglb: [SKIP][102] ([fdo#112021 ]) -> [SKIP][103] ([fdo#112 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for drm/i915: fix accidental static variable use 2019-11-16 23:22 ` ✗ Fi.CI.IGT: failure " Patchwork 2019-11-16 23:22 ` [Intel-gfx] " Patchwork @ 2019-11-18 11:17 ` Jani Nikula 2019-11-18 11:17 ` [Intel-gfx] " Jani Nikula 1 sibling, 1 reply; 10+ messages in thread From: Jani Nikula @ 2019-11-18 11:17 UTC (permalink / raw) To: Patchwork; +Cc: intel-gfx On Sat, 16 Nov 2019, Patchwork <patchwork@emeril.freedesktop.org> wrote: > == Series Details == > > Series: drm/i915: fix accidental static variable use > URL : https://patchwork.freedesktop.org/series/69525/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7352_full -> Patchwork_15280_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_15280_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_15280_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_15280_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@prime_vgem@fence-wait-bsd1: > - shard-tglb: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@prime_vgem@fence-wait-bsd1.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb4/igt@prime_vgem@fence-wait-bsd1.html > Hardly caused by this patch. Pushed, thanks for the review. BR, Jani. > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * {igt@gem_exec_parse_blt@bb-chained}: > - shard-tglb: NOTRUN -> [SKIP][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_exec_parse_blt@bb-chained.html > > > Known issues > ------------ > > Here are the changes found in Patchwork_15280_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ctx_isolation@vecs0-s3: > - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_ctx_isolation@vecs0-s3.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_ctx_isolation@vecs0-s3.html > > * igt@gem_ctx_persistence@vcs1-mixed-process: > - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#109276] / [fdo#112080]) +2 similar issues > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html > > * igt@gem_ctx_switch@queue-light: > - shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111672]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb3/igt@gem_ctx_switch@queue-light.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_ctx_switch@queue-light.html > > * igt@gem_exec_schedule@pi-ringfull-bsd: > - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +3 similar issues > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@gem_exec_schedule@pi-ringfull-bsd.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd.html > > * igt@gem_exec_schedule@preempt-contexts-bsd2: > - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276]) +13 similar issues > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html > > * igt@gem_exec_schedule@preempt-queue-chain-blt: > - shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([fdo#111606] / [fdo#111677]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@gem_exec_schedule@preempt-queue-chain-blt.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-chain-blt.html > > * igt@gem_exec_suspend@basic-s3: > - shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([fdo#111736] / [fdo#111850]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@gem_exec_suspend@basic-s3.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb8/igt@gem_exec_suspend@basic-s3.html > > * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: > - shard-apl: [PASS][18] -> [TIMEOUT][19] ([fdo#112113]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +1 similar issue > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@gem_wait@basic-wait-all: > - shard-skl: [PASS][22] -> [DMESG-WARN][23] ([fdo#106107]) +1 similar issue > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@gem_wait@basic-wait-all.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@gem_wait@basic-wait-all.html > > * igt@i915_pm_dc@dc6-psr: > - shard-iclb: [PASS][24] -> [FAIL][25] ([fdo#111830 ]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@i915_pm_dc@dc6-psr.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_selftest@live_hangcheck: > - shard-hsw: [PASS][26] -> [DMESG-FAIL][27] ([fdo#111991]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw5/igt@i915_selftest@live_hangcheck.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@i915_selftest@live_hangcheck.html > > * igt@i915_suspend@sysfs-reader: > - shard-tglb: [PASS][28] -> [INCOMPLETE][29] ([fdo#111832] / [fdo#111850]) +1 similar issue > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb2/igt@i915_suspend@sysfs-reader.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@i915_suspend@sysfs-reader.html > > * igt@kms_color@pipe-a-ctm-red-to-blue: > - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#107201]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_color@pipe-a-ctm-red-to-blue.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_color@pipe-a-ctm-red-to-blue.html > > * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: > - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#103232]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html > > * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > - shard-snb: [PASS][34] -> [SKIP][35] ([fdo#109271]) +3 similar issues > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb5/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-skl: [PASS][36] -> [FAIL][37] ([fdo#102670]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible: > - shard-glk: [PASS][38] -> [FAIL][39] ([fdo#105363]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > > * igt@kms_flip@flip-vs-suspend: > - shard-tglb: [PASS][40] -> [INCOMPLETE][41] ([fdo#111850] / [fdo#112031]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_flip@flip-vs-suspend.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_flip@flip-vs-suspend.html > - shard-glk: [PASS][42] -> [INCOMPLETE][43] ([fdo#103359] / [k.org#198133]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk5/igt@kms_flip@flip-vs-suspend.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk2/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_flip@plain-flip-ts-check-interruptible: > - shard-skl: [PASS][44] -> [FAIL][45] ([fdo#100368]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl4/igt@kms_flip@plain-flip-ts-check-interruptible.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl6/igt@kms_flip@plain-flip-ts-check-interruptible.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: > - shard-tglb: [PASS][46] -> [FAIL][47] ([fdo#103167]) +2 similar issues > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: > - shard-iclb: [PASS][48] -> [FAIL][49] ([fdo#103167]) +1 similar issue > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([fdo#108566]) +4 similar issues > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: > - shard-skl: [PASS][52] -> [FAIL][53] ([fdo#108145]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > > * igt@kms_plane_lowres@pipe-a-tiling-x: > - shard-iclb: [PASS][54] -> [FAIL][55] ([fdo#103166]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html > > * igt@kms_psr@psr2_primary_mmap_cpu: > - shard-iclb: [PASS][56] -> [SKIP][57] ([fdo#109441]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html > > * igt@perf_pmu@busy-no-semaphores-vcs1: > - shard-iclb: [PASS][58] -> [SKIP][59] ([fdo#112080]) +5 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@perf_pmu@busy-no-semaphores-vcs1.html > > > #### Possible fixes #### > > * igt@gem_busy@busy-vcs1: > - shard-iclb: [SKIP][60] ([fdo#112080]) -> [PASS][61] +4 similar issues > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_busy@busy-vcs1.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_busy@busy-vcs1.html > > * igt@gem_exec_flush@basic-batch-kernel-default-wb: > - shard-kbl: [INCOMPLETE][62] ([fdo#103665]) -> [PASS][63] > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html > > * igt@gem_exec_params@invalid-bsd-ring: > - shard-iclb: [SKIP][64] ([fdo#109276]) -> [PASS][65] +6 similar issues > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_exec_params@invalid-bsd-ring.html > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_exec_params@invalid-bsd-ring.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [SKIP][66] ([fdo#112146]) -> [PASS][67] +6 similar issues > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt: > - shard-tglb: [INCOMPLETE][68] ([fdo#111606] / [fdo#111677]) -> [PASS][69] +1 similar issue > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html > > * igt@gem_softpin@noreloc-s3: > - shard-tglb: [INCOMPLETE][70] ([fdo#111832]) -> [PASS][71] > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb1/igt@gem_softpin@noreloc-s3.html > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_softpin@noreloc-s3.html > > * igt@gem_userptr_blits@sync-unmap: > - shard-hsw: [DMESG-WARN][72] ([fdo#111870]) -> [PASS][73] +1 similar issue > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-snb: [DMESG-WARN][74] ([fdo#111870]) -> [PASS][75] > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@gem_workarounds@suspend-resume-context: > - shard-apl: [DMESG-WARN][76] ([fdo#108566]) -> [PASS][77] +3 similar issues > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_workarounds@suspend-resume-context.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl7/igt@gem_workarounds@suspend-resume-context.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-iclb: [FAIL][78] ([fdo#111830 ]) -> [PASS][79] > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_selftest@live_gt_timelines: > - shard-tglb: [INCOMPLETE][80] ([fdo#111831]) -> [PASS][81] > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@i915_selftest@live_gt_timelines.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@i915_selftest@live_gt_timelines.html > > * igt@kms_color@pipe-c-gamma: > - shard-skl: [FAIL][82] ([fdo#104782]) -> [PASS][83] > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_color@pipe-c-gamma.html > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_color@pipe-c-gamma.html > > * igt@kms_cursor_crc@pipe-c-cursor-suspend: > - shard-kbl: [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +5 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html > > * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: > - shard-skl: [DMESG-WARN][86] ([fdo#105541]) -> [PASS][87] > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html > > * igt@kms_flip@flip-vs-suspend: > - shard-skl: [INCOMPLETE][88] ([fdo#109507]) -> [PASS][89] > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_flip@flip-vs-suspend.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: > - shard-iclb: [FAIL][90] ([fdo#103167]) -> [PASS][91] +2 similar issues > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: > - shard-tglb: [FAIL][92] ([fdo#103167]) -> [PASS][93] +2 similar issues > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: > - shard-tglb: [INCOMPLETE][94] ([fdo#111832] / [fdo#111850]) -> [PASS][95] +2 similar issues > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > > * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > - shard-skl: [FAIL][96] ([fdo#108145] / [fdo#110403]) -> [PASS][97] > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > > * igt@kms_vblank@pipe-d-ts-continuation-suspend: > - shard-tglb: [INCOMPLETE][98] ([fdo#111850]) -> [PASS][99] > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-suspend.html > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_vblank@pipe-d-ts-continuation-suspend.html > > > #### Warnings #### > > * igt@gem_exec_schedule@deep-vebox: > - shard-tglb: [FAIL][100] ([fdo#111646]) -> [INCOMPLETE][101] ([fdo#111671]) > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb8/igt@gem_exec_schedule@deep-vebox.html > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@gem_exec_schedule@deep-vebox.html > > * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: > - shard-tglb: [SKIP][102] ([fdo#112021 ]) -> [SKIP][103] ([fdo#112 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: fix accidental static variable use 2019-11-18 11:17 ` Jani Nikula @ 2019-11-18 11:17 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2019-11-18 11:17 UTC (permalink / raw) To: Patchwork; +Cc: intel-gfx On Sat, 16 Nov 2019, Patchwork <patchwork@emeril.freedesktop.org> wrote: > == Series Details == > > Series: drm/i915: fix accidental static variable use > URL : https://patchwork.freedesktop.org/series/69525/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_7352_full -> Patchwork_15280_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_15280_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_15280_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_15280_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@prime_vgem@fence-wait-bsd1: > - shard-tglb: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@prime_vgem@fence-wait-bsd1.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb4/igt@prime_vgem@fence-wait-bsd1.html > Hardly caused by this patch. Pushed, thanks for the review. BR, Jani. > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * {igt@gem_exec_parse_blt@bb-chained}: > - shard-tglb: NOTRUN -> [SKIP][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_exec_parse_blt@bb-chained.html > > > Known issues > ------------ > > Here are the changes found in Patchwork_15280_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ctx_isolation@vecs0-s3: > - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_ctx_isolation@vecs0-s3.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_ctx_isolation@vecs0-s3.html > > * igt@gem_ctx_persistence@vcs1-mixed-process: > - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#109276] / [fdo#112080]) +2 similar issues > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html > > * igt@gem_ctx_switch@queue-light: > - shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111672]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb3/igt@gem_ctx_switch@queue-light.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_ctx_switch@queue-light.html > > * igt@gem_exec_schedule@pi-ringfull-bsd: > - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +3 similar issues > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@gem_exec_schedule@pi-ringfull-bsd.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd.html > > * igt@gem_exec_schedule@preempt-contexts-bsd2: > - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276]) +13 similar issues > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html > > * igt@gem_exec_schedule@preempt-queue-chain-blt: > - shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([fdo#111606] / [fdo#111677]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@gem_exec_schedule@preempt-queue-chain-blt.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-chain-blt.html > > * igt@gem_exec_suspend@basic-s3: > - shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([fdo#111736] / [fdo#111850]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@gem_exec_suspend@basic-s3.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb8/igt@gem_exec_suspend@basic-s3.html > > * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: > - shard-apl: [PASS][18] -> [TIMEOUT][19] ([fdo#112113]) > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-hsw: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +1 similar issue > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@gem_wait@basic-wait-all: > - shard-skl: [PASS][22] -> [DMESG-WARN][23] ([fdo#106107]) +1 similar issue > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@gem_wait@basic-wait-all.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@gem_wait@basic-wait-all.html > > * igt@i915_pm_dc@dc6-psr: > - shard-iclb: [PASS][24] -> [FAIL][25] ([fdo#111830 ]) > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@i915_pm_dc@dc6-psr.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@i915_pm_dc@dc6-psr.html > > * igt@i915_selftest@live_hangcheck: > - shard-hsw: [PASS][26] -> [DMESG-FAIL][27] ([fdo#111991]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw5/igt@i915_selftest@live_hangcheck.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@i915_selftest@live_hangcheck.html > > * igt@i915_suspend@sysfs-reader: > - shard-tglb: [PASS][28] -> [INCOMPLETE][29] ([fdo#111832] / [fdo#111850]) +1 similar issue > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb2/igt@i915_suspend@sysfs-reader.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@i915_suspend@sysfs-reader.html > > * igt@kms_color@pipe-a-ctm-red-to-blue: > - shard-skl: [PASS][30] -> [FAIL][31] ([fdo#107201]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_color@pipe-a-ctm-red-to-blue.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_color@pipe-a-ctm-red-to-blue.html > > * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: > - shard-skl: [PASS][32] -> [FAIL][33] ([fdo#103232]) > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html > > * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: > - shard-snb: [PASS][34] -> [SKIP][35] ([fdo#109271]) +3 similar issues > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb5/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-skl: [PASS][36] -> [FAIL][37] ([fdo#102670]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible: > - shard-glk: [PASS][38] -> [FAIL][39] ([fdo#105363]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > > * igt@kms_flip@flip-vs-suspend: > - shard-tglb: [PASS][40] -> [INCOMPLETE][41] ([fdo#111850] / [fdo#112031]) > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_flip@flip-vs-suspend.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_flip@flip-vs-suspend.html > - shard-glk: [PASS][42] -> [INCOMPLETE][43] ([fdo#103359] / [k.org#198133]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-glk5/igt@kms_flip@flip-vs-suspend.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-glk2/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_flip@plain-flip-ts-check-interruptible: > - shard-skl: [PASS][44] -> [FAIL][45] ([fdo#100368]) > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl4/igt@kms_flip@plain-flip-ts-check-interruptible.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl6/igt@kms_flip@plain-flip-ts-check-interruptible.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: > - shard-tglb: [PASS][46] -> [FAIL][47] ([fdo#103167]) +2 similar issues > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: > - shard-iclb: [PASS][48] -> [FAIL][49] ([fdo#103167]) +1 similar issue > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: > - shard-kbl: [PASS][50] -> [DMESG-WARN][51] ([fdo#108566]) +4 similar issues > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html > > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: > - shard-skl: [PASS][52] -> [FAIL][53] ([fdo#108145]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html > > * igt@kms_plane_lowres@pipe-a-tiling-x: > - shard-iclb: [PASS][54] -> [FAIL][55] ([fdo#103166]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-x.html > > * igt@kms_psr@psr2_primary_mmap_cpu: > - shard-iclb: [PASS][56] -> [SKIP][57] ([fdo#109441]) > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html > > * igt@perf_pmu@busy-no-semaphores-vcs1: > - shard-iclb: [PASS][58] -> [SKIP][59] ([fdo#112080]) +5 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@perf_pmu@busy-no-semaphores-vcs1.html > > > #### Possible fixes #### > > * igt@gem_busy@busy-vcs1: > - shard-iclb: [SKIP][60] ([fdo#112080]) -> [PASS][61] +4 similar issues > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_busy@busy-vcs1.html > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_busy@busy-vcs1.html > > * igt@gem_exec_flush@basic-batch-kernel-default-wb: > - shard-kbl: [INCOMPLETE][62] ([fdo#103665]) -> [PASS][63] > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html > > * igt@gem_exec_params@invalid-bsd-ring: > - shard-iclb: [SKIP][64] ([fdo#109276]) -> [PASS][65] +6 similar issues > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb5/igt@gem_exec_params@invalid-bsd-ring.html > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb4/igt@gem_exec_params@invalid-bsd-ring.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [SKIP][66] ([fdo#112146]) -> [PASS][67] +6 similar issues > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt: > - shard-tglb: [INCOMPLETE][68] ([fdo#111606] / [fdo#111677]) -> [PASS][69] +1 similar issue > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html > > * igt@gem_softpin@noreloc-s3: > - shard-tglb: [INCOMPLETE][70] ([fdo#111832]) -> [PASS][71] > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb1/igt@gem_softpin@noreloc-s3.html > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@gem_softpin@noreloc-s3.html > > * igt@gem_userptr_blits@sync-unmap: > - shard-hsw: [DMESG-WARN][72] ([fdo#111870]) -> [PASS][73] +1 similar issue > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-snb: [DMESG-WARN][74] ([fdo#111870]) -> [PASS][75] > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@gem_workarounds@suspend-resume-context: > - shard-apl: [DMESG-WARN][76] ([fdo#108566]) -> [PASS][77] +3 similar issues > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_workarounds@suspend-resume-context.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-apl7/igt@gem_workarounds@suspend-resume-context.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-iclb: [FAIL][78] ([fdo#111830 ]) -> [PASS][79] > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_selftest@live_gt_timelines: > - shard-tglb: [INCOMPLETE][80] ([fdo#111831]) -> [PASS][81] > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@i915_selftest@live_gt_timelines.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb2/igt@i915_selftest@live_gt_timelines.html > > * igt@kms_color@pipe-c-gamma: > - shard-skl: [FAIL][82] ([fdo#104782]) -> [PASS][83] > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_color@pipe-c-gamma.html > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_color@pipe-c-gamma.html > > * igt@kms_cursor_crc@pipe-c-cursor-suspend: > - shard-kbl: [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +5 similar issues > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html > > * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic: > - shard-skl: [DMESG-WARN][86] ([fdo#105541]) -> [PASS][87] > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html > > * igt@kms_flip@flip-vs-suspend: > - shard-skl: [INCOMPLETE][88] ([fdo#109507]) -> [PASS][89] > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl3/igt@kms_flip@flip-vs-suspend.html > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl4/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: > - shard-iclb: [FAIL][90] ([fdo#103167]) -> [PASS][91] +2 similar issues > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: > - shard-tglb: [FAIL][92] ([fdo#103167]) -> [PASS][93] +2 similar issues > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html > > * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: > - shard-tglb: [INCOMPLETE][94] ([fdo#111832] / [fdo#111850]) -> [PASS][95] +2 similar issues > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html > > * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: > - shard-skl: [FAIL][96] ([fdo#108145] / [fdo#110403]) -> [PASS][97] > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html > > * igt@kms_vblank@pipe-d-ts-continuation-suspend: > - shard-tglb: [INCOMPLETE][98] ([fdo#111850]) -> [PASS][99] > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-suspend.html > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb9/igt@kms_vblank@pipe-d-ts-continuation-suspend.html > > > #### Warnings #### > > * igt@gem_exec_schedule@deep-vebox: > - shard-tglb: [FAIL][100] ([fdo#111646]) -> [INCOMPLETE][101] ([fdo#111671]) > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb8/igt@gem_exec_schedule@deep-vebox.html > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/shard-tglb1/igt@gem_exec_schedule@deep-vebox.html > > * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: > - shard-tglb: [SKIP][102] ([fdo#112021 ]) -> [SKIP][103] ([fdo#112 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15280/index.html -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2019-11-18 11:17 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-11-15 12:04 [PATCH] drm/i915: fix accidental static variable use Jani Nikula 2019-11-15 12:04 ` [Intel-gfx] " Jani Nikula 2019-11-15 12:45 ` Ville Syrjälä 2019-11-15 12:45 ` [Intel-gfx] " Ville Syrjälä 2019-11-15 15:13 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-11-15 15:13 ` [Intel-gfx] " Patchwork 2019-11-16 23:22 ` ✗ Fi.CI.IGT: failure " Patchwork 2019-11-16 23:22 ` [Intel-gfx] " Patchwork 2019-11-18 11:17 ` Jani Nikula 2019-11-18 11:17 ` [Intel-gfx] " Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox