All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test
@ 2021-05-26  7:20 Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

v4 has rebased and fixed some review comments from Uma.

Anshuman Gupta (5):
  i915/i915_pm_rpm: Enable PC8+ residency test
  i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test
  i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout
  i915/i915_pm_rpm: Add PC10 display off test
  i915/i915_pm_rpm: Add PC10 idle display on test

 tests/i915/i915_pm_rpm.c | 103 +++++++++++++++++++++++++++++++--------
 1 file changed, 83 insertions(+), 20 deletions(-)

-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t v4 1/5] i915/i915_pm_rpm: Enable PC8+ residency test
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
@ 2021-05-26  7:20 ` Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

Enabled pc8-residency test for each platform that supports pc8.
SKL onwards Platforms can enter the PC8 even with display on,
therefore it requires to bifurcate pc8-residency igt test into
display-on and display-off igt test case.

Negative testing of PC8 residency on HASWELL/BROADWELL while
display being "on" is removed as it saves CI time and there is
no ROI of such testing.

v2: chooses the optimum timeout value for PC8 test timeout.

v3: cosmetics changes. [Uma]

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 46 ++++++++++++++++++++++++++--------------
 1 file changed, 30 insertions(+), 16 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index d9ec0388..9f5656bb 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -52,6 +52,7 @@
 #include "igt_debugfs.h"
 #include "igt_device.h"
 #include "igt_edid.h"
+#include "igt_psr.h"
 
 #define MSR_PC8_RES	0x630
 #define MSR_PC9_RES	0x631
@@ -85,6 +86,14 @@ enum plane_type {
 #define WAIT_EXTRA	4
 #define USE_DPMS	8
 
+/*
+ * PC state timeout
+ * idle time of msecs is enough for cpu to be in C10 but for package C states
+ * it requires other soc devices to be idle, to be ready for entry to PC8/PC10.
+ * Let's keep 3 seconds timeout for PC8 and 5 seconds for PC10.
+ */
+#define PC8_TIMEOUT 3
+
 int drm_fd, msr_fd, pc8_status_fd;
 int debugfs;
 bool has_runtime_pm, has_pc8;
@@ -728,10 +737,6 @@ static void setup_pc8(void)
 {
 	has_pc8 = false;
 
-	/* Only Haswell supports the PC8 feature. */
-	if (!IS_HASWELL(ms_data.devid) && !IS_BROADWELL(ms_data.devid))
-		return;
-
 	/* Make sure our Kernel supports MSR and the module is loaded. */
 	igt_require(modprobe("msr") == 0);
 
@@ -827,20 +832,27 @@ static void basic_subtest(void)
 	/* XXX Also we can test wake up via exec nop */
 }
 
-static void pc8_residency_subtest(void)
+static void pc8_residency_subtest(bool display_on)
 {
 	igt_require(has_pc8);
 
-	/* Make sure PC8+ residencies move! */
-	disable_all_screens(&ms_data);
-	igt_assert_f(pc8_plus_residency_changed(30),
-		     "Machine is not reaching PC8+ states, please check its "
-		     "configuration.\n");
+	if (IS_HASWELL(ms_data.devid) || IS_BROADWELL(ms_data.devid))
+		igt_require_f(!display_on, "pc8 with display on not supported\n");
 
-	/* Make sure PC8+ residencies stop! */
-	enable_one_screen(&ms_data);
-	igt_assert_f(!pc8_plus_residency_changed(10),
-		     "PC8+ residency didn't stop with screen enabled.\n");
+	if (!display_on) {
+		/* Make sure PC8+ residencies move! */
+		disable_all_screens(&ms_data);
+		igt_assert_f(pc8_plus_residency_changed(PC8_TIMEOUT),
+			     "Machine is not reaching PC8+ states with all screens disabled.\n");
+	} else {
+		/* check pc8 with psr disabled on any output */
+		psr_disable(drm_fd, debugfs);
+		enable_one_screen(&ms_data);
+		igt_assert_f(pc8_plus_residency_changed(PC8_TIMEOUT),
+			     "Machine is not reaching PC8+ states with a screen enabled.\n");
+		/* Restore PSR with PSR_MODE_1 for rest of IGT */
+		psr_enable(drm_fd, debugfs, PSR_MODE_1);
+	}
 }
 
 static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
@@ -2075,8 +2087,10 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		reg_read_ioctl_subtest();
 	igt_subtest("i2c")
 		i2c_subtest();
-	igt_subtest("pc8-residency")
-		pc8_residency_subtest();
+	igt_subtest("pc8-residency-display-on")
+		pc8_residency_subtest(true);
+	igt_subtest("pc8-residency-display-off")
+		pc8_residency_subtest(false);
 	igt_subtest("debugfs-read")
 		debugfs_read_subtest();
 	igt_subtest("debugfs-forcewake-user")
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t v4 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
@ 2021-05-26  7:20 ` Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

