All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc
@ 2020-02-29 17:04 Anshuman Gupta
  2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Anshuman Gupta @ 2020-02-29 17:04 UTC (permalink / raw)
  To: igt-dev

Fixed review comment for 1st patch.

Anshuman Gupta (2):
  tests/i915_pm_dc: Dump power_domain_info on DC test failures
  tests/i915_pm_dc: psr required only for dc*-psr tests

 tests/i915/i915_pm_dc.c | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

-- 
2.25.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [igt-dev] [PATCH i-g-t v3 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures
  2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
@ 2020-02-29 17:04 ` Anshuman Gupta
  2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Anshuman Gupta @ 2020-02-29 17:04 UTC (permalink / raw)
  To: igt-dev

Dump i915_power_domain_info debugfs attribute on DC state
test failures, it will help to identify culprit, which
causes non zero refcount for "DC off" power well.

v2:
- Fix the mem leak. [Jose]
v3:
- Removed pwr_dmn_info global. [Jose]

Cc: Animesh Manna <animesh.manna@intel.com>
Cc: José Roberto de Souza <jose.souza@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_dc.c | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index afcc10bc..d27ba0a7 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -39,6 +39,8 @@
 #define CHECK_DC6	(1 << 1)
 #define CHECK_DC3CO	(1 << 2)
 
+#define PWR_DOMAIN_INFO "i915_power_domain_info"
+
 typedef struct {
 	double r, g, b;
 } color_t;
@@ -48,6 +50,7 @@ typedef struct {
 	int msr_fd;
 	int debugfs_fd;
 	uint32_t devid;
+	char *pwr_dmn_info;
 	igt_display_t display;
 	struct igt_fb fb_white, fb_rgb, fb_rgr;
 	enum psr_mode op_psr_mode;
@@ -57,7 +60,7 @@ typedef struct {
 } data_t;
 
 static bool dc_state_wait_entry(int drm_fd, int dc_flag, int prev_dc_count);
-static void check_dc_counter(int drm_fd, int dc_flag, uint32_t prev_dc_count);
+static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count);
 
 static void setup_output(data_t *data)
 {
@@ -203,14 +206,15 @@ static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
 			prev_dc_count, 3000, 100);
 }
 
-static void check_dc_counter(int debugfs_fd, int dc_flag, uint32_t prev_dc_count)
+static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
 {
 	char tmp[64];
 
 	snprintf(tmp, sizeof(tmp), "%s", dc_flag & CHECK_DC3CO ? "DC3CO" :
 		(dc_flag & CHECK_DC5 ? "DC5" : "DC6"));
-	igt_assert_f(dc_state_wait_entry(debugfs_fd, dc_flag, prev_dc_count),
-		     "%s state is not achieved\n", tmp);
+	igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+		     "%s state is not achieved\n%s:\n%s\n", tmp, PWR_DOMAIN_INFO,
+		     data->pwr_dmn_info = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
 }
 
 static void setup_videoplayback(data_t *data)
@@ -256,7 +260,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
 		usleep(delay);
 	}
 
-	check_dc_counter(data->debugfs_fd, CHECK_DC3CO, dc3co_prev_cnt);
+	check_dc_counter(data, CHECK_DC3CO, dc3co_prev_cnt);
 }
 
 static void require_dc_counter(int debugfs_fd, int dc_flag)
@@ -311,7 +315,7 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
 	setup_output(data);
 	setup_primary(data);
 	igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode));
-	check_dc_counter(data->debugfs_fd, dc_flag, dc_counter_before_psr);
+	check_dc_counter(data, dc_flag, dc_counter_before_psr);
 	cleanup_dc_psr(data);
 }
 
@@ -372,7 +376,7 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
 	setup_dc_dpms(data);
 	dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
 	dpms_off(data);
-	check_dc_counter(data->debugfs_fd, dc_flag, dc_counter);
+	check_dc_counter(data, dc_flag, dc_counter);
 	dpms_on(data);
 	cleanup_dc_dpms(data);
 }
@@ -441,6 +445,7 @@ int main(int argc, char *argv[])
 	}
 
 	igt_fixture {
+		free(data.pwr_dmn_info);
 		close(data.debugfs_fd);
 		close(data.msr_fd);
 		display_fini(&data);
-- 
2.25.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [igt-dev] [PATCH i-g-t v3 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests
  2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
  2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta
@ 2020-02-29 17:04 ` Anshuman Gupta
  2020-02-29 18:00 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev4) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Anshuman Gupta @ 2020-02-29 17:04 UTC (permalink / raw)
  To: igt-dev

DPMS igt tests were skipping for non-psr panels due to
psr_sink_support sink check added to igt_fixture() at
commit <6cbe6af372a01be63121056679d540436ffd0b64>.
DPMS dc state igt test don't require psr_sink_support, as it
validates DC states with all display being DPMS off.
Removing the psr sink check from igt_fixture and adding
it only for dc*- psr tests.

v2:
- Adding psr sink check to dc3co and moving ahead it
  in dc5/6 psr tests. [Jose]

Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Cc: José Roberto de Souza <jose.souza@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_dc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index d27ba0a7..2dd6191d 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -397,7 +397,6 @@ int main(int argc, char *argv[])
 		igt_require(igt_setup_runtime_pm(data.drm_fd));
 		igt_require(igt_pm_dmc_loaded(data.debugfs_fd));
 		igt_display_require(&data.display, data.drm_fd);
-		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1));
 		/* Make sure our Kernel supports MSR and the module is loaded */
 		igt_require(igt_kmod_load("msr", NULL) == 0);
 
@@ -409,12 +408,14 @@ int main(int argc, char *argv[])
 	igt_describe("In this test we make sure that system enters DC3CO "
 		     "when PSR2 is active and system is in SLEEP state");
 	igt_subtest("dc3co-vpb-simulation") {
+		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_2));
 		test_dc3co_vpb_simulation(&data);
 	}
 
 	igt_describe("This test validates display engine entry to DC5 state "
 		     "while PSR is active");
 	igt_subtest("dc5-psr") {
+		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1));
 		data.op_psr_mode = PSR_MODE_1;
 		psr_enable(data.debugfs_fd, data.op_psr_mode);
 		test_dc_state_psr(&data, CHECK_DC5);
@@ -423,6 +424,7 @@ int main(int argc, char *argv[])
 	igt_describe("This test validates display engine entry to DC6 state "
 		     "while PSR is active");
 	igt_subtest("dc6-psr") {
+		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1));
 		data.op_psr_mode = PSR_MODE_1;
 		psr_enable(data.debugfs_fd, data.op_psr_mode);
 		igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
-- 
2.25.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev4)
  2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
  2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta
  2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta
@ 2020-02-29 18:00 ` Patchwork
  2020-03-02  6:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2020-03-02 11:53 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2020-02-29 18:00 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: DC states IGT misc (rev4)
URL   : https://patchwork.freedesktop.org/series/73509/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8036 -> IGTPW_4241
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html

Known issues
------------

  Here are the changes found in IGTPW_4241 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-skl-6700k2:      [PASS][1] -> [INCOMPLETE][2] ([i915#146] / [i915#69])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/fi-skl-6700k2/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/fi-skl-6700k2/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-tgl-y:           [PASS][3] -> [FAIL][4] ([CI#94])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@kms_addfb_basic@addfb25-bad-modifier:
    - fi-tgl-y:           [PASS][5] -> [DMESG-WARN][6] ([CI#94] / [i915#402]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/fi-tgl-y/igt@kms_addfb_basic@addfb25-bad-modifier.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/fi-tgl-y/igt@kms_addfb_basic@addfb25-bad-modifier.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][7] -> [FAIL][8] ([fdo#111096] / [i915#323])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
#### Possible fixes ####

  * igt@prime_self_import@basic-llseek-bad:
    - fi-tgl-y:           [DMESG-WARN][9] ([CI#94] / [i915#402]) -> [PASS][10] +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html

  
  [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
  [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#69]: https://gitlab.freedesktop.org/drm/intel/issues/69


Participating hosts (42 -> 38)
------------------------------

  Additional (4): fi-hsw-peppy fi-skl-lmem fi-bwr-2160 fi-bsw-n3050 
  Missing    (8): fi-bdw-5557u fi-tgl-dsi fi-byt-squawks fi-bsw-cyan fi-ivb-3770 fi-elk-e7500 fi-bdw-samus fi-snb-2600 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5480 -> IGTPW_4241

  CI-20190529: 20190529
  CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4241: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
  IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
                   ` (2 preceding siblings ...)
  2020-02-29 18:00 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev4) Patchwork
@ 2020-03-02  6:11 ` Patchwork
  2020-03-02  8:40   ` Anshuman Gupta
  2020-03-02 11:53 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2020-03-02  6:11 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: DC states IGT misc (rev4)