modeset-pc8-residency-stress checks PC8 residency with modeset
stress. As the platforms followed by SKL can really enter to PC8
with display-on, it is sufficient to validate PC8 while all displays
being off with modeset stress.

For older platforms like HASWELL/BROADWELL negative testing of PC8
residency while display being "on" can be removed as it saves CI time
and there is no ROI of such testing with modeset stress, wait_for_active()
already covers such coverage.

It will keep the code simpler without any platform checks.

v2: Used optimum pc8 timeout value and commit log changes.

v3: commit log improvements.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 9f5656bb..7a4c9291 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -874,7 +874,7 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 		if (wait_flags & WAIT_STATUS)
 			igt_assert(wait_for_suspended());
 		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(pc8_plus_residency_changed(30));
+			igt_assert(pc8_plus_residency_changed(PC8_TIMEOUT));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 
@@ -883,8 +883,6 @@ static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 		igt_require(enable_one_screen_with_type(&ms_data, type));
 		if (wait_flags & WAIT_STATUS)
 			igt_assert(wait_for_active());
-		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(!pc8_plus_residency_changed(5));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 	}
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t v4 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
@ 2021-05-26  7:20 ` Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

Use a optimum PC8 timeout value for gem-execbuf-stress-pc8
igt test.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 7a4c9291..2d6cdf05 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -1402,7 +1402,7 @@ static void gem_execbuf_stress_subtest(int rounds, int wait_flags)
 			igt_assert(wait_for_suspended());
 		}
 		if (wait_flags & WAIT_PC8_RES)
-			igt_assert(pc8_plus_residency_changed(30));
+			igt_assert(pc8_plus_residency_changed(PC8_TIMEOUT));
 		if (wait_flags & WAIT_EXTRA)
 			sleep(5);
 	}
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t v4 4/5] i915/i915_pm_rpm: Add PC10 display off test
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
                   ` (2 preceding siblings ...)
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
@ 2021-05-26  7:20 ` Anshuman Gupta
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

Add a test to validate PC10 residencies while all output's
display is off.

v2: used optimum pc10 timeout value.

Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 2d6cdf05..b7b6938c 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -93,6 +93,7 @@ enum plane_type {
  * Let's keep 3 seconds timeout for PC8 and 5 seconds for PC10.
  */
 #define PC8_TIMEOUT 3
+#define PC10_TIMEOUT 5
 
 int drm_fd, msr_fd, pc8_status_fd;
 int debugfs;
@@ -178,6 +179,16 @@ static bool pc8_plus_residency_changed(unsigned int timeout_sec)
 			timeout_sec * 1000, 100);
 }
 
+static bool pc10_residency_changed(unsigned int timeout_sec)
+{
+	uint64_t res_pc10;
+
+	res_pc10 = get_residency(MSR_PC10_RES);
+
+	return igt_wait(res_pc10 != get_residency(MSR_PC10_RES),
+			timeout_sec * 1000, 100);
+}
+
 static enum pc8_status get_pc8_status(void)
 {
 	ssize_t n_read;
@@ -855,6 +866,19 @@ static void pc8_residency_subtest(bool display_on)
 	}
 }
 
+static void pc10_residency_subtest(bool display_on)
+{
+	igt_require(has_pc8);
+	igt_require(AT_LEAST_GEN(ms_data.devid, 9));
+
+	if (!display_on) {
+		/* Make sure PC10 residencies move! */
+		disable_all_screens_and_wait(&ms_data);
+		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
+			     "Machine is not reaching PC10 state with all screens disabled.\n");
+	}
+}
+
 static void modeset_subtest(enum screen_type type, int rounds, int wait_flags)
 {
 	int i;
@@ -2089,6 +2113,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		pc8_residency_subtest(true);
 	igt_subtest("pc8-residency-display-off")
 		pc8_residency_subtest(false);
+	igt_subtest("pc10-residency-display-off")
+		pc10_residency_subtest(false);
 	igt_subtest("debugfs-read")
 		debugfs_read_subtest();
 	igt_subtest("debugfs-forcewake-user")
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t v4 5/5] i915/i915_pm_rpm: Add PC10 idle display on test
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
                   ` (3 preceding siblings ...)
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
@ 2021-05-26  7:20 ` Anshuman Gupta
  2021-05-26  9:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for PC state igt test (rev4) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Anshuman Gupta @ 2021-05-26  7:20 UTC (permalink / raw)
  To: igt-dev

Add a test which validates PC10 residencies with
psr idle display on.

v2: used optimum pc10 timeout value.

Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/i915/i915_pm_rpm.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index b7b6938c..d6150dcb 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -70,6 +70,7 @@ enum pc8_status {
 enum screen_type {
 	SCREEN_TYPE_LPSP,
 	SCREEN_TYPE_NON_LPSP,
+	SCREEN_TYPE_PSR,
 	SCREEN_TYPE_ANY,
 };
 
@@ -128,6 +129,7 @@ struct modeset_params {
 
 struct modeset_params lpsp_mode_params;
 struct modeset_params non_lpsp_mode_params;
+struct modeset_params psr_mode_params;
 struct modeset_params *default_mode_params;
 
 static int modprobe(const char *driver)
@@ -293,6 +295,10 @@ static bool init_modeset_params_for_type(struct mode_set_data *data,
 		    i915_output_is_lpsp_capable(drm_fd, output))
 			continue;
 
+		if (type == SCREEN_TYPE_PSR &&
+		    !psr_sink_support(drm_fd, debugfs, PSR_MODE_1))
+			continue;
+
 		connector = c;
 		mode = igt_output_get_mode(output);
 		break;
@@ -328,6 +334,8 @@ static void init_modeset_cached_params(struct mode_set_data *data)
 		default_mode_params = &non_lpsp_mode_params;
 	else
 		default_mode_params = NULL;
+
+	init_modeset_params_for_type(data, &psr_mode_params, SCREEN_TYPE_PSR);
 }
 
 static bool set_mode_for_params(struct modeset_params *params)
@@ -359,6 +367,9 @@ static bool enable_one_screen_with_type(struct mode_set_data *data,
 	case SCREEN_TYPE_NON_LPSP:
 		params = &non_lpsp_mode_params;
 		break;
+	case SCREEN_TYPE_PSR:
+		params = &psr_mode_params;
+		break;
 	default:
 		igt_assert(0);
 	}
@@ -369,6 +380,12 @@ static bool enable_one_screen_with_type(struct mode_set_data *data,
 	return set_mode_for_params(params);
 }
 
+static void enable_psr_screen(struct mode_set_data *data)
+{
+	psr_enable(drm_fd, debugfs, PSR_MODE_1);
+	igt_require(enable_one_screen_with_type(data, SCREEN_TYPE_PSR));
+}
+
 static void enable_one_screen(struct mode_set_data *data)
 {
 	/* SKIP if there are no connected screens. */
@@ -876,6 +893,12 @@ static void pc10_residency_subtest(bool display_on)
 		disable_all_screens_and_wait(&ms_data);
 		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
 			     "Machine is not reaching PC10 state with all screens disabled.\n");
+	} else {
+		/* check pc10 with psr screen */
+		enable_psr_screen(&ms_data);
+		igt_assert(psr_wait_entry(debugfs, PSR_MODE_1));
+		igt_assert_f(pc10_residency_changed(PC10_TIMEOUT),
+			     "Machine is not reaching PC10 state with idle display on\n");
 	}
 }
 
@@ -2113,6 +2136,8 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 		pc8_residency_subtest(true);
 	igt_subtest("pc8-residency-display-off")
 		pc8_residency_subtest(false);
+	igt_subtest("pc10-residency-display-on")
+		pc10_residency_subtest(true);
 	igt_subtest("pc10-residency-display-off")
 		pc10_residency_subtest(false);
 	igt_subtest("debugfs-read")
-- 
2.26.2

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for PC state igt test (rev4)
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
                   ` (4 preceding siblings ...)
  2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
@ 2021-05-26  9:12 ` Patchwork
  2021-05-26  9:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2021-05-26 11:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-05-26  9:12 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev

== Series Details ==

Series: PC state igt test (rev4)
URL   : https://patchwork.freedesktop.org/series/84737/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/326403 for the overview.

build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112464):
  [1096/1097] Linking target runner/igt_results.
  [1097/1097] Linking target runner/runner_test.
  $ cp build/tests/test-list.txt meson-test-list.txt
  section_end:1622019273:step_script
  section_start:1622019273:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  meson-test-list.txt: found 1 matching files and directories 
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112464 responseStatus=400 Bad Request status=400 token=DzV_TMSa
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112464 responseStatus=500 Internal Server Error status=500 token=DzV_TMSa
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112464 responseStatus=500 Internal Server Error status=500 token=DzV_TMSa
  FATAL: invalid argument                            
  section_end:1622019510:upload_artifacts_on_success
  section_start:1622019510:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019511:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112467):
  [1029/1031] Linking target tests/gem_exec_schedule.
  [1030/1031] Compiling C object 'runner/527aa9f@@runner_test@exe/runner_tests.c.o'.
  [1031/1031] Linking target runner/runner_test.
  section_end:1622019332:step_script
  section_start:1622019332:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 1579 matching files and directories   
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112467 responseStatus=500 Internal Server Error status=500 token=14feHmpg
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112467 responseStatus=500 Internal Server Error status=500 token=14feHmpg
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112467 responseStatus=500 Internal Server Error status=500 token=14feHmpg
  FATAL: invalid argument                            
  section_end:1622019517:upload_artifacts_on_success
  section_start:1622019517:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019518:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112466):
  [1029/1031] Linking target tests/gem_exec_schedule.
  [1030/1031] Compiling C object 'runner/527aa9f@@runner_test@exe/runner_tests.c.o'.
  [1031/1031] Linking target runner/runner_test.
  section_end:1622019314:step_script
  section_start:1622019314:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 1579 matching files and directories   
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112466 responseStatus=500 Internal Server Error status=500 token=o6ioFHy3
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112466 responseStatus=500 Internal Server Error status=500 token=o6ioFHy3
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112466 responseStatus=500 Internal Server Error status=500 token=o6ioFHy3
  FATAL: invalid argument                            
  section_end:1622019499:upload_artifacts_on_success
  section_start:1622019499:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019500:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112468):
  [1029/1031] Linking target tests/perf.
  [1030/1031] Compiling C object 'runner/527aa9f@@runner_test@exe/runner_tests.c.o'.
  [1031/1031] Linking target runner/runner_test.
  section_end:1622019380:step_script
  section_start:1622019380:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 1579 matching files and directories   
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112468 responseStatus=500 Internal Server Error status=500 token=NUy6qnzp
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112468 responseStatus=500 Internal Server Error status=500 token=NUy6qnzp
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112468 responseStatus=500 Internal Server Error status=500 token=NUy6qnzp
  FATAL: invalid argument                            
  section_end:1622019683:upload_artifacts_on_success
  section_start:1622019683:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019684:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-debian-minimal has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112465):
  [437/439] Linking target tools/i915-perf/i915-perf-configs.
  [438/439] Linking target tools/i915-perf/i915-perf-reader.
  [439/439] Linking target tools/i915-perf/i915-perf-recorder.
  section_end:1622019304:step_script
  section_start:1622019304:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 680 matching files and directories    
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112465 responseStatus=500 Internal Server Error status=500 token=Ay86Fka_
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112465 responseStatus=500 Internal Server Error status=500 token=Ay86Fka_
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112465 responseStatus=500 Internal Server Error status=500 token=Ay86Fka_
  FATAL: invalid argument                            
  section_end:1622019503:upload_artifacts_on_success
  section_start:1622019503:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019504:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112459):
  html/igt-gpu-tools-debugfs.html:1600: warning: no link for: "rcu-barrier" -> (<code class="function">rcu_barrier()</code>).
  
  section_end:1622019111:step_script
  section_start:1622019111:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 1930 matching files and directories   
  installdir: found 502 matching files and directories 
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112459 responseStatus=500 Internal Server Error status=500 token=Rcyovedu
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112459 responseStatus=502 Bad Gateway status=502 token=Rcyovedu
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112459 responseStatus=500 Internal Server Error status=500 token=Rcyovedu
  FATAL: invalid argument                            
  section_end:1622019714:upload_artifacts_on_success
  section_start:1622019714:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019715:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/10112463):
  [1095/1097] Linking target runner/runner_test.
  [1096/1097] Compiling C object 'assembler/1ca89e8@@intel-gen4asm@exe/meson-generated_gram.c.o'.
  [1097/1097] Linking target assembler/intel-gen4asm.
  section_end:1622019290:step_script
  section_start:1622019290:upload_artifacts_on_success
  Uploading artifacts for successful job
  Uploading artifacts...
  build: found 1678 matching files and directories   
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112463 responseStatus=500 Internal Server Error status=500 token=zCTDUris
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112463 responseStatus=500 Internal Server Error status=500 token=zCTDUris
  WARNING: Retrying...                                context=artifacts-uploader error=invalid argument
  WARNING: Uploading artifacts as "archive" to coordinator... failed  id=10112463 responseStatus=500 Internal Server Error status=500 token=zCTDUris
  FATAL: invalid argument                            
  section_end:1622019470:upload_artifacts_on_success
  section_start:1622019470:cleanup_file_variables
  Cleaning up file based variables
  section_end:1622019471:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/326403
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for PC state igt test (rev4)
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
                   ` (5 preceding siblings ...)
  2021-05-26  9:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for PC state igt test (rev4) Patchwork