URL   : https://patchwork.freedesktop.org/series/73509/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_4241_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_4241_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_4241_full:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rpm@basic-rte:
    - shard-glk:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
    - shard-iclb:         [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
    - shard-tglb:         [PASS][5] -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
    - shard-hsw:          [PASS][7] -> [FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i915_pm_rpm@basic-rte.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14] +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html

  
Known issues
------------

  Here are the changes found in IGTPW_4241_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
    - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html

  * igt@gem_exec_schedule@implicit-both-bsd:
    - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html

  * igt@gem_exec_schedule@implicit-both-bsd2:
    - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276] / [i915#677])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd2.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276]) +21 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146]) +5 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_exec_whisper@basic-fds-forked:
    - shard-tglb:         [PASS][25] -> [INCOMPLETE][26] ([i915#1318])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@gem_exec_whisper@basic-fds-forked.html

  * igt@gem_partial_pwrite_pread@write:
    - shard-hsw:          [PASS][27] -> [DMESG-WARN][28] ([fdo#110789] / [i915#478])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_partial_pwrite_pread@write.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#180])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
    - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
    - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms_setmode@basic.html

  * igt@perf_pmu@init-busy-vcs1:
    - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080]) +13 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@perf_pmu@init-busy-vcs1.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46] +7 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_exec_schedule@implicit-read-write-bsd1:
    - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_exec_schedule@implicit-read-write-bsd1.html

  * igt@gem_exec_schedule@preempt-contexts-bsd2:
    - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50] +17 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
    - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64] +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rps@reset:
    - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rps@reset.html

  * igt@i915_selftest@live@hangcheck:
    - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][75] ([i915#180]) -> [PASS][76] +5 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-snb:          [DMESG-WARN][77] ([i915#42]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80] +3 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82] +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_universal_plane@universal-plane-pipe-c-functional:
    - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
    - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
    - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@perf@gen12-mi-rpc.html

  * {igt@perf@stress-open-close}:
    - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@perf@stress-open-close.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-apl:          [TIMEOUT][93] ([i915#1319]) -> [FAIL][94] ([fdo#110321])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms_content_protection@srm.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
  [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
  [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
  [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677


Participating hosts (10 -> 8)
------------------------------

  Missing    (2): pig-skl-6260u pig-glk-j5005 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5480 -> IGTPW_4241
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4241: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
  IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-02  6:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-02  8:40   ` Anshuman Gupta
  2020-03-02 12:16     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 13+ messages in thread
From: Anshuman Gupta @ 2020-03-02  8:40 UTC (permalink / raw)
  To: igt-dev, lakshminarayana.vudum

On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: DC states IGT misc (rev4)
> URL   : https://patchwork.freedesktop.org/series/73509/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4241_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4241_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4241_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - shard-glk:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
>     - shard-iclb:         [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
>     - shard-tglb:         [PASS][5] -> [FAIL][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
>     - shard-hsw:          [PASS][7] -> [FAIL][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> 
>  
Hi Lakshmi ,
Above failures occured for igt-series 
https://patchwork.freedesktop.org/series/73509/
These failures are not related to this series, do u have any info on these failures
whehter these are already known issue or something recently broken at i915 runtime suspend.

Hi Jose ,
Cosidering the CI results of rev3 https://patchwork.freedesktop.org/series/73509/#rev3
this series looks ok to merge, as rev4 has just cosmetic changes to remove global var.
Thanks,
Anshuman Gupta.
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14] +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4241_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
>     - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> 
>   * igt@gem_exec_schedule@implicit-both-bsd:
>     - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677]) +1 similar issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html
> 
>   * igt@gem_exec_schedule@implicit-both-bsd2:
>     - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276] / [i915#677])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd2.html
> 
>   * igt@gem_exec_schedule@preempt-queue-bsd1:
>     - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276]) +21 similar issues
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html
> 
>   * igt@gem_exec_schedule@preemptive-hang-bsd:
>     - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146]) +5 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
> 
>   * igt@gem_exec_whisper@basic-fds-forked:
>     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26] ([i915#1318])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@gem_exec_whisper@basic-fds-forked.html
> 
>   * igt@gem_partial_pwrite_pread@write:
>     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28] ([fdo#110789] / [i915#478])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_suspend@debugfs-reader:
>     - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#180])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i915_suspend@debugfs-reader.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
>     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> 
>   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
>     - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441]) +1 similar issue
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
>     - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms_setmode@basic.html
> 
>   * igt@perf_pmu@init-busy-vcs1:
>     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080]) +13 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@perf_pmu@init-busy-vcs1.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@vcs1-dirty-create:
>     - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46] +7 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html
> 
>   * igt@gem_exec_schedule@implicit-read-write-bsd1:
>     - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> 
>   * igt@gem_exec_schedule@preempt-contexts-bsd2:
>     - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50] +17 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> 
>   * igt@gem_exec_schedule@reorder-wide-bsd:
>     - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52] +2 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html
> 
>   * igt@gem_ppgtt@flink-and-close-vma-leak:
>     - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> 
>   * igt@gem_userptr_blits@sync-unmap:
>     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html
> 
>   * igt@gem_workarounds@suspend-resume-context:
>     - shard-apl:          [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +3 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
>     - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress:
>     - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64] +1 similar issue
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i915_pm_rpm@gem-execbuf-stress.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rps@reset.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) -> [PASS][74]
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i915_selftest@live@hangcheck.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) -> [PASS][76] +5 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-snb:          [DMESG-WARN][77] ([i915#42]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
>     - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80] +3 similar issues
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_psr@psr2_sprite_blt:
>     - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82] +1 similar issue
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
> 
>   * igt@kms_universal_plane@universal-plane-pipe-c-functional:
>     - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>     - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>     - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> 
>   * igt@perf@gen12-mi-rpc:
>     - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@perf@gen12-mi-rpc.html
> 
>   * {igt@perf@stress-open-close}:
>     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) -> [PASS][92]
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@perf@stress-open-close.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          [TIMEOUT][93] ([i915#1319]) -> [FAIL][94] ([fdo#110321])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms_content_protection@srm.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
>   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
>   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
>   [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
>   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
>   [i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
>   [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
>   [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
>   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
>   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
>   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
>   [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
>   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
>   [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
>   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> 
> 
> Participating hosts (10 -> 8)
> ------------------------------
> 
>   Missing    (2): pig-skl-6260u pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5480 -> IGTPW_4241
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4241: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
>   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for DC states IGT misc (rev4)
  2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
                   ` (3 preceding siblings ...)
  2020-03-02  6:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-02 11:53 ` Patchwork
  4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2020-03-02 11:53 UTC (permalink / raw)
  To: Anshuman Gupta; +Cc: igt-dev

== Series Details ==

Series: DC states IGT misc (rev4)
URL   : https://patchwork.freedesktop.org/series/73509/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_4241_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_4241_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_4241_full:

### IGT changes ###

#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html

  
Known issues
------------

  Here are the changes found in IGTPW_4241_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#616])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html

  * igt@gem_exec_schedule@implicit-both-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([i915#677]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html

  * igt@gem_exec_schedule@implicit-both-bsd2:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109276] / [i915#677])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd2.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([fdo#109276]) +21 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][15] -> [SKIP][16] ([fdo#112146]) +5 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_exec_whisper@basic-fds-forked:
    - shard-tglb:         [PASS][17] -> [INCOMPLETE][18] ([i915#1318])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@gem_exec_whisper@basic-fds-forked.html

  * igt@gem_partial_pwrite_pread@write:
    - shard-hsw:          [PASS][19] -> [DMESG-WARN][20] ([fdo#110789] / [i915#478])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_partial_pwrite_pread@write.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_rpm@basic-rte:
    - shard-glk:          [PASS][23] -> [FAIL][24] ([i915#579])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([i915#579])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
    - shard-tglb:         [PASS][27] -> [FAIL][28] ([i915#579])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
    - shard-hsw:          [PASS][29] -> [FAIL][30] ([i915#579])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#180])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
    - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
    - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms_setmode@basic.html

  * igt@perf_pmu@init-busy-vcs1:
    - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080]) +13 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@perf_pmu@init-busy-vcs1.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46] +7 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_exec_schedule@implicit-read-write-bsd1:
    - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@gem_exec_schedule@implicit-read-write-bsd1.html

  * igt@gem_exec_schedule@preempt-contexts-bsd2:
    - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50] +17 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
    - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64] +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
    - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rps@reset:
    - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rps@reset.html

  * igt@i915_selftest@live@hangcheck:
    - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][75] ([i915#180]) -> [PASS][76] +5 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-snb:          [DMESG-WARN][77] ([i915#42]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80] +3 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82] +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_universal_plane@universal-plane-pipe-c-functional:
    - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
    - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
    - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@perf@gen12-mi-rpc.html

  * {igt@perf@stress-open-close}:
    - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@perf@stress-open-close.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-apl:          [TIMEOUT][93] ([i915#1319]) -> [FAIL][94] ([fdo#110321])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms_content_protection@srm.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
  [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
  [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
  [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677


Participating hosts (10 -> 8)
------------------------------

  Missing    (2): pig-skl-6260u pig-glk-j5005 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5480 -> IGTPW_4241
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4241: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
  IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-02  8:40   ` Anshuman Gupta
@ 2020-03-02 12:16     ` Vudum, Lakshminarayana
  2020-03-02 20:29       ` Souza, Jose
  0 siblings, 1 reply; 13+ messages in thread
From: Vudum, Lakshminarayana @ 2020-03-02 12:16 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev

Anshuman,
I have addressed the issue and re-reported the results.
We have a bug already for that issue, it's https://gitlab.freedesktop.org/drm/intel/issues/579

Thanks,
Lakshmi.

-----Original Message-----
From: Gupta, Anshuman <anshuman.gupta@intel.com> 
Sent: Monday, March 2, 2020 10:41 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: Souza, Jose <jose.souza@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)

On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: DC states IGT misc (rev4)
> URL   : https://patchwork.freedesktop.org/series/73509/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4241_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4241_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4241_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - shard-glk:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
>     - shard-iclb:         [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
>     - shard-tglb:         [PASS][5] -> [FAIL][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
>     - shard-hsw:          [PASS][7] -> [FAIL][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
>    [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> 5_pm_rpm@basic-rte.html
> 
>  
Hi Lakshmi ,
Above failures occured for igt-series
https://patchwork.freedesktop.org/series/73509/
These failures are not related to this series, do u have any info on these failures whehter these are already known issue or something recently broken at i915 runtime suspend.

Hi Jose ,
Cosidering the CI results of rev3 https://patchwork.freedesktop.org/series/73509/#rev3
this series looks ok to merge, as rev4 has just cosmetic changes to remove global var.
Thanks,
Anshuman Gupta.
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> 15_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> 5_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14] +1 similar issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
>    [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> 15_pm_dc@dc6-psr.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4241_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
>     - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> m_ctx_shared@exec-shared-gtt-bsd2.html
> 
>   * igt@gem_exec_schedule@implicit-both-bsd:
>     - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677]) +1 similar issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
>    [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> m_exec_schedule@implicit-both-bsd.html
> 
>   * igt@gem_exec_schedule@implicit-both-bsd2:
>     - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276] / [i915#677])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> m_exec_schedule@implicit-both-bsd2.html
> 
>   * igt@gem_exec_schedule@preempt-queue-bsd1:
>     - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276]) +21 similar issues
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> m_exec_schedule@preempt-queue-bsd1.html
> 
>   * igt@gem_exec_schedule@preemptive-hang-bsd:
>     - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146]) +5 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> m_exec_schedule@preemptive-hang-bsd.html
> 
>   * igt@gem_exec_whisper@basic-fds-forked:
>     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26] ([i915#1318])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> m_exec_whisper@basic-fds-forked.html
> 
>   * igt@gem_partial_pwrite_pread@write:
>     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28] ([fdo#110789] / [i915#478])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> _partial_pwrite_pread@write.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> _workarounds@suspend-resume-fd.html
> 
>   * igt@i915_suspend@debugfs-reader:
>     - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#180])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
>    [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> 5_suspend@debugfs-reader.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
>     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
>    [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> 
>   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
>     - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
>    [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441]) +1 similar issue
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>    [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> s_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
>     - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
>    [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> _setmode@basic.html
> 
>   * igt@perf_pmu@init-busy-vcs1:
>     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080]) +13 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
>    [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> rf_pmu@init-busy-vcs1.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@vcs1-dirty-create:
>     - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46] +7 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
>    [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> m_ctx_isolation@vcs1-dirty-create.html
> 
>   * igt@gem_exec_schedule@implicit-read-write-bsd1:
>     - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
>    [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> m_exec_schedule@implicit-read-write-bsd1.html
> 
>   * igt@gem_exec_schedule@preempt-contexts-bsd2:
>     - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50] +17 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
>    [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> m_exec_schedule@preempt-contexts-bsd2.html
> 
>   * igt@gem_exec_schedule@reorder-wide-bsd:
>     - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52] +2 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
>    [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> m_exec_schedule@reorder-wide-bsd.html
> 
>   * igt@gem_ppgtt@flink-and-close-vma-leak:
>     - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> _ppgtt@flink-and-close-vma-leak.html
> 
>   * igt@gem_userptr_blits@sync-unmap:
>     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56]
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
>    [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> _userptr_blits@sync-unmap.html
> 
>   * igt@gem_workarounds@suspend-resume-context:
>     - shard-apl:          [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +3 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
>    [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> _workarounds@suspend-resume-context.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
>     - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
>    [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> 5_pm_dc@dc5-dpms.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress:
>     - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64] +1 similar issue
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> 15_pm_rpm@gem-execbuf-stress.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
>    [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> 15_pm_rps@reset.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) -> [PASS][74]
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
>    [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> 15_selftest@live@hangcheck.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) -> [PASS][76] +5 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
>    [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> _cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-snb:          [DMESG-WARN][77] ([i915#42]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
>    [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> _flip@flip-vs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
>     - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80] +3 similar issues
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
>    [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> 
>   * igt@kms_psr@psr2_sprite_blt:
>     - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82] +1 similar issue
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
>    [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> s_psr@psr2_sprite_blt.html
> 
>   * igt@kms_universal_plane@universal-plane-pipe-c-functional:
>     - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>     - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>     - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
>    [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> _universal_plane@universal-plane-pipe-c-functional.html
> 
>   * igt@perf@gen12-mi-rpc:
>     - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
>    [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> rf@gen12-mi-rpc.html
> 
>   * {igt@perf@stress-open-close}:
>     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) -> [PASS][92]
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
>    [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> f@stress-open-close.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          [TIMEOUT][93] ([i915#1319]) -> [FAIL][94] ([fdo#110321])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
>    [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> _content_protection@srm.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
>   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
>   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
>   [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
>   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
>   [i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
>   [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
>   [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
>   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
>   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
>   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
>   [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
>   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
>   [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
>   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> 
> 
> Participating hosts (10 -> 8)
> ------------------------------
> 
>   Missing    (2): pig-skl-6260u pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5480 -> IGTPW_4241
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4241: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
>   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-02 12:16     ` Vudum, Lakshminarayana
@ 2020-03-02 20:29       ` Souza, Jose
  2020-03-02 20:29         ` Souza, Jose
  0 siblings, 1 reply; 13+ messages in thread
From: Souza, Jose @ 2020-03-02 20:29 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana, Gupta, Anshuman

Can you take a look at those? From new rev4 run 
https://patchwork.freedesktop.org/series/73509/#rev4

* igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
   [1]: 
https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [2]: 
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
   [3]: 
https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
   [4]: 
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1
similar issue
   [5]: 
https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
   [6]: 
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html


On Mon, 2020-03-02 at 12:16 +0000, Vudum, Lakshminarayana wrote:
> Anshuman,
> I have addressed the issue and re-reported the results.
> We have a bug already for that issue, it's 
> https://gitlab.freedesktop.org/drm/intel/issues/579
> 
> Thanks,
> Lakshmi.
> 
> -----Original Message-----
> From: Gupta, Anshuman <anshuman.gupta@intel.com> 
> Sent: Monday, March 2, 2020 10:41 AM
> To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <
> lakshminarayana.vudum@intel.com>
> Cc: Souza, Jose <jose.souza@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
> 
> On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> > == Series Details ==
> > 
> > Series: DC states IGT misc (rev4)
> > URL   : https://patchwork.freedesktop.org/series/73509/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full 
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> > 
> >   Serious unknown changes coming with IGTPW_4241_full absolutely
> > need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the
> > changes
> >   introduced in IGTPW_4241_full, please notify your bug team to
> > allow them
> >   to document this new failure mode, which will reduce false
> > positives in CI.
> > 
> >   External URL: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in
> > IGTPW_4241_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@i915_pm_rpm@basic-rte:
> >     - shard-glk:          [PASS][1] -> [FAIL][2]
> >    [1]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
> >    [2]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
> >     - shard-iclb:         [PASS][3] -> [FAIL][4]
> >    [3]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
> >    [4]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
> >     - shard-tglb:         [PASS][5] -> [FAIL][6]
> >    [5]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> >    [6]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
> >     - shard-hsw:          [PASS][7] -> [FAIL][8]
> >    [7]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> >    [8]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> > 5_pm_rpm@basic-rte.html
> > 
> >  
> Hi Lakshmi ,
> Above failures occured for igt-series
> https://patchwork.freedesktop.org/series/73509/
> These failures are not related to this series, do u have any info on
> these failures whehter these are already known issue or something
> recently broken at i915 runtime suspend.
> 
> Hi Jose ,
> Cosidering the CI results of rev3 
> https://patchwork.freedesktop.org/series/73509/#rev3
> this series looks ok to merge, as rev4 has just cosmetic changes to
> remove global var.
> Thanks,
> Anshuman Gupta.
> > #### Warnings ####
> > 
> >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> >     - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
> >    [9]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> >    [10]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> > 15_pm_dc@dc3co-vpb-simulation.html
> > 
> >   * igt@i915_pm_dc@dc6-dpms:
> >     - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
> >    [11]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> >    [12]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> > 5_pm_dc@dc6-dpms.html
> > 
> >   * igt@i915_pm_dc@dc6-psr:
> >     - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14] +1
> > similar issue
> >    [13]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> >    [14]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> > 15_pm_dc@dc6-psr.html
> > 
> >   
> > Known issues
> > ------------
> > 
> >   Here are the changes found in IGTPW_4241_full that come from
> > known issues:
> > 
> > ### IGT changes ###
> > 
> > #### Issues hit ####
> > 
> >   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
> >     - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
> >    [15]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> >    [16]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> > m_ctx_shared@exec-shared-gtt-bsd2.html
> > 
> >   * igt@gem_exec_schedule@implicit-both-bsd:
> >     - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677]) +1
> > similar issue
> >    [17]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
> >    [18]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > m_exec_schedule@implicit-both-bsd.html
> > 
> >   * igt@gem_exec_schedule@implicit-both-bsd2:
> >     - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276] /
> > [i915#677])
> >    [19]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
> >    [20]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> > m_exec_schedule@implicit-both-bsd2.html
> > 
> >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> >     - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276])
> > +21 similar issues
> >    [21]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
> >    [22]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> > m_exec_schedule@preempt-queue-bsd1.html
> > 
> >   * igt@gem_exec_schedule@preemptive-hang-bsd:
> >     - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146])
> > +5 similar issues
> >    [23]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
> >    [24]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > m_exec_schedule@preemptive-hang-bsd.html
> > 
> >   * igt@gem_exec_whisper@basic-fds-forked:
> >     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26]
> > ([i915#1318])
> >    [25]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
> >    [26]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> > m_exec_whisper@basic-fds-forked.html
> > 
> >   * igt@gem_partial_pwrite_pread@write:
> >     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28]
> > ([fdo#110789] / [i915#478])
> >    [27]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> >    [28]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > _partial_pwrite_pread@write.html
> > 
> >   * igt@gem_workarounds@suspend-resume-fd:
> >     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30]
> > ([i915#180]) +3 similar issues
> >    [29]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
> >    [30]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> > _workarounds@suspend-resume-fd.html
> > 
> >   * igt@i915_suspend@debugfs-reader:
> >     - shard-apl:          [PASS][31] -> [DMESG-WARN][32]
> > ([i915#180])
> >    [31]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
> >    [32]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> > 5_suspend@debugfs-reader.html
> > 
> >   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
> >     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
> >    [33]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> >    [34]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> > _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > 
> >   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> >     - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
> >    [35]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> >    [36]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> > s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > 
> >   * igt@kms_psr@psr2_primary_page_flip:
> >     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
> > +1 similar issue
> >    [37]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> >    [38]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> > s_psr@psr2_primary_page_flip.html
> > 
> >   * igt@kms_setmode@basic:
> >     - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
> >    [39]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
> >    [40]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
> >     - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
> >    [41]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
> >    [42]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> > _setmode@basic.html
> > 
> >   * igt@perf_pmu@init-busy-vcs1:
> >     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080])
> > +13 similar issues
> >    [43]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
> >    [44]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> > rf_pmu@init-busy-vcs1.html
> > 
> >   
> > #### Possible fixes ####
> > 
> >   * igt@gem_ctx_isolation@vcs1-dirty-create:
> >     - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46]
> > +7 similar issues
> >    [45]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
> >    [46]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > m_ctx_isolation@vcs1-dirty-create.html
> > 
> >   * igt@gem_exec_schedule@implicit-read-write-bsd1:
> >     - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677]) ->
> > [PASS][48]
> >    [47]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> >    [48]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > m_exec_schedule@implicit-read-write-bsd1.html
> > 
> >   * igt@gem_exec_schedule@preempt-contexts-bsd2:
> >     - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50]
> > +17 similar issues
> >    [49]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> >    [50]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > m_exec_schedule@preempt-contexts-bsd2.html
> > 
> >   * igt@gem_exec_schedule@reorder-wide-bsd:
> >     - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52]
> > +2 similar issues
> >    [51]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> >    [52]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> > m_exec_schedule@reorder-wide-bsd.html
> > 
> >   * igt@gem_ppgtt@flink-and-close-vma-leak:
> >     - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
> >    [53]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> >    [54]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> > _ppgtt@flink-and-close-vma-leak.html
> > 
> >   * igt@gem_userptr_blits@sync-unmap:
> >     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) ->
> > [PASS][56]
> >    [55]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
> >    [56]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > _userptr_blits@sync-unmap.html
> > 
> >   * igt@gem_workarounds@suspend-resume-context:
> >     - shard-apl:          [DMESG-WARN][57] ([i915#180]) ->
> > [PASS][58] +3 similar issues
> >    [57]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> >    [58]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> > _workarounds@suspend-resume-context.html
> > 
> >   * igt@i915_pm_dc@dc5-dpms:
> >     - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
> >    [59]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
> >    [60]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
> >     - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
> >    [61]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
> >    [62]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> > 5_pm_dc@dc5-dpms.html
> > 
> >   * igt@i915_pm_rpm@gem-execbuf-stress:
> >     - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64]
> > +1 similar issue
> >    [63]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
> >    [64]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
> >     - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
> >    [65]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> >    [66]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> >     - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
> >    [67]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
> >    [68]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
> >     - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
> >    [69]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
> >    [70]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> > 15_pm_rpm@gem-execbuf-stress.html
> > 
> >   * igt@i915_pm_rps@reset:
> >     - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
> >    [71]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
> >    [72]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> > 15_pm_rps@reset.html
> > 
> >   * igt@i915_selftest@live@hangcheck:
> >     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) ->
> > [PASS][74]
> >    [73]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
> >    [74]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> > 15_selftest@live@hangcheck.html
> > 
> >   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> >     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) ->
> > [PASS][76] +5 similar issues
> >    [75]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> >    [76]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> > _cursor_crc@pipe-a-cursor-suspend.html
> > 
> >   * igt@kms_flip@flip-vs-suspend:
> >     - shard-snb:          [DMESG-WARN][77] ([i915#42]) ->
> > [PASS][78]
> >    [77]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
> >    [78]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> > _flip@flip-vs-suspend.html
> > 
> >   * igt@kms
> > _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
> >     - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80] +3
> > similar issues
> >    [79]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> >    [80]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> > s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > 
> >   * igt@kms_psr@psr2_sprite_blt:
> >     - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82]
> > +1 similar issue
> >    [81]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
> >    [82]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> > s_psr@psr2_sprite_blt.html
> > 
> >   * igt@kms_universal_plane@universal-plane-pipe-c-functional:
> >     - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
> >    [83]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> >    [84]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> >     - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
> >    [85]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> >    [86]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> >     - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
> >    [87]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> >    [88]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> > _universal_plane@universal-plane-pipe-c-functional.html
> > 
> >   * igt@perf@gen12-mi-rpc:
> >     - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
> >    [89]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
> >    [90]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> > rf@gen12-mi-rpc.html
> > 
> >   * {igt@perf@stress-open-close}:
> >     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) ->
> > [PASS][92]
> >    [91]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
> >    [92]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> > f@stress-open-close.html
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@kms_content_protection@srm:
> >     - shard-apl:          [TIMEOUT][93] ([i915#1319]) -> [FAIL][94]
> > ([fdo#110321])
> >    [93]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
> >    [94]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> > _content_protection@srm.html
> > 
> >   
> >   {name}: This element is suppressed. This means it is ignored when
> > computing
> >           the status of the difference (SUCCESS, WARNING, or
> > FAILURE).
> > 
> >   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
> >   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
> >   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> >   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
> >   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> >   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
> >   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
> >   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
> >   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
> >   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
> >   [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
> >   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
> >   [i915#1318]: https://gitlab.freedesktop.org/drm/intel/issues/1318
> >   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
> >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> >   [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
> >   [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
> >   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
> >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> >   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
> >   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
> >   [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
> >   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
> >   [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
> >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> > 
> > 
> > Participating hosts (10 -> 8)
> > ------------------------------
> > 
> >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > 
> > 
> > Build changes
> > -------------
> > 
> >   * CI: CI-20190529 -> None
> >   * IGT: IGT_5480 -> IGTPW_4241
> >   * Piglit: piglit_4509 -> None
> > 
> >   CI-20190529: 20190529
> >   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @
> > git://anongit.freedesktop.org/gfx-ci/linux
> >   IGTPW_4241: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> >   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @
> > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > git://anongit.freedesktop.org/piglit
> > 
> > == Logs ==
> > 
> > For more details see: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-02 20:29       ` Souza, Jose
@ 2020-03-02 20:29         ` Souza, Jose
  2020-03-03  3:32           ` Anshuman Gupta
  0 siblings, 1 reply; 13+ messages in thread
From: Souza, Jose @ 2020-03-02 20:29 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana, Gupta, Anshuman

This is for Anshuman.


On Mon, 2020-03-02 at 12:30 -0800, José Roberto de Souza wrote:
> Can you take a look at those? From new rev4 run 
> https://patchwork.freedesktop.org/series/73509/#rev4
> 
> * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1
> similar issue
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
> 
> 
> On Mon, 2020-03-02 at 12:16 +0000, Vudum, Lakshminarayana wrote:
> > Anshuman,
> > I have addressed the issue and re-reported the results.
> > We have a bug already for that issue, it's 
> > https://gitlab.freedesktop.org/drm/intel/issues/579
> > 
> > Thanks,
> > Lakshmi.
> > 
> > -----Original Message-----
> > From: Gupta, Anshuman <anshuman.gupta@intel.com> 
> > Sent: Monday, March 2, 2020 10:41 AM
> > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <
> > lakshminarayana.vudum@intel.com>
> > Cc: Souza, Jose <jose.souza@intel.com>
> > Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
> > 
> > On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> > > == Series Details ==
> > > 
> > > Series: DC states IGT misc (rev4)
> > > URL   : https://patchwork.freedesktop.org/series/73509/
> > > State : failure
> > > 
> > > == Summary ==
> > > 
> > > CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full 
> > > ====================================================
> > > 
> > > Summary
> > > -------
> > > 
> > >   **FAILURE**
> > > 
> > >   Serious unknown changes coming with IGTPW_4241_full absolutely
> > > need to be
> > >   verified manually.
> > >   
> > >   If you think the reported changes have nothing to do with the
> > > changes
> > >   introduced in IGTPW_4241_full, please notify your bug team to
> > > allow them
> > >   to document this new failure mode, which will reduce false
> > > positives in CI.
> > > 
> > >   External URL: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > 
> > > Possible new issues
> > > -------------------
> > > 
> > >   Here are the unknown changes that may have been introduced in
> > > IGTPW_4241_full:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Possible regressions ####
> > > 
> > >   * igt@i915_pm_rpm@basic-rte:
> > >     - shard-glk:          [PASS][1] -> [FAIL][2]
> > >    [1]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
> > >    [2]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
> > >     - shard-iclb:         [PASS][3] -> [FAIL][4]
> > >    [3]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
> > >    [4]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
> > >     - shard-tglb:         [PASS][5] -> [FAIL][6]
> > >    [5]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> > >    [6]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
> > >     - shard-hsw:          [PASS][7] -> [FAIL][8]
> > >    [7]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> > >    [8]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> > > 5_pm_rpm@basic-rte.html
> > > 
> > >  
> > Hi Lakshmi ,
> > Above failures occured for igt-series
> > https://patchwork.freedesktop.org/series/73509/
> > These failures are not related to this series, do u have any info
> > on
> > these failures whehter these are already known issue or something
> > recently broken at i915 runtime suspend.
> > 
> > Hi Jose ,
> > Cosidering the CI results of rev3 
> > https://patchwork.freedesktop.org/series/73509/#rev3
> > this series looks ok to merge, as rev4 has just cosmetic changes to
> > remove global var.
> > Thanks,
> > Anshuman Gupta.
> > > #### Warnings ####
> > > 
> > >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> > >     - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
> > >    [9]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > >    [10]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> > > 15_pm_dc@dc3co-vpb-simulation.html
> > > 
> > >   * igt@i915_pm_dc@dc6-dpms:
> > >     - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
> > >    [11]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > >    [12]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> > > 5_pm_dc@dc6-dpms.html
> > > 
> > >   * igt@i915_pm_dc@dc6-psr:
> > >     - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14]
> > > +1
> > > similar issue
> > >    [13]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > >    [14]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> > > 15_pm_dc@dc6-psr.html
> > > 
> > >   
> > > Known issues
> > > ------------
> > > 
> > >   Here are the changes found in IGTPW_4241_full that come from
> > > known issues:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Issues hit ####
> > > 
> > >   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
> > >     - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
> > >    [15]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> > >    [16]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> > > m_ctx_shared@exec-shared-gtt-bsd2.html
> > > 
> > >   * igt@gem_exec_schedule@implicit-both-bsd:
> > >     - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677])
> > > +1
> > > similar issue
> > >    [17]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
> > >    [18]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > m_exec_schedule@implicit-both-bsd.html
> > > 
> > >   * igt@gem_exec_schedule@implicit-both-bsd2:
> > >     - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276]
> > > /
> > > [i915#677])
> > >    [19]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
> > >    [20]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> > > m_exec_schedule@implicit-both-bsd2.html
> > > 
> > >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> > >     - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276])
> > > +21 similar issues
> > >    [21]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > >    [22]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> > > m_exec_schedule@preempt-queue-bsd1.html
> > > 
> > >   * igt@gem_exec_schedule@preemptive-hang-bsd:
> > >     - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146])
> > > +5 similar issues
> > >    [23]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
> > >    [24]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > m_exec_schedule@preemptive-hang-bsd.html
> > > 
> > >   * igt@gem_exec_whisper@basic-fds-forked:
> > >     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26]
> > > ([i915#1318])
> > >    [25]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
> > >    [26]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> > > m_exec_whisper@basic-fds-forked.html
> > > 
> > >   * igt@gem_partial_pwrite_pread@write:
> > >     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28]
> > > ([fdo#110789] / [i915#478])
> > >    [27]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> > >    [28]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > _partial_pwrite_pread@write.html
> > > 
> > >   * igt@gem_workarounds@suspend-resume-fd:
> > >     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30]
> > > ([i915#180]) +3 similar issues
> > >    [29]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
> > >    [30]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> > > _workarounds@suspend-resume-fd.html
> > > 
> > >   * igt@i915_suspend@debugfs-reader:
> > >     - shard-apl:          [PASS][31] -> [DMESG-WARN][32]
> > > ([i915#180])
> > >    [31]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
> > >    [32]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> > > 5_suspend@debugfs-reader.html
> > > 
> > >   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
> > >     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
> > >    [33]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > >    [34]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> > > _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > 
> > >   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> > >     - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
> > >    [35]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > >    [36]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> > > s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > 
> > >   * igt@kms_psr@psr2_primary_page_flip:
> > >     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
> > > +1 similar issue
> > >    [37]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> > >    [38]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> > > s_psr@psr2_primary_page_flip.html
> > > 
> > >   * igt@kms_setmode@basic:
> > >     - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
> > >    [39]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
> > >    [40]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
> > >     - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
> > >    [41]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
> > >    [42]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> > > _setmode@basic.html
> > > 
> > >   * igt@perf_pmu@init-busy-vcs1:
> > >     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080])
> > > +13 similar issues
> > >    [43]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
> > >    [44]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> > > rf_pmu@init-busy-vcs1.html
> > > 
> > >   
> > > #### Possible fixes ####
> > > 
> > >   * igt@gem_ctx_isolation@vcs1-dirty-create:
> > >     - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46]
> > > +7 similar issues
> > >    [45]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
> > >    [46]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > m_ctx_isolation@vcs1-dirty-create.html
> > > 
> > >   * igt@gem_exec_schedule@implicit-read-write-bsd1:
> > >     - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677])
> > > ->
> > > [PASS][48]
> > >    [47]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> > >    [48]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > m_exec_schedule@implicit-read-write-bsd1.html
> > > 
> > >   * igt@gem_exec_schedule@preempt-contexts-bsd2:
> > >     - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50]
> > > +17 similar issues
> > >    [49]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> > >    [50]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > m_exec_schedule@preempt-contexts-bsd2.html
> > > 
> > >   * igt@gem_exec_schedule@reorder-wide-bsd:
> > >     - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52]
> > > +2 similar issues
> > >    [51]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> > >    [52]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> > > m_exec_schedule@reorder-wide-bsd.html
> > > 
> > >   * igt@gem_ppgtt@flink-and-close-vma-leak:
> > >     - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
> > >    [53]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> > >    [54]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> > > _ppgtt@flink-and-close-vma-leak.html
> > > 
> > >   * igt@gem_userptr_blits@sync-unmap:
> > >     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) ->
> > > [PASS][56]
> > >    [55]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
> > >    [56]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > _userptr_blits@sync-unmap.html
> > > 
> > >   * igt@gem_workarounds@suspend-resume-context:
> > >     - shard-apl:          [DMESG-WARN][57] ([i915#180]) ->
> > > [PASS][58] +3 similar issues
> > >    [57]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> > >    [58]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> > > _workarounds@suspend-resume-context.html
> > > 
> > >   * igt@i915_pm_dc@dc5-dpms:
> > >     - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
> > >    [59]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
> > >    [60]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
> > >     - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
> > >    [61]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
> > >    [62]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> > > 5_pm_dc@dc5-dpms.html
> > > 
> > >   * igt@i915_pm_rpm@gem-execbuf-stress:
> > >     - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64]
> > > +1 similar issue
> > >    [63]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >    [64]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >     - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
> > >    [65]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >    [66]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >     - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
> > >    [67]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >    [68]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >     - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
> > >    [69]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
> > >    [70]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> > > 15_pm_rpm@gem-execbuf-stress.html
> > > 
> > >   * igt@i915_pm_rps@reset:
> > >     - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
> > >    [71]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
> > >    [72]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> > > 15_pm_rps@reset.html
> > > 
> > >   * igt@i915_selftest@live@hangcheck:
> > >     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) ->
> > > [PASS][74]
> > >    [73]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
> > >    [74]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> > > 15_selftest@live@hangcheck.html
> > > 
> > >   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > >     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) ->
> > > [PASS][76] +5 similar issues
> > >    [75]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> > >    [76]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> > > _cursor_crc@pipe-a-cursor-suspend.html
> > > 
> > >   * igt@kms_flip@flip-vs-suspend:
> > >     - shard-snb:          [DMESG-WARN][77] ([i915#42]) ->
> > > [PASS][78]
> > >    [77]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
> > >    [78]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> > > _flip@flip-vs-suspend.html
> > > 
> > >   * igt@kms
> > > _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
> > >     - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80]
> > > +3
> > > similar issues
> > >    [79]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > >    [80]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> > > s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > 
> > >   * igt@kms_psr@psr2_sprite_blt:
> > >     - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82]
> > > +1 similar issue
> > >    [81]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
> > >    [82]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> > > s_psr@psr2_sprite_blt.html
> > > 
> > >   * igt@kms_universal_plane@universal-plane-pipe-c-functional:
> > >     - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
> > >    [83]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > >    [84]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > >     - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
> > >    [85]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > >    [86]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > >     - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
> > >    [87]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > >    [88]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> > > _universal_plane@universal-plane-pipe-c-functional.html
> > > 
> > >   * igt@perf@gen12-mi-rpc:
> > >     - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
> > >    [89]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
> > >    [90]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> > > rf@gen12-mi-rpc.html
> > > 
> > >   * {igt@perf@stress-open-close}:
> > >     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) ->
> > > [PASS][92]
> > >    [91]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
> > >    [92]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> > > f@stress-open-close.html
> > > 
> > >   
> > > #### Warnings ####
> > > 
> > >   * igt@kms_content_protection@srm:
> > >     - shard-apl:          [TIMEOUT][93] ([i915#1319]) ->
> > > [FAIL][94]
> > > ([fdo#110321])
> > >    [93]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
> > >    [94]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> > > _content_protection@srm.html
> > > 
> > >   
> > >   {name}: This element is suppressed. This means it is ignored
> > > when
> > > computing
> > >           the status of the difference (SUCCESS, WARNING, or
> > > FAILURE).
> > > 
> > >   [fdo#103665]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=103665
> > >   [fdo#108569]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=108569
> > >   [fdo#109271]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >   [fdo#109276]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=109276
> > >   [fdo#109441]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=109441
> > >   [fdo#110321]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=110321
> > >   [fdo#110789]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=110789
> > >   [fdo#111870]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=111870
> > >   [fdo#112080]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=112080
> > >   [fdo#112146]: 
> > > https://bugs.freedesktop.org/show_bug.cgi?id=112146
> > >   [i915#1085]: 
> > > https://gitlab.freedesktop.org/drm/intel/issues/1085
> > >   [i915#1316]: 
> > > https://gitlab.freedesktop.org/drm/intel/issues/1316
> > >   [i915#1318]: 
> > > https://gitlab.freedesktop.org/drm/intel/issues/1318
> > >   [i915#1319]: 
> > > https://gitlab.freedesktop.org/drm/intel/issues/1319
> > >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> > >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> > >   [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
> > >   [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
> > >   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
> > >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> > >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> > >   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
> > >   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
> > >   [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
> > >   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
> > >   [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
> > >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> > > 
> > > 
> > > Participating hosts (10 -> 8)
> > > ------------------------------
> > > 
> > >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > > 
> > > 
> > > Build changes
> > > -------------
> > > 
> > >   * CI: CI-20190529 -> None
> > >   * IGT: IGT_5480 -> IGTPW_4241
> > >   * Piglit: piglit_4509 -> None
> > > 
> > >   CI-20190529: 20190529
> > >   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @
> > > git://anongit.freedesktop.org/gfx-ci/linux
> > >   IGTPW_4241: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > >   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @
> > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> > >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > > git://anongit.freedesktop.org/piglit
> > > 
> > > == Logs ==
> > > 
> > > For more details see: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-02 20:29         ` Souza, Jose
@ 2020-03-03  3:32           ` Anshuman Gupta
  2020-03-04  1:32             ` Souza, Jose
  0 siblings, 1 reply; 13+ messages in thread
From: Anshuman Gupta @ 2020-03-03  3:32 UTC (permalink / raw)
  To: Souza, Jose; +Cc: igt-dev, Vudum, Lakshminarayana

On 2020-03-03 at 01:59:48 +0530, Souza, Jose wrote:
> This is for Anshuman.
> 
> 
> On Mon, 2020-03-02 at 12:30 -0800, José Roberto de Souza wrote:
> > Can you take a look at those? From new rev4 run 
> > https://patchwork.freedesktop.org/series/73509/#rev4
> > 
> > * igt@i915_pm_dc@dc3co-vpb-simulation:
> >     - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
> >    [1]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> >    [2]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
Valid skip as dc3co only supported on TGL.
> > 
> >   * igt@i915_pm_dc@dc6-dpms:
> >     - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
> >    [3]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> >    [4]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
Looks like that is Pcode firmware issue, as on IGT_4241 dc5-dpms is passing on KBL
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html
> > 
> >   * igt@i915_pm_dc@dc6-psr:
> >     - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1
> > similar issue
> >    [5]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> >    [6]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
Similarly dc5-psr is passing on tgl IGTPW_4241
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@i915_pm_dc@dc5-psr.html
Bothe of these DC6 is faliures driver has Enabled DC6, so this external issue from PCODE.
Thanks,
Anshuman Gupta.
> > 
> > 
> > On Mon, 2020-03-02 at 12:16 +0000, Vudum, Lakshminarayana wrote:
> > > Anshuman,
> > > I have addressed the issue and re-reported the results.
> > > We have a bug already for that issue, it's 
> > > https://gitlab.freedesktop.org/drm/intel/issues/579
> > > 
> > > Thanks,
> > > Lakshmi.
> > > 
> > > -----Original Message-----
> > > From: Gupta, Anshuman <anshuman.gupta@intel.com> 
> > > Sent: Monday, March 2, 2020 10:41 AM
> > > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <
> > > lakshminarayana.vudum@intel.com>
> > > Cc: Souza, Jose <jose.souza@intel.com>
> > > Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
> > > 
> > > On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> > > > == Series Details ==
> > > > 
> > > > Series: DC states IGT misc (rev4)
> > > > URL   : https://patchwork.freedesktop.org/series/73509/
> > > > State : failure
> > > > 
> > > > == Summary ==
> > > > 
> > > > CI Bug Log - changes from CI_DRM_8036_full -> IGTPW_4241_full 
> > > > ====================================================
> > > > 
> > > > Summary
> > > > -------
> > > > 
> > > >   **FAILURE**
> > > > 
> > > >   Serious unknown changes coming with IGTPW_4241_full absolutely
> > > > need to be
> > > >   verified manually.
> > > >   
> > > >   If you think the reported changes have nothing to do with the
> > > > changes
> > > >   introduced in IGTPW_4241_full, please notify your bug team to
> > > > allow them
> > > >   to document this new failure mode, which will reduce false
> > > > positives in CI.
> > > > 
> > > >   External URL: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > > 
> > > > Possible new issues
> > > > -------------------
> > > > 
> > > >   Here are the unknown changes that may have been introduced in
> > > > IGTPW_4241_full:
> > > > 
> > > > ### IGT changes ###
> > > > 
> > > > #### Possible regressions ####
> > > > 
> > > >   * igt@i915_pm_rpm@basic-rte:
> > > >     - shard-glk:          [PASS][1] -> [FAIL][2]
> > > >    [1]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
> > > >    [2]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
> > > >     - shard-iclb:         [PASS][3] -> [FAIL][4]
> > > >    [3]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
> > > >    [4]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
> > > >     - shard-tglb:         [PASS][5] -> [FAIL][6]
> > > >    [5]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> > > >    [6]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
> > > >     - shard-hsw:          [PASS][7] -> [FAIL][8]
> > > >    [7]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> > > >    [8]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> > > > 5_pm_rpm@basic-rte.html
> > > > 
> > > >  
> > > Hi Lakshmi ,
> > > Above failures occured for igt-series
> > > https://patchwork.freedesktop.org/series/73509/
> > > These failures are not related to this series, do u have any info
> > > on
> > > these failures whehter these are already known issue or something
> > > recently broken at i915 runtime suspend.
> > > 
> > > Hi Jose ,
> > > Cosidering the CI results of rev3 
> > > https://patchwork.freedesktop.org/series/73509/#rev3
> > > this series looks ok to merge, as rev4 has just cosmetic changes to
> > > remove global var.
> > > Thanks,
> > > Anshuman Gupta.
> > > > #### Warnings ####
> > > > 
> > > >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> > > >     - shard-iclb:         [SKIP][9] ([i915#588]) -> [SKIP][10]
> > > >    [9]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > > >    [10]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> > > > 15_pm_dc@dc3co-vpb-simulation.html
> > > > 
> > > >   * igt@i915_pm_dc@dc6-dpms:
> > > >     - shard-kbl:          [SKIP][11] ([fdo#109271]) -> [FAIL][12]
> > > >    [11]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > > >    [12]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> > > > 5_pm_dc@dc6-dpms.html
> > > > 
> > > >   * igt@i915_pm_dc@dc6-psr:
> > > >     - shard-tglb:         [FAIL][13] ([i915#454]) -> [FAIL][14]
> > > > +1
> > > > similar issue
> > > >    [13]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > > >    [14]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> > > > 15_pm_dc@dc6-psr.html
> > > > 
> > > >   
> > > > Known issues
> > > > ------------
> > > > 
> > > >   Here are the changes found in IGTPW_4241_full that come from
> > > > known issues:
> > > > 
> > > > ### IGT changes ###
> > > > 
> > > > #### Issues hit ####
> > > > 
> > > >   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
> > > >     - shard-tglb:         [PASS][15] -> [FAIL][16] ([i915#616])
> > > >    [15]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> > > >    [16]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> > > > m_ctx_shared@exec-shared-gtt-bsd2.html
> > > > 
> > > >   * igt@gem_exec_schedule@implicit-both-bsd:
> > > >     - shard-iclb:         [PASS][17] -> [SKIP][18] ([i915#677])
> > > > +1
> > > > similar issue
> > > >    [17]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
> > > >    [18]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > m_exec_schedule@implicit-both-bsd.html
> > > > 
> > > >   * igt@gem_exec_schedule@implicit-both-bsd2:
> > > >     - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109276]
> > > > /
> > > > [i915#677])
> > > >    [19]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
> > > >    [20]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> > > > m_exec_schedule@implicit-both-bsd2.html
> > > > 
> > > >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> > > >     - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109276])
> > > > +21 similar issues
> > > >    [21]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > > >    [22]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> > > > m_exec_schedule@preempt-queue-bsd1.html
> > > > 
> > > >   * igt@gem_exec_schedule@preemptive-hang-bsd:
> > > >     - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#112146])
> > > > +5 similar issues
> > > >    [23]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
> > > >    [24]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > m_exec_schedule@preemptive-hang-bsd.html
> > > > 
> > > >   * igt@gem_exec_whisper@basic-fds-forked:
> > > >     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26]
> > > > ([i915#1318])
> > > >    [25]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
> > > >    [26]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> > > > m_exec_whisper@basic-fds-forked.html
> > > > 
> > > >   * igt@gem_partial_pwrite_pread@write:
> > > >     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28]
> > > > ([fdo#110789] / [i915#478])
> > > >    [27]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> > > >    [28]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > _partial_pwrite_pread@write.html
> > > > 
> > > >   * igt@gem_workarounds@suspend-resume-fd:
> > > >     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30]
> > > > ([i915#180]) +3 similar issues
> > > >    [29]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
> > > >    [30]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> > > > _workarounds@suspend-resume-fd.html
> > > > 
> > > >   * igt@i915_suspend@debugfs-reader:
> > > >     - shard-apl:          [PASS][31] -> [DMESG-WARN][32]
> > > > ([i915#180])
> > > >    [31]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
> > > >    [32]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> > > > 5_suspend@debugfs-reader.html
> > > > 
> > > >   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
> > > >     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#54])
> > > >    [33]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > >    [34]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> > > > _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > > 
> > > >   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> > > >     - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#668])
> > > >    [35]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > >    [36]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> > > > s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > > 
> > > >   * igt@kms_psr@psr2_primary_page_flip:
> > > >     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
> > > > +1 similar issue
> > > >    [37]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> > > >    [38]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> > > > s_psr@psr2_primary_page_flip.html
> > > > 
> > > >   * igt@kms_setmode@basic:
> > > >     - shard-apl:          [PASS][39] -> [FAIL][40] ([i915#31])
> > > >    [39]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
> > > >    [40]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
> > > >     - shard-hsw:          [PASS][41] -> [FAIL][42] ([i915#31])
> > > >    [41]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
> > > >    [42]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> > > > _setmode@basic.html
> > > > 
> > > >   * igt@perf_pmu@init-busy-vcs1:
> > > >     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080])
> > > > +13 similar issues
> > > >    [43]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
> > > >    [44]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> > > > rf_pmu@init-busy-vcs1.html
> > > > 
> > > >   
> > > > #### Possible fixes ####
> > > > 
> > > >   * igt@gem_ctx_isolation@vcs1-dirty-create:
> > > >     - shard-iclb:         [SKIP][45] ([fdo#112080]) -> [PASS][46]
> > > > +7 similar issues
> > > >    [45]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
> > > >    [46]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > m_ctx_isolation@vcs1-dirty-create.html
> > > > 
> > > >   * igt@gem_exec_schedule@implicit-read-write-bsd1:
> > > >     - shard-iclb:         [SKIP][47] ([fdo#109276] / [i915#677])
> > > > ->
> > > > [PASS][48]
> > > >    [47]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> > > >    [48]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > m_exec_schedule@implicit-read-write-bsd1.html
> > > > 
> > > >   * igt@gem_exec_schedule@preempt-contexts-bsd2:
> > > >     - shard-iclb:         [SKIP][49] ([fdo#109276]) -> [PASS][50]
> > > > +17 similar issues
> > > >    [49]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> > > >    [50]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > m_exec_schedule@preempt-contexts-bsd2.html
> > > > 
> > > >   * igt@gem_exec_schedule@reorder-wide-bsd:
> > > >     - shard-iclb:         [SKIP][51] ([fdo#112146]) -> [PASS][52]
> > > > +2 similar issues
> > > >    [51]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> > > >    [52]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> > > > m_exec_schedule@reorder-wide-bsd.html
> > > > 
> > > >   * igt@gem_ppgtt@flink-and-close-vma-leak:
> > > >     - shard-glk:          [FAIL][53] ([i915#644]) -> [PASS][54]
> > > >    [53]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> > > >    [54]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> > > > _ppgtt@flink-and-close-vma-leak.html
> > > > 
> > > >   * igt@gem_userptr_blits@sync-unmap:
> > > >     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) ->
> > > > [PASS][56]
> > > >    [55]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
> > > >    [56]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > _userptr_blits@sync-unmap.html
> > > > 
> > > >   * igt@gem_workarounds@suspend-resume-context:
> > > >     - shard-apl:          [DMESG-WARN][57] ([i915#180]) ->
> > > > [PASS][58] +3 similar issues
> > > >    [57]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> > > >    [58]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> > > > _workarounds@suspend-resume-context.html
> > > > 
> > > >   * igt@i915_pm_dc@dc5-dpms:
> > > >     - shard-apl:          [SKIP][59] ([fdo#109271]) -> [PASS][60]
> > > >    [59]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
> > > >    [60]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
> > > >     - shard-kbl:          [SKIP][61] ([fdo#109271]) -> [PASS][62]
> > > >    [61]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
> > > >    [62]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> > > > 5_pm_dc@dc5-dpms.html
> > > > 
> > > >   * igt@i915_pm_rpm@gem-execbuf-stress:
> > > >     - shard-glk:          [SKIP][63] ([fdo#109271]) -> [PASS][64]
> > > > +1 similar issue
> > > >    [63]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >    [64]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >     - shard-tglb:         [SKIP][65] ([i915#1316]) -> [PASS][66]
> > > >    [65]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >    [66]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >     - shard-hsw:          [SKIP][67] ([fdo#109271]) -> [PASS][68]
> > > >    [67]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >    [68]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >     - shard-iclb:         [SKIP][69] ([i915#1316]) -> [PASS][70]
> > > >    [69]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > >    [70]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> > > > 15_pm_rpm@gem-execbuf-stress.html
> > > > 
> > > >   * igt@i915_pm_rps@reset:
> > > >     - shard-tglb:         [FAIL][71] ([i915#413]) -> [PASS][72]
> > > >    [71]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
> > > >    [72]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> > > > 15_pm_rps@reset.html
> > > > 
> > > >   * igt@i915_selftest@live@hangcheck:
> > > >     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) ->
> > > > [PASS][74]
> > > >    [73]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
> > > >    [74]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> > > > 15_selftest@live@hangcheck.html
> > > > 
> > > >   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > > >     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) ->
> > > > [PASS][76] +5 similar issues
> > > >    [75]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> > > >    [76]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> > > > _cursor_crc@pipe-a-cursor-suspend.html
> > > > 
> > > >   * igt@kms_flip@flip-vs-suspend:
> > > >     - shard-snb:          [DMESG-WARN][77] ([i915#42]) ->
> > > > [PASS][78]
> > > >    [77]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
> > > >    [78]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> > > > _flip@flip-vs-suspend.html
> > > > 
> > > >   * igt@kms
> > > > _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
> > > >     - shard-tglb:         [SKIP][79] ([i915#668]) -> [PASS][80]
> > > > +3
> > > > similar issues
> > > >    [79]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > >    [80]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> > > > s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > > 
> > > >   * igt@kms_psr@psr2_sprite_blt:
> > > >     - shard-iclb:         [SKIP][81] ([fdo#109441]) -> [PASS][82]
> > > > +1 similar issue
> > > >    [81]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
> > > >    [82]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> > > > s_psr@psr2_sprite_blt.html
> > > > 
> > > >   * igt@kms_universal_plane@universal-plane-pipe-c-functional:
> > > >     - shard-glk:          [FAIL][83] ([i915#331]) -> [PASS][84]
> > > >    [83]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > >    [84]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > >     - shard-kbl:          [FAIL][85] ([i915#331]) -> [PASS][86]
> > > >    [85]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > >    [86]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > >     - shard-apl:          [FAIL][87] ([i915#331]) -> [PASS][88]
> > > >    [87]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > >    [88]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> > > > _universal_plane@universal-plane-pipe-c-functional.html
> > > > 
> > > >   * igt@perf@gen12-mi-rpc:
> > > >     - shard-tglb:         [FAIL][89] ([i915#1085]) -> [PASS][90]
> > > >    [89]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
> > > >    [90]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> > > > rf@gen12-mi-rpc.html
> > > > 
> > > >   * {igt@perf@stress-open-close}:
> > > >     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) ->
> > > > [PASS][92]
> > > >    [91]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
> > > >    [92]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> > > > f@stress-open-close.html
> > > > 
> > > >   
> > > > #### Warnings ####
> > > > 
> > > >   * igt@kms_content_protection@srm:
> > > >     - shard-apl:          [TIMEOUT][93] ([i915#1319]) ->
> > > > [FAIL][94]
> > > > ([fdo#110321])
> > > >    [93]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
> > > >    [94]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> > > > _content_protection@srm.html
> > > > 
> > > >   
> > > >   {name}: This element is suppressed. This means it is ignored
> > > > when
> > > > computing
> > > >           the status of the difference (SUCCESS, WARNING, or
> > > > FAILURE).
> > > > 
> > > >   [fdo#103665]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=103665
> > > >   [fdo#108569]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=108569
> > > >   [fdo#109271]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > >   [fdo#109276]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=109276
> > > >   [fdo#109441]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=109441
> > > >   [fdo#110321]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=110321
> > > >   [fdo#110789]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=110789
> > > >   [fdo#111870]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=111870
> > > >   [fdo#112080]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=112080
> > > >   [fdo#112146]: 
> > > > https://bugs.freedesktop.org/show_bug.cgi?id=112146
> > > >   [i915#1085]: 
> > > > https://gitlab.freedesktop.org/drm/intel/issues/1085
> > > >   [i915#1316]: 
> > > > https://gitlab.freedesktop.org/drm/intel/issues/1316
> > > >   [i915#1318]: 
> > > > https://gitlab.freedesktop.org/drm/intel/issues/1318
> > > >   [i915#1319]: 
> > > > https://gitlab.freedesktop.org/drm/intel/issues/1319
> > > >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> > > >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> > > >   [i915#331]: https://gitlab.freedesktop.org/drm/intel/issues/331
> > > >   [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
> > > >   [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
> > > >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> > > >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> > > >   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
> > > >   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
> > > >   [i915#616]: https://gitlab.freedesktop.org/drm/intel/issues/616
> > > >   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
> > > >   [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
> > > >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> > > > 
> > > > 
> > > > Participating hosts (10 -> 8)
> > > > ------------------------------
> > > > 
> > > >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > > > 
> > > > 
> > > > Build changes
> > > > -------------
> > > > 
> > > >   * CI: CI-20190529 -> None
> > > >   * IGT: IGT_5480 -> IGTPW_4241
> > > >   * Piglit: piglit_4509 -> None
> > > > 
> > > >   CI-20190529: 20190529
> > > >   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @
> > > > git://anongit.freedesktop.org/gfx-ci/linux
> > > >   IGTPW_4241: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > >   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @
> > > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> > > >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > > > git://anongit.freedesktop.org/piglit
> > > > 
> > > > == Logs ==
> > > > 
> > > > For more details see: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-03  3:32           ` Anshuman Gupta
@ 2020-03-04  1:32             ` Souza, Jose
  2020-03-04  5:02               ` Anshuman Gupta
  0 siblings, 1 reply; 13+ messages in thread
From: Souza, Jose @ 2020-03-04  1:32 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev, Vudum, Lakshminarayana

Pushed.


On Tue, 2020-03-03 at 09:02 +0530, Anshuman Gupta wrote:
> On 2020-03-03 at 01:59:48 +0530, Souza, Jose wrote:
> > This is for Anshuman.
> > 
> > 
> > On Mon, 2020-03-02 at 12:30 -0800, José Roberto de Souza wrote:
> > > Can you take a look at those? From new rev4 run 
> > > https://patchwork.freedesktop.org/series/73509/#rev4
> > > 
> > > * igt@i915_pm_dc@dc3co-vpb-simulation:
> > >     - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
> > >    [1]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > >    [2]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
> Valid skip as dc3co only supported on TGL.
> > >   * igt@i915_pm_dc@dc6-dpms:
> > >     - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
> > >    [3]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > >    [4]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
> Looks like that is Pcode firmware issue, as on IGT_4241 dc5-dpms is
> passing on KBL
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html
> > >   * igt@i915_pm_dc@dc6-psr:
> > >     - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1
> > > similar issue
> > >    [5]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > >    [6]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
> Similarly dc5-psr is passing on tgl IGTPW_4241
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@i915_pm_dc@dc5-psr.html
> Bothe of these DC6 is faliures driver has Enabled DC6, so this
> external issue from PCODE.
> Thanks,
> Anshuman Gupta.
> > > 
> > > On Mon, 2020-03-02 at 12:16 +0000, Vudum, Lakshminarayana wrote:
> > > > Anshuman,
> > > > I have addressed the issue and re-reported the results.
> > > > We have a bug already for that issue, it's 
> > > > https://gitlab.freedesktop.org/drm/intel/issues/579
> > > > 
> > > > Thanks,
> > > > Lakshmi.
> > > > 
> > > > -----Original Message-----
> > > > From: Gupta, Anshuman <anshuman.gupta@intel.com> 
> > > > Sent: Monday, March 2, 2020 10:41 AM
> > > > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <
> > > > lakshminarayana.vudum@intel.com>
> > > > Cc: Souza, Jose <jose.souza@intel.com>
> > > > Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
> > > > 
> > > > On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> > > > > == Series Details ==
> > > > > 
> > > > > Series: DC states IGT misc (rev4)
> > > > > URL   : https://patchwork.freedesktop.org/series/73509/
> > > > > State : failure
> > > > > 
> > > > > == Summary ==
> > > > > 
> > > > > CI Bug Log - changes from CI_DRM_8036_full ->
> > > > > IGTPW_4241_full 
> > > > > ====================================================
> > > > > 
> > > > > Summary
> > > > > -------
> > > > > 
> > > > >   **FAILURE**
> > > > > 
> > > > >   Serious unknown changes coming with IGTPW_4241_full
> > > > > absolutely
> > > > > need to be
> > > > >   verified manually.
> > > > >   
> > > > >   If you think the reported changes have nothing to do with
> > > > > the
> > > > > changes
> > > > >   introduced in IGTPW_4241_full, please notify your bug team
> > > > > to
> > > > > allow them
> > > > >   to document this new failure mode, which will reduce false
> > > > > positives in CI.
> > > > > 
> > > > >   External URL: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > > > 
> > > > > Possible new issues
> > > > > -------------------
> > > > > 
> > > > >   Here are the unknown changes that may have been introduced
> > > > > in
> > > > > IGTPW_4241_full:
> > > > > 
> > > > > ### IGT changes ###
> > > > > 
> > > > > #### Possible regressions ####
> > > > > 
> > > > >   * igt@i915_pm_rpm@basic-rte:
> > > > >     - shard-glk:          [PASS][1] -> [FAIL][2]
> > > > >    [1]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
> > > > >    [2]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
> > > > >     - shard-iclb:         [PASS][3] -> [FAIL][4]
> > > > >    [3]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
> > > > >    [4]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
> > > > >     - shard-tglb:         [PASS][5] -> [FAIL][6]
> > > > >    [5]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> > > > >    [6]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
> > > > >     - shard-hsw:          [PASS][7] -> [FAIL][8]
> > > > >    [7]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> > > > >    [8]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> > > > > 5_pm_rpm@basic-rte.html
> > > > > 
> > > > >  
> > > > Hi Lakshmi ,
> > > > Above failures occured for igt-series
> > > > https://patchwork.freedesktop.org/series/73509/
> > > > These failures are not related to this series, do u have any
> > > > info
> > > > on
> > > > these failures whehter these are already known issue or
> > > > something
> > > > recently broken at i915 runtime suspend.
> > > > 
> > > > Hi Jose ,
> > > > Cosidering the CI results of rev3 
> > > > https://patchwork.freedesktop.org/series/73509/#rev3
> > > > this series looks ok to merge, as rev4 has just cosmetic
> > > > changes to
> > > > remove global var.
> > > > Thanks,
> > > > Anshuman Gupta.
> > > > > #### Warnings ####
> > > > > 
> > > > >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> > > > >     - shard-iclb:         [SKIP][9] ([i915#588]) ->
> > > > > [SKIP][10]
> > > > >    [9]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > > > >    [10]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> > > > > 15_pm_dc@dc3co-vpb-simulation.html
> > > > > 
> > > > >   * igt@i915_pm_dc@dc6-dpms:
> > > > >     - shard-kbl:          [SKIP][11] ([fdo#109271]) ->
> > > > > [FAIL][12]
> > > > >    [11]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > > > >    [12]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> > > > > 5_pm_dc@dc6-dpms.html
> > > > > 
> > > > >   * igt@i915_pm_dc@dc6-psr:
> > > > >     - shard-tglb:         [FAIL][13] ([i915#454]) ->
> > > > > [FAIL][14]
> > > > > +1
> > > > > similar issue
> > > > >    [13]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > > > >    [14]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> > > > > 15_pm_dc@dc6-psr.html
> > > > > 
> > > > >   
> > > > > Known issues
> > > > > ------------
> > > > > 
> > > > >   Here are the changes found in IGTPW_4241_full that come
> > > > > from
> > > > > known issues:
> > > > > 
> > > > > ### IGT changes ###
> > > > > 
> > > > > #### Issues hit ####
> > > > > 
> > > > >   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
> > > > >     - shard-tglb:         [PASS][15] -> [FAIL][16]
> > > > > ([i915#616])
> > > > >    [15]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> > > > >    [16]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> > > > > m_ctx_shared@exec-shared-gtt-bsd2.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@implicit-both-bsd:
> > > > >     - shard-iclb:         [PASS][17] -> [SKIP][18]
> > > > > ([i915#677])
> > > > > +1
> > > > > similar issue
> > > > >    [17]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
> > > > >    [18]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > m_exec_schedule@implicit-both-bsd.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@implicit-both-bsd2:
> > > > >     - shard-iclb:         [PASS][19] -> [SKIP][20]
> > > > > ([fdo#109276]
> > > > > /
> > > > > [i915#677])
> > > > >    [19]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
> > > > >    [20]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> > > > > m_exec_schedule@implicit-both-bsd2.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> > > > >     - shard-iclb:         [PASS][21] -> [SKIP][22]
> > > > > ([fdo#109276])
> > > > > +21 similar issues
> > > > >    [21]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > > > >    [22]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> > > > > m_exec_schedule@preempt-queue-bsd1.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@preemptive-hang-bsd:
> > > > >     - shard-iclb:         [PASS][23] -> [SKIP][24]
> > > > > ([fdo#112146])
> > > > > +5 similar issues
> > > > >    [23]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
> > > > >    [24]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > m_exec_schedule@preemptive-hang-bsd.html
> > > > > 
> > > > >   * igt@gem_exec_whisper@basic-fds-forked:
> > > > >     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26]
> > > > > ([i915#1318])
> > > > >    [25]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
> > > > >    [26]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> > > > > m_exec_whisper@basic-fds-forked.html
> > > > > 
> > > > >   * igt@gem_partial_pwrite_pread@write:
> > > > >     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28]
> > > > > ([fdo#110789] / [i915#478])
> > > > >    [27]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> > > > >    [28]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > > _partial_pwrite_pread@write.html
> > > > > 
> > > > >   * igt@gem_workarounds@suspend-resume-fd:
> > > > >     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30]
> > > > > ([i915#180]) +3 similar issues
> > > > >    [29]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
> > > > >    [30]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> > > > > _workarounds@suspend-resume-fd.html
> > > > > 
> > > > >   * igt@i915_suspend@debugfs-reader:
> > > > >     - shard-apl:          [PASS][31] -> [DMESG-WARN][32]
> > > > > ([i915#180])
> > > > >    [31]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
> > > > >    [32]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> > > > > 5_suspend@debugfs-reader.html
> > > > > 
> > > > >   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
> > > > >     - shard-apl:          [PASS][33] -> [FAIL][34]
> > > > > ([i915#54])
> > > > >    [33]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > > >    [34]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> > > > > _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > > > 
> > > > >   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> > > > >     - shard-tglb:         [PASS][35] -> [SKIP][36]
> > > > > ([i915#668])
> > > > >    [35]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > > >    [36]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> > > > > s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > > > 
> > > > >   * igt@kms_psr@psr2_primary_page_flip:
> > > > >     - shard-iclb:         [PASS][37] -> [SKIP][38]
> > > > > ([fdo#109441])
> > > > > +1 similar issue
> > > > >    [37]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> > > > >    [38]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> > > > > s_psr@psr2_primary_page_flip.html
> > > > > 
> > > > >   * igt@kms_setmode@basic:
> > > > >     - shard-apl:          [PASS][39] -> [FAIL][40]
> > > > > ([i915#31])
> > > > >    [39]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
> > > > >    [40]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
> > > > >     - shard-hsw:          [PASS][41] -> [FAIL][42]
> > > > > ([i915#31])
> > > > >    [41]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
> > > > >    [42]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> > > > > _setmode@basic.html
> > > > > 
> > > > >   * igt@perf_pmu@init-busy-vcs1:
> > > > >     - shard-iclb:         [PASS][43] -> [SKIP][44]
> > > > > ([fdo#112080])
> > > > > +13 similar issues
> > > > >    [43]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
> > > > >    [44]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> > > > > rf_pmu@init-busy-vcs1.html
> > > > > 
> > > > >   
> > > > > #### Possible fixes ####
> > > > > 
> > > > >   * igt@gem_ctx_isolation@vcs1-dirty-create:
> > > > >     - shard-iclb:         [SKIP][45] ([fdo#112080]) ->
> > > > > [PASS][46]
> > > > > +7 similar issues
> > > > >    [45]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
> > > > >    [46]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > > m_ctx_isolation@vcs1-dirty-create.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@implicit-read-write-bsd1:
> > > > >     - shard-iclb:         [SKIP][47] ([fdo#109276] /
> > > > > [i915#677])
> > > > > ->
> > > > > [PASS][48]
> > > > >    [47]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> > > > >    [48]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > > m_exec_schedule@implicit-read-write-bsd1.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@preempt-contexts-bsd2:
> > > > >     - shard-iclb:         [SKIP][49] ([fdo#109276]) ->
> > > > > [PASS][50]
> > > > > +17 similar issues
> > > > >    [49]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> > > > >    [50]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > m_exec_schedule@preempt-contexts-bsd2.html
> > > > > 
> > > > >   * igt@gem_exec_schedule@reorder-wide-bsd:
> > > > >     - shard-iclb:         [SKIP][51] ([fdo#112146]) ->
> > > > > [PASS][52]
> > > > > +2 similar issues
> > > > >    [51]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> > > > >    [52]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> > > > > m_exec_schedule@reorder-wide-bsd.html
> > > > > 
> > > > >   * igt@gem_ppgtt@flink-and-close-vma-leak:
> > > > >     - shard-glk:          [FAIL][53] ([i915#644]) ->
> > > > > [PASS][54]
> > > > >    [53]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> > > > >    [54]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> > > > > _ppgtt@flink-and-close-vma-leak.html
> > > > > 
> > > > >   * igt@gem_userptr_blits@sync-unmap:
> > > > >     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) ->
> > > > > [PASS][56]
> > > > >    [55]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
> > > > >    [56]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > > _userptr_blits@sync-unmap.html
> > > > > 
> > > > >   * igt@gem_workarounds@suspend-resume-context:
> > > > >     - shard-apl:          [DMESG-WARN][57] ([i915#180]) ->
> > > > > [PASS][58] +3 similar issues
> > > > >    [57]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> > > > >    [58]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> > > > > _workarounds@suspend-resume-context.html
> > > > > 
> > > > >   * igt@i915_pm_dc@dc5-dpms:
> > > > >     - shard-apl:          [SKIP][59] ([fdo#109271]) ->
> > > > > [PASS][60]
> > > > >    [59]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
> > > > >    [60]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
> > > > >     - shard-kbl:          [SKIP][61] ([fdo#109271]) ->
> > > > > [PASS][62]
> > > > >    [61]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
> > > > >    [62]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> > > > > 5_pm_dc@dc5-dpms.html
> > > > > 
> > > > >   * igt@i915_pm_rpm@gem-execbuf-stress:
> > > > >     - shard-glk:          [SKIP][63] ([fdo#109271]) ->
> > > > > [PASS][64]
> > > > > +1 similar issue
> > > > >    [63]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >    [64]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >     - shard-tglb:         [SKIP][65] ([i915#1316]) ->
> > > > > [PASS][66]
> > > > >    [65]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >    [66]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >     - shard-hsw:          [SKIP][67] ([fdo#109271]) ->
> > > > > [PASS][68]
> > > > >    [67]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >    [68]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >     - shard-iclb:         [SKIP][69] ([i915#1316]) ->
> > > > > [PASS][70]
> > > > >    [69]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > >    [70]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> > > > > 15_pm_rpm@gem-execbuf-stress.html
> > > > > 
> > > > >   * igt@i915_pm_rps@reset:
> > > > >     - shard-tglb:         [FAIL][71] ([i915#413]) ->
> > > > > [PASS][72]
> > > > >    [71]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
> > > > >    [72]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> > > > > 15_pm_rps@reset.html
> > > > > 
> > > > >   * igt@i915_selftest@live@hangcheck:
> > > > >     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) ->
> > > > > [PASS][74]
> > > > >    [73]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
> > > > >    [74]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> > > > > 15_selftest@live@hangcheck.html
> > > > > 
> > > > >   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > > > >     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) ->
> > > > > [PASS][76] +5 similar issues
> > > > >    [75]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> > > > >    [76]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> > > > > _cursor_crc@pipe-a-cursor-suspend.html
> > > > > 
> > > > >   * igt@kms_flip@flip-vs-suspend:
> > > > >     - shard-snb:          [DMESG-WARN][77] ([i915#42]) ->
> > > > > [PASS][78]
> > > > >    [77]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
> > > > >    [78]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> > > > > _flip@flip-vs-suspend.html
> > > > > 
> > > > >   * igt@kms
> > > > > _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
> > > > >     - shard-tglb:         [SKIP][79] ([i915#668]) ->
> > > > > [PASS][80]
> > > > > +3
> > > > > similar issues
> > > > >    [79]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > > >    [80]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> > > > > s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > > > 
> > > > >   * igt@kms_psr@psr2_sprite_blt:
> > > > >     - shard-iclb:         [SKIP][81] ([fdo#109441]) ->
> > > > > [PASS][82]
> > > > > +1 similar issue
> > > > >    [81]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
> > > > >    [82]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> > > > > s_psr@psr2_sprite_blt.html
> > > > > 
> > > > >   * igt@kms_universal_plane@universal-plane-pipe-c-functional
> > > > > :
> > > > >     - shard-glk:          [FAIL][83] ([i915#331]) ->
> > > > > [PASS][84]
> > > > >    [83]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > >    [84]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > >     - shard-kbl:          [FAIL][85] ([i915#331]) ->
> > > > > [PASS][86]
> > > > >    [85]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > >    [86]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > >     - shard-apl:          [FAIL][87] ([i915#331]) ->
> > > > > [PASS][88]
> > > > >    [87]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > >    [88]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> > > > > _universal_plane@universal-plane-pipe-c-functional.html
> > > > > 
> > > > >   * igt@perf@gen12-mi-rpc:
> > > > >     - shard-tglb:         [FAIL][89] ([i915#1085]) ->
> > > > > [PASS][90]
> > > > >    [89]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
> > > > >    [90]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> > > > > rf@gen12-mi-rpc.html
> > > > > 
> > > > >   * {igt@perf@stress-open-close}:
> > > > >     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) ->
> > > > > [PASS][92]
> > > > >    [91]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
> > > > >    [92]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> > > > > f@stress-open-close.html
> > > > > 
> > > > >   
> > > > > #### Warnings ####
> > > > > 
> > > > >   * igt@kms_content_protection@srm:
> > > > >     - shard-apl:          [TIMEOUT][93] ([i915#1319]) ->
> > > > > [FAIL][94]
> > > > > ([fdo#110321])
> > > > >    [93]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
> > > > >    [94]: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> > > > > _content_protection@srm.html
> > > > > 
> > > > >   
> > > > >   {name}: This element is suppressed. This means it is
> > > > > ignored
> > > > > when
> > > > > computing
> > > > >           the status of the difference (SUCCESS, WARNING, or
> > > > > FAILURE).
> > > > > 
> > > > >   [fdo#103665]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=103665
> > > > >   [fdo#108569]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=108569
> > > > >   [fdo#109271]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > > >   [fdo#109276]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109276
> > > > >   [fdo#109441]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109441
> > > > >   [fdo#110321]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=110321
> > > > >   [fdo#110789]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=110789
> > > > >   [fdo#111870]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=111870
> > > > >   [fdo#112080]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=112080
> > > > >   [fdo#112146]: 
> > > > > https://bugs.freedesktop.org/show_bug.cgi?id=112146
> > > > >   [i915#1085]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/1085
> > > > >   [i915#1316]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/1316
> > > > >   [i915#1318]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/1318
> > > > >   [i915#1319]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/1319
> > > > >   [i915#180]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/180
> > > > >   [i915#31]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/31
> > > > >   [i915#331]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/331
> > > > >   [i915#413]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/413
> > > > >   [i915#42]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/42
> > > > >   [i915#454]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/454
> > > > >   [i915#478]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/478
> > > > >   [i915#54]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/54
> > > > >   [i915#588]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/588
> > > > >   [i915#616]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/616
> > > > >   [i915#644]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/644
> > > > >   [i915#668]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/668
> > > > >   [i915#677]: 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/677
> > > > > 
> > > > > 
> > > > > Participating hosts (10 -> 8)
> > > > > ------------------------------
> > > > > 
> > > > >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > > > > 
> > > > > 
> > > > > Build changes
> > > > > -------------
> > > > > 
> > > > >   * CI: CI-20190529 -> None
> > > > >   * IGT: IGT_5480 -> IGTPW_4241
> > > > >   * Piglit: piglit_4509 -> None
> > > > > 
> > > > >   CI-20190529: 20190529
> > > > >   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @
> > > > > git://anongit.freedesktop.org/gfx-ci/linux
> > > > >   IGTPW_4241: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > > >   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @
> > > > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> > > > >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > > > > git://anongit.freedesktop.org/piglit
> > > > > 
> > > > > == Logs ==
> > > > > 
> > > > > For more details see: 
> > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
  2020-03-04  1:32             ` Souza, Jose
@ 2020-03-04  5:02               ` Anshuman Gupta
  0 siblings, 0 replies; 13+ messages in thread
From: Anshuman Gupta @ 2020-03-04  5:02 UTC (permalink / raw)
  To: Souza, Jose; +Cc: igt-dev, Vudum, Lakshminarayana

On 2020-03-04 at 07:02:02 +0530, Souza, Jose wrote:
> Pushed.
Thanks for pushing the patches.
> 
> 
> On Tue, 2020-03-03 at 09:02 +0530, Anshuman Gupta wrote:
> > On 2020-03-03 at 01:59:48 +0530, Souza, Jose wrote:
> > > This is for Anshuman.
> > > 
> > > 
> > > On Mon, 2020-03-02 at 12:30 -0800, José Roberto de Souza wrote:
> > > > Can you take a look at those? From new rev4 run 
> > > > https://patchwork.freedesktop.org/series/73509/#rev4
> > > > 
> > > > * igt@i915_pm_dc@dc3co-vpb-simulation:
> > > >     - shard-iclb:         [SKIP][1] ([i915#588]) -> [SKIP][2]
> > > >    [1]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > > >    [2]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > Valid skip as dc3co only supported on TGL.
> > > >   * igt@i915_pm_dc@dc6-dpms:
> > > >     - shard-kbl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
> > > >    [3]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > > >    [4]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
> > Looks like that is Pcode firmware issue, as on IGT_4241 dc5-dpms is
> > passing on KBL
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html
> > > >   * igt@i915_pm_dc@dc6-psr:
> > > >     - shard-tglb:         [FAIL][5] ([i915#454]) -> [FAIL][6] +1
> > > > similar issue
> > > >    [5]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > > >    [6]: 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
> > Similarly dc5-psr is passing on tgl IGTPW_4241
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@i915_pm_dc@dc5-psr.html
> > Bothe of these DC6 is faliures driver has Enabled DC6, so this
> > external issue from PCODE.
> > Thanks,
> > Anshuman Gupta.
> > > > 
> > > > On Mon, 2020-03-02 at 12:16 +0000, Vudum, Lakshminarayana wrote:
> > > > > Anshuman,
> > > > > I have addressed the issue and re-reported the results.
> > > > > We have a bug already for that issue, it's 
> > > > > https://gitlab.freedesktop.org/drm/intel/issues/579
> > > > > 
> > > > > Thanks,
> > > > > Lakshmi.
> > > > > 
> > > > > -----Original Message-----
> > > > > From: Gupta, Anshuman <anshuman.gupta@intel.com> 
> > > > > Sent: Monday, March 2, 2020 10:41 AM
> > > > > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <
> > > > > lakshminarayana.vudum@intel.com>
> > > > > Cc: Souza, Jose <jose.souza@intel.com>
> > > > > Subject: Re: ✗ Fi.CI.IGT: failure for DC states IGT misc (rev4)
> > > > > 
> > > > > On 2020-03-02 at 06:11:34 +0000, Patchwork wrote:
> > > > > > == Series Details ==
> > > > > > 
> > > > > > Series: DC states IGT misc (rev4)
> > > > > > URL   : https://patchwork.freedesktop.org/series/73509/
> > > > > > State : failure
> > > > > > 
> > > > > > == Summary ==
> > > > > > 
> > > > > > CI Bug Log - changes from CI_DRM_8036_full ->
> > > > > > IGTPW_4241_full 
> > > > > > ====================================================
> > > > > > 
> > > > > > Summary
> > > > > > -------
> > > > > > 
> > > > > >   **FAILURE**
> > > > > > 
> > > > > >   Serious unknown changes coming with IGTPW_4241_full
> > > > > > absolutely
> > > > > > need to be
> > > > > >   verified manually.
> > > > > >   
> > > > > >   If you think the reported changes have nothing to do with
> > > > > > the
> > > > > > changes
> > > > > >   introduced in IGTPW_4241_full, please notify your bug team
> > > > > > to
> > > > > > allow them
> > > > > >   to document this new failure mode, which will reduce false
> > > > > > positives in CI.
> > > > > > 
> > > > > >   External URL: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > > > > 
> > > > > > Possible new issues
> > > > > > -------------------
> > > > > > 
> > > > > >   Here are the unknown changes that may have been introduced
> > > > > > in
> > > > > > IGTPW_4241_full:
> > > > > > 
> > > > > > ### IGT changes ###
> > > > > > 
> > > > > > #### Possible regressions ####
> > > > > > 
> > > > > >   * igt@i915_pm_rpm@basic-rte:
> > > > > >     - shard-glk:          [PASS][1] -> [FAIL][2]
> > > > > >    [1]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk2/igt@i915_pm_rpm@basic-rte.html
> > > > > >    [2]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@i915_pm_rpm@basic-rte.html
> > > > > >     - shard-iclb:         [PASS][3] -> [FAIL][4]
> > > > > >    [3]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
> > > > > >    [4]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb3/igt@i915_pm_rpm@basic-rte.html
> > > > > >     - shard-tglb:         [PASS][5] -> [FAIL][6]
> > > > > >    [5]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> > > > > >    [6]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i915_pm_rpm@basic-rte.html
> > > > > >     - shard-hsw:          [PASS][7] -> [FAIL][8]
> > > > > >    [7]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw1/igt@i915_pm_rpm@basic-rte.html
> > > > > >    [8]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw1/igt@i91
> > > > > > 5_pm_rpm@basic-rte.html
> > > > > > 
> > > > > >  
> > > > > Hi Lakshmi ,
> > > > > Above failures occured for igt-series
> > > > > https://patchwork.freedesktop.org/series/73509/
> > > > > These failures are not related to this series, do u have any
> > > > > info
> > > > > on
> > > > > these failures whehter these are already known issue or
> > > > > something
> > > > > recently broken at i915 runtime suspend.
> > > > > 
> > > > > Hi Jose ,
> > > > > Cosidering the CI results of rev3 
> > > > > https://patchwork.freedesktop.org/series/73509/#rev3
> > > > > this series looks ok to merge, as rev4 has just cosmetic
> > > > > changes to
> > > > > remove global var.
> > > > > Thanks,
> > > > > Anshuman Gupta.
> > > > > > #### Warnings ####
> > > > > > 
> > > > > >   * igt@i915_pm_dc@dc3co-vpb-simulation:
> > > > > >     - shard-iclb:         [SKIP][9] ([i915#588]) ->
> > > > > > [SKIP][10]
> > > > > >    [9]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
> > > > > >    [10]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@i9
> > > > > > 15_pm_dc@dc3co-vpb-simulation.html
> > > > > > 
> > > > > >   * igt@i915_pm_dc@dc6-dpms:
> > > > > >     - shard-kbl:          [SKIP][11] ([fdo#109271]) ->
> > > > > > [FAIL][12]
> > > > > >    [11]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> > > > > >    [12]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl1/igt@i91
> > > > > > 5_pm_dc@dc6-dpms.html
> > > > > > 
> > > > > >   * igt@i915_pm_dc@dc6-psr:
> > > > > >     - shard-tglb:         [FAIL][13] ([i915#454]) ->
> > > > > > [FAIL][14]
> > > > > > +1
> > > > > > similar issue
> > > > > >    [13]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
> > > > > >    [14]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@i9
> > > > > > 15_pm_dc@dc6-psr.html
> > > > > > 
> > > > > >   
> > > > > > Known issues
> > > > > > ------------
> > > > > > 
> > > > > >   Here are the changes found in IGTPW_4241_full that come
> > > > > > from
> > > > > > known issues:
> > > > > > 
> > > > > > ### IGT changes ###
> > > > > > 
> > > > > > #### Issues hit ####
> > > > > > 
> > > > > >   * igt@gem_ctx_shared@exec-shared-gtt-bsd2:
> > > > > >     - shard-tglb:         [PASS][15] -> [FAIL][16]
> > > > > > ([i915#616])
> > > > > >    [15]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@gem_ctx_shared@exec-shared-gtt-bsd2.html
> > > > > >    [16]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@ge
> > > > > > m_ctx_shared@exec-shared-gtt-bsd2.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@implicit-both-bsd:
> > > > > >     - shard-iclb:         [PASS][17] -> [SKIP][18]
> > > > > > ([i915#677])
> > > > > > +1
> > > > > > similar issue
> > > > > >    [17]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd.html
> > > > > >    [18]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > > m_exec_schedule@implicit-both-bsd.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@implicit-both-bsd2:
> > > > > >     - shard-iclb:         [PASS][19] -> [SKIP][20]
> > > > > > ([fdo#109276]
> > > > > > /
> > > > > > [i915#677])
> > > > > >    [19]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html
> > > > > >    [20]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb5/igt@ge
> > > > > > m_exec_schedule@implicit-both-bsd2.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> > > > > >     - shard-iclb:         [PASS][21] -> [SKIP][22]
> > > > > > ([fdo#109276])
> > > > > > +21 similar issues
> > > > > >    [21]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > > > > >    [22]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@ge
> > > > > > m_exec_schedule@preempt-queue-bsd1.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@preemptive-hang-bsd:
> > > > > >     - shard-iclb:         [PASS][23] -> [SKIP][24]
> > > > > > ([fdo#112146])
> > > > > > +5 similar issues
> > > > > >    [23]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
> > > > > >    [24]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > > m_exec_schedule@preemptive-hang-bsd.html
> > > > > > 
> > > > > >   * igt@gem_exec_whisper@basic-fds-forked:
> > > > > >     - shard-tglb:         [PASS][25] -> [INCOMPLETE][26]
> > > > > > ([i915#1318])
> > > > > >    [25]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb2/igt@gem_exec_whisper@basic-fds-forked.html
> > > > > >    [26]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb7/igt@ge
> > > > > > m_exec_whisper@basic-fds-forked.html
> > > > > > 
> > > > > >   * igt@gem_partial_pwrite_pread@write:
> > > > > >     - shard-hsw:          [PASS][27] -> [DMESG-WARN][28]
> > > > > > ([fdo#110789] / [i915#478])
> > > > > >    [27]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@gem_partial_pwrite_pread@write.html
> > > > > >    [28]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > > > _partial_pwrite_pread@write.html
> > > > > > 
> > > > > >   * igt@gem_workarounds@suspend-resume-fd:
> > > > > >     - shard-kbl:          [PASS][29] -> [DMESG-WARN][30]
> > > > > > ([i915#180]) +3 similar issues
> > > > > >    [29]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
> > > > > >    [30]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@gem
> > > > > > _workarounds@suspend-resume-fd.html
> > > > > > 
> > > > > >   * igt@i915_suspend@debugfs-reader:
> > > > > >     - shard-apl:          [PASS][31] -> [DMESG-WARN][32]
> > > > > > ([i915#180])
> > > > > >    [31]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@i915_suspend@debugfs-reader.html
> > > > > >    [32]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@i91
> > > > > > 5_suspend@debugfs-reader.html
> > > > > > 
> > > > > >   * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
> > > > > >     - shard-apl:          [PASS][33] -> [FAIL][34]
> > > > > > ([i915#54])
> > > > > >    [33]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > > > >    [34]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl6/igt@kms
> > > > > > _cursor_crc@pipe-c-cursor-64x21-onscreen.html
> > > > > > 
> > > > > >   * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> > > > > >     - shard-tglb:         [PASS][35] -> [SKIP][36]
> > > > > > ([i915#668])
> > > > > >    [35]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > > > >    [36]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@km
> > > > > > s_frontbuffer_tracking@psr-rgb101010-draw-render.html
> > > > > > 
> > > > > >   * igt@kms_psr@psr2_primary_page_flip:
> > > > > >     - shard-iclb:         [PASS][37] -> [SKIP][38]
> > > > > > ([fdo#109441])
> > > > > > +1 similar issue
> > > > > >    [37]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> > > > > >    [38]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb7/igt@km
> > > > > > s_psr@psr2_primary_page_flip.html
> > > > > > 
> > > > > >   * igt@kms_setmode@basic:
> > > > > >     - shard-apl:          [PASS][39] -> [FAIL][40]
> > > > > > ([i915#31])
> > > > > >    [39]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@kms_setmode@basic.html
> > > > > >    [40]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl3/igt@kms_setmode@basic.html
> > > > > >     - shard-hsw:          [PASS][41] -> [FAIL][42]
> > > > > > ([i915#31])
> > > > > >    [41]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw7/igt@kms_setmode@basic.html
> > > > > >    [42]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@kms
> > > > > > _setmode@basic.html
> > > > > > 
> > > > > >   * igt@perf_pmu@init-busy-vcs1:
> > > > > >     - shard-iclb:         [PASS][43] -> [SKIP][44]
> > > > > > ([fdo#112080])
> > > > > > +13 similar issues
> > > > > >    [43]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html
> > > > > >    [44]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@pe
> > > > > > rf_pmu@init-busy-vcs1.html
> > > > > > 
> > > > > >   
> > > > > > #### Possible fixes ####
> > > > > > 
> > > > > >   * igt@gem_ctx_isolation@vcs1-dirty-create:
> > > > > >     - shard-iclb:         [SKIP][45] ([fdo#112080]) ->
> > > > > > [PASS][46]
> > > > > > +7 similar issues
> > > > > >    [45]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_ctx_isolation@vcs1-dirty-create.html
> > > > > >    [46]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > > > m_ctx_isolation@vcs1-dirty-create.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@implicit-read-write-bsd1:
> > > > > >     - shard-iclb:         [SKIP][47] ([fdo#109276] /
> > > > > > [i915#677])
> > > > > > ->
> > > > > > [PASS][48]
> > > > > >    [47]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> > > > > >    [48]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@ge
> > > > > > m_exec_schedule@implicit-read-write-bsd1.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@preempt-contexts-bsd2:
> > > > > >     - shard-iclb:         [SKIP][49] ([fdo#109276]) ->
> > > > > > [PASS][50]
> > > > > > +17 similar issues
> > > > > >    [49]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@gem_exec_schedule@preempt-contexts-bsd2.html
> > > > > >    [50]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb1/igt@ge
> > > > > > m_exec_schedule@preempt-contexts-bsd2.html
> > > > > > 
> > > > > >   * igt@gem_exec_schedule@reorder-wide-bsd:
> > > > > >     - shard-iclb:         [SKIP][51] ([fdo#112146]) ->
> > > > > > [PASS][52]
> > > > > > +2 similar issues
> > > > > >    [51]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html
> > > > > >    [52]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb8/igt@ge
> > > > > > m_exec_schedule@reorder-wide-bsd.html
> > > > > > 
> > > > > >   * igt@gem_ppgtt@flink-and-close-vma-leak:
> > > > > >     - shard-glk:          [FAIL][53] ([i915#644]) ->
> > > > > > [PASS][54]
> > > > > >    [53]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
> > > > > >    [54]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk6/igt@gem
> > > > > > _ppgtt@flink-and-close-vma-leak.html
> > > > > > 
> > > > > >   * igt@gem_userptr_blits@sync-unmap:
> > > > > >     - shard-hsw:          [DMESG-WARN][55] ([fdo#111870]) ->
> > > > > > [PASS][56]
> > > > > >    [55]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw5/igt@gem_userptr_blits@sync-unmap.html
> > > > > >    [56]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw7/igt@gem
> > > > > > _userptr_blits@sync-unmap.html
> > > > > > 
> > > > > >   * igt@gem_workarounds@suspend-resume-context:
> > > > > >     - shard-apl:          [DMESG-WARN][57] ([i915#180]) ->
> > > > > > [PASS][58] +3 similar issues
> > > > > >    [57]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
> > > > > >    [58]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@gem
> > > > > > _workarounds@suspend-resume-context.html
> > > > > > 
> > > > > >   * igt@i915_pm_dc@dc5-dpms:
> > > > > >     - shard-apl:          [SKIP][59] ([fdo#109271]) ->
> > > > > > [PASS][60]
> > > > > >    [59]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
> > > > > >    [60]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
> > > > > >     - shard-kbl:          [SKIP][61] ([fdo#109271]) ->
> > > > > > [PASS][62]
> > > > > >    [61]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
> > > > > >    [62]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@i91
> > > > > > 5_pm_dc@dc5-dpms.html
> > > > > > 
> > > > > >   * igt@i915_pm_rpm@gem-execbuf-stress:
> > > > > >     - shard-glk:          [SKIP][63] ([fdo#109271]) ->
> > > > > > [PASS][64]
> > > > > > +1 similar issue
> > > > > >    [63]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >    [64]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >     - shard-tglb:         [SKIP][65] ([i915#1316]) ->
> > > > > > [PASS][66]
> > > > > >    [65]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >    [66]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >     - shard-hsw:          [SKIP][67] ([fdo#109271]) ->
> > > > > > [PASS][68]
> > > > > >    [67]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-hsw4/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >    [68]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-hsw5/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >     - shard-iclb:         [SKIP][69] ([i915#1316]) ->
> > > > > > [PASS][70]
> > > > > >    [69]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress.html
> > > > > >    [70]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@i9
> > > > > > 15_pm_rpm@gem-execbuf-stress.html
> > > > > > 
> > > > > >   * igt@i915_pm_rps@reset:
> > > > > >     - shard-tglb:         [FAIL][71] ([i915#413]) ->
> > > > > > [PASS][72]
> > > > > >    [71]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@i915_pm_rps@reset.html
> > > > > >    [72]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb8/igt@i9
> > > > > > 15_pm_rps@reset.html
> > > > > > 
> > > > > >   * igt@i915_selftest@live@hangcheck:
> > > > > >     - shard-iclb:         [INCOMPLETE][73] ([fdo#108569]) ->
> > > > > > [PASS][74]
> > > > > >    [73]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb5/igt@i915_selftest@live@hangcheck.html
> > > > > >    [74]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb6/igt@i9
> > > > > > 15_selftest@live@hangcheck.html
> > > > > > 
> > > > > >   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > > > > >     - shard-kbl:          [DMESG-WARN][75] ([i915#180]) ->
> > > > > > [PASS][76] +5 similar issues
> > > > > >    [75]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> > > > > >    [76]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl4/igt@kms
> > > > > > _cursor_crc@pipe-a-cursor-suspend.html
> > > > > > 
> > > > > >   * igt@kms_flip@flip-vs-suspend:
> > > > > >     - shard-snb:          [DMESG-WARN][77] ([i915#42]) ->
> > > > > > [PASS][78]
> > > > > >    [77]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-snb4/igt@kms_flip@flip-vs-suspend.html
> > > > > >    [78]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-snb6/igt@kms
> > > > > > _flip@flip-vs-suspend.html
> > > > > > 
> > > > > >   * igt@kms
> > > > > > _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
> > > > > >     - shard-tglb:         [SKIP][79] ([i915#668]) ->
> > > > > > [PASS][80]
> > > > > > +3
> > > > > > similar issues
> > > > > >    [79]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > > > >    [80]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb2/igt@km
> > > > > > s_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
> > > > > > 
> > > > > >   * igt@kms_psr@psr2_sprite_blt:
> > > > > >     - shard-iclb:         [SKIP][81] ([fdo#109441]) ->
> > > > > > [PASS][82]
> > > > > > +1 similar issue
> > > > > >    [81]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
> > > > > >    [82]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-iclb2/igt@km
> > > > > > s_psr@psr2_sprite_blt.html
> > > > > > 
> > > > > >   * igt@kms_universal_plane@universal-plane-pipe-c-functional
> > > > > > :
> > > > > >     - shard-glk:          [FAIL][83] ([i915#331]) ->
> > > > > > [PASS][84]
> > > > > >    [83]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > > >    [84]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-glk5/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > > >     - shard-kbl:          [FAIL][85] ([i915#331]) ->
> > > > > > [PASS][86]
> > > > > >    [85]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > > >    [86]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > > >     - shard-apl:          [FAIL][87] ([i915#331]) ->
> > > > > > [PASS][88]
> > > > > >    [87]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
> > > > > >    [88]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl1/igt@kms
> > > > > > _universal_plane@universal-plane-pipe-c-functional.html
> > > > > > 
> > > > > >   * igt@perf@gen12-mi-rpc:
> > > > > >     - shard-tglb:         [FAIL][89] ([i915#1085]) ->
> > > > > > [PASS][90]
> > > > > >    [89]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-tglb7/igt@perf@gen12-mi-rpc.html
> > > > > >    [90]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-tglb5/igt@pe
> > > > > > rf@gen12-mi-rpc.html
> > > > > > 
> > > > > >   * {igt@perf@stress-open-close}:
> > > > > >     - shard-kbl:          [INCOMPLETE][91] ([fdo#103665]) ->
> > > > > > [PASS][92]
> > > > > >    [91]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-kbl6/igt@perf@stress-open-close.html
> > > > > >    [92]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-kbl6/igt@per
> > > > > > f@stress-open-close.html
> > > > > > 
> > > > > >   
> > > > > > #### Warnings ####
> > > > > > 
> > > > > >   * igt@kms_content_protection@srm:
> > > > > >     - shard-apl:          [TIMEOUT][93] ([i915#1319]) ->
> > > > > > [FAIL][94]
> > > > > > ([fdo#110321])
> > > > > >    [93]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8036/shard-apl4/igt@kms_content_protection@srm.html
> > > > > >    [94]: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/shard-apl2/igt@kms
> > > > > > _content_protection@srm.html
> > > > > > 
> > > > > >   
> > > > > >   {name}: This element is suppressed. This means it is
> > > > > > ignored
> > > > > > when
> > > > > > computing
> > > > > >           the status of the difference (SUCCESS, WARNING, or
> > > > > > FAILURE).
> > > > > > 
> > > > > >   [fdo#103665]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=103665
> > > > > >   [fdo#108569]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=108569
> > > > > >   [fdo#109271]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > > > > >   [fdo#109276]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109276
> > > > > >   [fdo#109441]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=109441
> > > > > >   [fdo#110321]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=110321
> > > > > >   [fdo#110789]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=110789
> > > > > >   [fdo#111870]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=111870
> > > > > >   [fdo#112080]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=112080
> > > > > >   [fdo#112146]: 
> > > > > > https://bugs.freedesktop.org/show_bug.cgi?id=112146
> > > > > >   [i915#1085]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/1085
> > > > > >   [i915#1316]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/1316
> > > > > >   [i915#1318]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/1318
> > > > > >   [i915#1319]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/1319
> > > > > >   [i915#180]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/180
> > > > > >   [i915#31]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/31
> > > > > >   [i915#331]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/331
> > > > > >   [i915#413]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/413
> > > > > >   [i915#42]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/42
> > > > > >   [i915#454]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/454
> > > > > >   [i915#478]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/478
> > > > > >   [i915#54]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/54
> > > > > >   [i915#588]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/588
> > > > > >   [i915#616]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/616
> > > > > >   [i915#644]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/644
> > > > > >   [i915#668]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/668
> > > > > >   [i915#677]: 
> > > > > > https://gitlab.freedesktop.org/drm/intel/issues/677
> > > > > > 
> > > > > > 
> > > > > > Participating hosts (10 -> 8)
> > > > > > ------------------------------
> > > > > > 
> > > > > >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > > > > > 
> > > > > > 
> > > > > > Build changes
> > > > > > -------------
> > > > > > 
> > > > > >   * CI: CI-20190529 -> None
> > > > > >   * IGT: IGT_5480 -> IGTPW_4241
> > > > > >   * Piglit: piglit_4509 -> None
> > > > > > 
> > > > > >   CI-20190529: 20190529
> > > > > >   CI_DRM_8036: 0f36a1b338da9019bde23189927497551256a90c @
> > > > > > git://anongit.freedesktop.org/gfx-ci/linux
> > > > > >   IGTPW_4241: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
> > > > > >   IGT_5480: 13dbe276f21d75a42795567973b9303112bd7c5d @
> > > > > > git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> > > > > >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > > > > > git://anongit.freedesktop.org/piglit
> > > > > > 
> > > > > > == Logs ==
> > > > > > 
> > > > > > For more details see: 
> > > > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4241/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-03-04  5:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-29 17:04 [igt-dev] [PATCH i-g-t v3 0/2] DC states IGT misc Anshuman Gupta
2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 1/2] tests/i915_pm_dc: Dump power_domain_info on DC test failures Anshuman Gupta
2020-02-29 17:04 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/i915_pm_dc: psr required only for dc*-psr tests Anshuman Gupta
2020-02-29 18:00 ` [igt-dev] ✓ Fi.CI.BAT: success for DC states IGT misc (rev4) Patchwork
2020-03-02  6:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-02  8:40   ` Anshuman Gupta
2020-03-02 12:16     ` Vudum, Lakshminarayana
2020-03-02 20:29       ` Souza, Jose
2020-03-02 20:29         ` Souza, Jose
2020-03-03  3:32           ` Anshuman Gupta
2020-03-04  1:32             ` Souza, Jose
2020-03-04  5:02               ` Anshuman Gupta
2020-03-02 11:53 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.