@ 2021-05-26  9:13 ` Patchwork
  2021-05-26 11:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-05-26  9:13 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 5442 bytes --]

== Series Details ==

Series: PC state igt test (rev4)
URL   : https://patchwork.freedesktop.org/series/84737/
State : success

== Summary ==

CI Bug Log - changes from IGT_6093 -> IGTPW_5849
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-skl-guc:         NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@gem_huc_copy@huc-copy.html

  * igt@i915_selftest@live@execlists:
    - fi-skl-guc:         NOTRUN -> [DMESG-FAIL][2] ([i915#3462])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-skl-guc:         NOTRUN -> [SKIP][3] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-skl-guc:         NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#533])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-skl-guc:         NOTRUN -> [SKIP][5] ([fdo#109271]) +8 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@kms_psr@primary_mmap_gtt.html

  * igt@runner@aborted:
    - fi-skl-guc:         NOTRUN -> [FAIL][6] ([i915#1436] / [i915#2426] / [i915#3363])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-skl-guc/igt@runner@aborted.html

  
#### Warnings ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][7] ([i915#2782] / [i915#2940] / [i915#3462]) -> [DMESG-FAIL][8] ([i915#3462])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-bsw-nick/igt@i915_selftest@live@execlists.html
    - fi-bsw-kefka:       [DMESG-FAIL][9] ([i915#3462]) -> [INCOMPLETE][10] ([i915#2782] / [i915#2940] / [i915#3462])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-bsw-kefka/igt@i915_selftest@live@execlists.html

  * igt@runner@aborted:
    - fi-cfl-8700k:       [FAIL][11] ([i915#3363]) -> [FAIL][12] ([i915#2426] / [i915#3363])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/fi-cfl-8700k/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-cfl-8700k/igt@runner@aborted.html
    - fi-kbl-soraka:      [FAIL][13] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][14] ([i915#1436] / [i915#3363])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/fi-kbl-soraka/igt@runner@aborted.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-kbl-soraka/igt@runner@aborted.html
    - fi-kbl-7567u:       [FAIL][15] ([i915#1436] / [i915#3363]) -> [FAIL][16] ([i915#1436] / [i915#2426] / [i915#3363])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/fi-kbl-7567u/igt@runner@aborted.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/fi-kbl-7567u/igt@runner@aborted.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2932]: https://gitlab.freedesktop.org/drm/intel/issues/2932
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#2966]: https://gitlab.freedesktop.org/drm/intel/issues/2966
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (46 -> 41)
------------------------------

  Additional (1): fi-skl-guc 
  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6093 -> IGTPW_5849

  CI-20190529: 20190529
  CI_DRM_10133: 79cace2bbe3bb9cbff1aa14428adea42072b56b0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5849: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/index.html
  IGT_6093: 50523f74bcd60d9bf0c4d2bb1486157a6b15e5b2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@i915_pm_rpm@pc8-residency-display-off
+igt@i915_pm_rpm@pc8-residency-display-on
+igt@i915_pm_rpm@pc10-residency-display-off
+igt@i915_pm_rpm@pc10-residency-display-on
-igt@i915_pm_rpm@pc8-residency

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/index.html

[-- Attachment #1.2: Type: text/html, Size: 7627 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for PC state igt test (rev4)
  2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
                   ` (6 preceding siblings ...)
  2021-05-26  9:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-05-26 11:56 ` Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-05-26 11:56 UTC (permalink / raw)
  To: Gupta, Anshuman; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30242 bytes --]

== Series Details ==

Series: PC state igt test (rev4)
URL   : https://patchwork.freedesktop.org/series/84737/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6093_full -> IGTPW_5849_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_5849_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5849_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_5849/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
    - shard-kbl:          NOTRUN -> [FAIL][1] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl3/igt@i915_pm_rpm@pc10-residency-display-off.html
    - shard-iclb:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@i915_pm_rpm@pc10-residency-display-off.html

  
#### Warnings ####

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-apl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  
New tests
---------

  New tests have been introduced between IGT_6093_full and IGTPW_5849_full:

### New IGT tests (4) ###

  * igt@i915_pm_rpm@pc10-residency-display-off:
    - Statuses : 3 fail(s) 3 skip(s)
    - Exec time: [0.0, 9.77] s

  * igt@i915_pm_rpm@pc10-residency-display-on:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@pc8-residency-display-off:
    - Statuses : 2 fail(s) 1 pass(s) 2 skip(s)
    - Exec time: [0.0, 4.04] s

  * igt@i915_pm_rpm@pc8-residency-display-on:
    - Statuses : 1 fail(s) 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 4.26] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-3x:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#1839])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@feature_discovery@display-3x.html

  * igt@feature_discovery@display-4x:
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#1839])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb8/igt@feature_discovery@display-4x.html

  * igt@gem_create@create-massive:
    - shard-snb:          NOTRUN -> [DMESG-WARN][7] ([i915#3002])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb5/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@smoketest:
    - shard-snb:          NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) +2 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb5/igt@gem_ctx_persistence@smoketest.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_params@no-blt:
    - shard-tglb:         NOTRUN -> [SKIP][13] ([fdo#109283]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb1/igt@gem_exec_params@no-blt.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][14] ([fdo#109283]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#2190])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl3/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#2190])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk6/igt@gem_huc_copy@huc-copy.html
    - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#2190])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_mmap_gtt@big-copy-xy:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#307])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-glk9/igt@gem_mmap_gtt@big-copy-xy.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk2/igt@gem_mmap_gtt@big-copy-xy.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy:
    - shard-apl:          NOTRUN -> [INCOMPLETE][20] ([i915#3468]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl3/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
    - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#3468])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-kbl7/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl2/igt@gem_mmap_gtt@cpuset-basic-small-copy.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
    - shard-iclb:         NOTRUN -> [INCOMPLETE][23] ([i915#2910] / [i915#3468])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][24] ([i915#2055] / [i915#3468])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
    - shard-tglb:         NOTRUN -> [INCOMPLETE][25] ([i915#2910] / [i915#3468])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb5/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][26] ([i915#3468]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl4/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-iclb:         [PASS][27] -> [FAIL][28] ([i915#307])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-iclb7/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb2/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_gtt@fault-concurrent:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][29] ([i915#3468])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb1/igt@gem_mmap_gtt@fault-concurrent.html
    - shard-snb:          NOTRUN -> [INCOMPLETE][30] ([i915#3468])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb7/igt@gem_mmap_gtt@fault-concurrent.html
    - shard-iclb:         NOTRUN -> [INCOMPLETE][31] ([i915#3468])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb4/igt@gem_mmap_gtt@fault-concurrent.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][32] ([i915#3468])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk3/igt@gem_mmap_gtt@fault-concurrent.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-snb:          NOTRUN -> [INCOMPLETE][33] ([i915#3468] / [i915#3485])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][34] ([i915#2658])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#768]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#110542])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#109290])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#3297])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#3297]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109289])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb7/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#112306]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@gen9_exec_parse@batch-without-end.html
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#112306]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb7/igt@gen9_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@bb-large:
    - shard-apl:          NOTRUN -> [FAIL][43] ([i915#3296])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@gen9_exec_parse@bb-large.html
    - shard-kbl:          NOTRUN -> [FAIL][44] ([i915#3296])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl1/igt@gen9_exec_parse@bb-large.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][45] ([i915#454])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#110892]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#111644] / [i915#1397] / [i915#2411])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb1/igt@i915_pm_rpm@modeset-non-lpsp.html

  * {igt@i915_pm_rpm@pc10-residency-display-off} (NEW):
    - shard-tglb:         NOTRUN -> [FAIL][48] ([i915#2411]) +3 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb8/igt@i915_pm_rpm@pc10-residency-display-off.html

  * igt@i915_selftest@live@execlists:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][49] ([i915#3462])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@i915_selftest@live@execlists.html
    - shard-glk:          NOTRUN -> [DMESG-FAIL][50] ([i915#3462])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk6/igt@i915_selftest@live@execlists.html
    - shard-iclb:         NOTRUN -> [DMESG-FAIL][51] ([i915#3462])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][52] ([i915#2373])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][53] ([i915#1759] / [i915#2291])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          NOTRUN -> [INCOMPLETE][54] ([i915#2782])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb5/igt@i915_selftest@live@hangcheck.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#1769])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-tglb:         NOTRUN -> [SKIP][56] ([i915#1769])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111614]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#110725] / [fdo#111614]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#110723])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#111615]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html

  * igt@kms_chamelium@hdmi-hpd-storm:
    - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl7/igt@kms_chamelium@hdmi-hpd-storm.html

  * igt@kms_chamelium@vga-frame-dump:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@kms_chamelium@vga-frame-dump.html

  * igt@kms_chamelium@vga-hpd-enable-disable-mode:
    - shard-glk:          NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk2/igt@kms_chamelium@vga-hpd-enable-disable-mode.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_color@pipe-d-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [i915#1149])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb3/igt@kms_color@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +27 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +12 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb6/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-negative:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-negative.html

  * igt@kms_content_protection@content_type_change:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109300] / [fdo#111066])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_content_protection@content_type_change.html

  * igt@kms_content_protection@legacy:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111828])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb7/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3319]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#109279] / [i915#3359]) +2 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3359]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109278] / [fdo#109279]) +3 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278]) +24 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb6/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dp_dsc@basic-dsc-enable-dp:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#109349])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb1/igt@kms_dp_dsc@basic-dsc-enable-dp.html
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109349])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-dp.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][79] ([i915#155] / [i915#180] / [i915#636])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([fdo#111825]) +43 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_flip@2x-plain-flip-ts-check.html
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274]) +3 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb6/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][82] ([i915#180]) +4 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][83] ([i915#180])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-apl:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2642])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-snb:          NOTRUN -> [SKIP][85] ([fdo#109271]) +296 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271]) +166 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109280]) +35 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
    - shard-glk:          NOTRUN -> [SKIP][88] ([fdo#109271]) +88 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][89] -> [DMESG-WARN][90] ([i915#180]) +4 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][92] ([fdo#108145] / [i915#265]) +3 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][93] ([fdo#108145] / [i915#265])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][94] ([i915#265])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][95] ([i915#265]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][96] ([fdo#108145] / [i915#265]) +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#2733])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#658]) +4 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#2920]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-apl:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#658]) +5 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
    - shard-iclb:         NOTRUN -> [SKIP][101] ([i915#658])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-glk:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#658]) +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk2/igt@kms_psr2_su@frontbuffer.html
    - shard-tglb:         NOTRUN -> [SKIP][103] ([i915#1911])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb3/igt@kms_psr2_su@frontbuffer.html
    - shard-iclb:         NOTRUN -> [SKIP][104] ([fdo#109642] / [fdo#111068] / [i915#658])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][105] ([i915#132])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         NOTRUN -> [SKIP][106] ([fdo#109441]) +5 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][107] -> [SKIP][108] ([fdo#109441])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][109] ([i915#132] / [i915#3467]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][110] ([i915#180] / [i915#295])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([i915#2437])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb6/igt@kms_writeback@writeback-check-output.html
    - shard-kbl:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2437])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl2/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][113] ([i915#2437])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb2/igt@kms_writeback@writeback-check-output.html
    - shard-glk:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2437])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-glk9/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-apl:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2437])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2530]) +4 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb6/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([i915#2530]) +4 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@nouveau_crc@pipe-d-ctx-flip-skip-current-frame:
    - shard-iclb:         NOTRUN -> [SKIP][118] ([fdo#109278] / [i915#2530])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@nouveau_crc@pipe-d-ctx-flip-skip-current-frame.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-iclb:         NOTRUN -> [SKIP][119] ([fdo#109289])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb8/igt@perf@per-context-mode-unprivileged.html

  * igt@prime_nv_api@i915_nv_double_import:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([fdo#109291]) +3 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb5/igt@prime_nv_api@i915_nv_double_import.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][121] ([fdo#109271]) +308 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl1/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_pcopy@test3_4:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109291]) +5 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb1/igt@prime_nv_pcopy@test3_4.html

  * igt@sysfs_clients@create:
    - shard-tglb:         NOTRUN -> [SKIP][123] ([i915#2994]) +1 similar issue
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-tglb1/igt@sysfs_clients@create.html

  * igt@sysfs_clients@fair-7:
    - shard-apl:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#2994]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-apl8/igt@sysfs_clients@fair-7.html

  * igt@sysfs_clients@sema-25:
    - shard-kbl:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#2994]) +3 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-kbl3/igt@sysfs_clients@sema-25.html

  
#### Possible fixes ####

  * igt@gem_create@create-clear:
    - shard-iclb:         [FAIL][126] ([i915#3160]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6093/shard-iclb2/igt@gem_create@create-clear.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/shard-iclb7/igt@gem_create@create-clear.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][128] ([i915#2842]) -> [PASS][129] +1 similar iss

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5849/index.html

[-- Attachment #1.2: Type: text/html, Size: 34119 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

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

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

end of thread, other threads:[~2021-05-26 11:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26  7:20 [igt-dev] [PATCH i-g-t v4 0/5] PC state igt test Anshuman Gupta
2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 1/5] i915/i915_pm_rpm: Enable PC8+ residency test Anshuman Gupta
2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 2/5] i915/i915_pm_rpm: optimize modeset-pc8-residency-stress test Anshuman Gupta
2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 3/5] i915/i915_pm_rpm: gem-execbuf-stress PC8 timeout Anshuman Gupta
2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 4/5] i915/i915_pm_rpm: Add PC10 display off test Anshuman Gupta
2021-05-26  7:20 ` [igt-dev] [PATCH i-g-t v4 5/5] i915/i915_pm_rpm: Add PC10 idle display on test Anshuman Gupta
2021-05-26  9:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for PC state igt test (rev4) Patchwork
2021-05-26  9:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2021-05-26 11:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.