All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
@ 2021-01-19  8:42 ` Janusz Krzysztofik
  0 siblings, 0 replies; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-19  8:42 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Since igt_fixture sections are processed unconditionally regardless of
which subtest has been requested, they can now emit a lot of unrelated
debug messages which can make the picture less clear.  Avoid emitting
those messages from outside igt_subtest sections.

Move device close status prerequisite checks from igt_fixture sections
into subtest execution paths.  For simplicity, pass any device close
errors, including those from health checks, to next sections via a
single .fd.drm data structure field.

Moreover, postpone initial device health check until first actually
selected subtest is started.  In order to let that subtest skip on
unsuccessful initial health check, not fail, move the decision whether
to fail or skip on error from the health check helper to its users.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/core_hotunplug.c | 86 +++++++++++++++++++++++-------------------
 1 file changed, 48 insertions(+), 38 deletions(-)

diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 91506fa72..e7d2a4472 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -49,6 +49,7 @@ struct hotunplug {
 	} fd;	/* >= 0: valid fd, == -1: closed, < -1: close failed */
 	const char *dev_bus_addr;
 	const char *failure;
+	bool need_healthcheck;
 };
 
 /* Helpers */
@@ -210,6 +211,12 @@ static void cleanup(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "post ", "exercised ");
 	priv->fd.drm_hc = close_device(priv->fd.drm_hc, "post ",
 							"health checked ");
+	/* pass device close errors to next sections via priv->fd.drm */
+	if (priv->fd.drm_hc < -1) {
+		priv->fd.drm = priv->fd.drm_hc;
+		priv->fd.drm_hc = -1;
+	}
+
 	priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
 }
 
@@ -346,9 +353,9 @@ static void node_healthcheck(struct hotunplug *priv, unsigned flags)
 
 		priv->failure = "Device sysfs healthckeck failure!";
 		local_debug("%s\n", "running device sysfs healthcheck");
-		igt_assert(igt_sysfs_path(fd_drm, path, sizeof(path)));
-		igt_assert(igt_debugfs_path(fd_drm, path, sizeof(path)));
-		priv->failure = NULL;
+		if (igt_sysfs_path(fd_drm, path, sizeof(path)) &&
+		    igt_debugfs_path(fd_drm, path, sizeof(path)))
+			priv->failure = NULL;
 	}
 
 	fd_drm = close_device(fd_drm, "", "health checked ");
@@ -356,7 +363,7 @@ static void node_healthcheck(struct hotunplug *priv, unsigned flags)
 		priv->fd.drm_hc = fd_drm;
 }
 
-static void healthcheck(struct hotunplug *priv, bool recover)
+static bool healthcheck(struct hotunplug *priv, bool recover)
 {
 	/* device name may have changed, rebuild IGT device list */
 	igt_devices_scan(true);
@@ -366,8 +373,19 @@ static void healthcheck(struct hotunplug *priv, bool recover)
 		node_healthcheck(priv,
 				 FLAG_RENDER | (recover ? FLAG_RECOVER : 0));
 
-	/* not only request igt_abort on failure, also fail the health check */
-	igt_fail_on_f(priv->failure, "%s\n", priv->failure);
+	return !priv->failure;
+}
+
+static void pre_check(struct hotunplug *priv)
+{
+	igt_require(priv->fd.drm == -1);
+
+	if (priv->need_healthcheck) {
+		igt_require_f(healthcheck(priv, false), "%s\n", priv->failure);
+		priv->need_healthcheck = false;
+
+		igt_require(priv->fd.drm_hc == -1);
+	}
 }
 
 static void recover(struct hotunplug *priv)
@@ -386,7 +404,7 @@ static void recover(struct hotunplug *priv)
 		driver_bind(priv, 60);
 
 	if (priv->failure)
-		healthcheck(priv, true);
+		igt_assert_f(healthcheck(priv, true), "%s\n", priv->failure);
 }
 
 static void post_healthcheck(struct hotunplug *priv)
@@ -394,8 +412,6 @@ static void post_healthcheck(struct hotunplug *priv)
 	igt_abort_on_f(priv->failure, "%s\n", priv->failure);
 
 	cleanup(priv);
-	igt_require(priv->fd.drm == -1);
-	igt_require(priv->fd.drm_hc == -1);
 }
 
 static void set_filter_from_device(int fd)
@@ -417,32 +433,30 @@ static void set_filter_from_device(int fd)
 
 static void unbind_rebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
 
 	driver_unbind(priv, "", 0);
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void unplug_rescan(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
 
 	device_unplug(priv, "", 0);
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotunbind_rebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
 
 	driver_unbind(priv, "hot ", 0);
@@ -452,13 +466,13 @@ static void hotunbind_rebind(struct hotunplug *priv)
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotunplug_rescan(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
 
 	device_unplug(priv, "hot ", 0);
@@ -468,39 +482,39 @@ static void hotunplug_rescan(struct hotunplug *priv)
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotrebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
 
 	driver_unbind(priv, "hot ", 60);
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotreplug(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
 
 	device_unplug(priv, "hot ", 60);
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotrebind_lateclose(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
 
 	driver_unbind(priv, "hot ", 60);
@@ -510,13 +524,13 @@ static void hotrebind_lateclose(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
 	igt_assert_eq(priv->fd.drm, -1);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotreplug_lateclose(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
 
 	device_unplug(priv, "hot ", 60);
@@ -526,7 +540,7 @@ static void hotreplug_lateclose(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
 	igt_assert_eq(priv->fd.drm, -1);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 /* Main */
@@ -536,6 +550,7 @@ igt_main
 	struct hotunplug priv = {
 		.fd		= { .drm = -1, .drm_hc = -1, .sysfs_dev = -1, },
 		.failure	= NULL,
+		.need_healthcheck = true,
 	};
 
 	igt_fixture {
@@ -570,11 +585,6 @@ igt_main
 		igt_assert_eq(close_device(fd_drm, "", "selected "), -1);
 
 		prepare(&priv);
-
-		node_healthcheck(&priv, 0);
-		if (!priv.failure)
-			node_healthcheck(&priv, FLAG_RENDER);
-		igt_skip_on_f(priv.failure, "%s\n", priv.failure);
 	}
 
 	igt_subtest_group {
-- 
2.21.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
@ 2021-01-19  8:42 ` Janusz Krzysztofik
  0 siblings, 0 replies; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-19  8:42 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Since igt_fixture sections are processed unconditionally regardless of
which subtest has been requested, they can now emit a lot of unrelated
debug messages which can make the picture less clear.  Avoid emitting
those messages from outside igt_subtest sections.

Move device close status prerequisite checks from igt_fixture sections
into subtest execution paths.  For simplicity, pass any device close
errors, including those from health checks, to next sections via a
single .fd.drm data structure field.

Moreover, postpone initial device health check until first actually
selected subtest is started.  In order to let that subtest skip on
unsuccessful initial health check, not fail, move the decision whether
to fail or skip on error from the health check helper to its users.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/core_hotunplug.c | 86 +++++++++++++++++++++++-------------------
 1 file changed, 48 insertions(+), 38 deletions(-)

diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 91506fa72..e7d2a4472 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -49,6 +49,7 @@ struct hotunplug {
 	} fd;	/* >= 0: valid fd, == -1: closed, < -1: close failed */
 	const char *dev_bus_addr;
 	const char *failure;
+	bool need_healthcheck;
 };
 
 /* Helpers */
@@ -210,6 +211,12 @@ static void cleanup(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "post ", "exercised ");
 	priv->fd.drm_hc = close_device(priv->fd.drm_hc, "post ",
 							"health checked ");
+	/* pass device close errors to next sections via priv->fd.drm */
+	if (priv->fd.drm_hc < -1) {
+		priv->fd.drm = priv->fd.drm_hc;
+		priv->fd.drm_hc = -1;
+	}
+
 	priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
 }
 
@@ -346,9 +353,9 @@ static void node_healthcheck(struct hotunplug *priv, unsigned flags)
 
 		priv->failure = "Device sysfs healthckeck failure!";
 		local_debug("%s\n", "running device sysfs healthcheck");
-		igt_assert(igt_sysfs_path(fd_drm, path, sizeof(path)));
-		igt_assert(igt_debugfs_path(fd_drm, path, sizeof(path)));
-		priv->failure = NULL;
+		if (igt_sysfs_path(fd_drm, path, sizeof(path)) &&
+		    igt_debugfs_path(fd_drm, path, sizeof(path)))
+			priv->failure = NULL;
 	}
 
 	fd_drm = close_device(fd_drm, "", "health checked ");
@@ -356,7 +363,7 @@ static void node_healthcheck(struct hotunplug *priv, unsigned flags)
 		priv->fd.drm_hc = fd_drm;
 }
 
-static void healthcheck(struct hotunplug *priv, bool recover)
+static bool healthcheck(struct hotunplug *priv, bool recover)
 {
 	/* device name may have changed, rebuild IGT device list */
 	igt_devices_scan(true);
@@ -366,8 +373,19 @@ static void healthcheck(struct hotunplug *priv, bool recover)
 		node_healthcheck(priv,
 				 FLAG_RENDER | (recover ? FLAG_RECOVER : 0));
 
-	/* not only request igt_abort on failure, also fail the health check */
-	igt_fail_on_f(priv->failure, "%s\n", priv->failure);
+	return !priv->failure;
+}
+
+static void pre_check(struct hotunplug *priv)
+{
+	igt_require(priv->fd.drm == -1);
+
+	if (priv->need_healthcheck) {
+		igt_require_f(healthcheck(priv, false), "%s\n", priv->failure);
+		priv->need_healthcheck = false;
+
+		igt_require(priv->fd.drm_hc == -1);
+	}
 }
 
 static void recover(struct hotunplug *priv)
@@ -386,7 +404,7 @@ static void recover(struct hotunplug *priv)
 		driver_bind(priv, 60);
 
 	if (priv->failure)
-		healthcheck(priv, true);
+		igt_assert_f(healthcheck(priv, true), "%s\n", priv->failure);
 }
 
 static void post_healthcheck(struct hotunplug *priv)
@@ -394,8 +412,6 @@ static void post_healthcheck(struct hotunplug *priv)
 	igt_abort_on_f(priv->failure, "%s\n", priv->failure);
 
 	cleanup(priv);
-	igt_require(priv->fd.drm == -1);
-	igt_require(priv->fd.drm_hc == -1);
 }
 
 static void set_filter_from_device(int fd)
@@ -417,32 +433,30 @@ static void set_filter_from_device(int fd)
 
 static void unbind_rebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
 
 	driver_unbind(priv, "", 0);
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void unplug_rescan(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
 
 	device_unplug(priv, "", 0);
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotunbind_rebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
 
 	driver_unbind(priv, "hot ", 0);
@@ -452,13 +466,13 @@ static void hotunbind_rebind(struct hotunplug *priv)
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotunplug_rescan(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
 
 	device_unplug(priv, "hot ", 0);
@@ -468,39 +482,39 @@ static void hotunplug_rescan(struct hotunplug *priv)
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotrebind(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
 
 	driver_unbind(priv, "hot ", 60);
 
 	driver_bind(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotreplug(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
 
 	device_unplug(priv, "hot ", 60);
 
 	bus_rescan(priv, 0);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotrebind_lateclose(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
 
 	driver_unbind(priv, "hot ", 60);
@@ -510,13 +524,13 @@ static void hotrebind_lateclose(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
 	igt_assert_eq(priv->fd.drm, -1);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 static void hotreplug_lateclose(struct hotunplug *priv)
 {
-	igt_assert_eq(priv->fd.drm, -1);
-	igt_assert_eq(priv->fd.drm_hc, -1);
+	pre_check(priv);
+
 	priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
 
 	device_unplug(priv, "hot ", 60);
@@ -526,7 +540,7 @@ static void hotreplug_lateclose(struct hotunplug *priv)
 	priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
 	igt_assert_eq(priv->fd.drm, -1);
 
-	healthcheck(priv, false);
+	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
 }
 
 /* Main */
@@ -536,6 +550,7 @@ igt_main
 	struct hotunplug priv = {
 		.fd		= { .drm = -1, .drm_hc = -1, .sysfs_dev = -1, },
 		.failure	= NULL,
+		.need_healthcheck = true,
 	};
 
 	igt_fixture {
@@ -570,11 +585,6 @@ igt_main
 		igt_assert_eq(close_device(fd_drm, "", "selected "), -1);
 
 		prepare(&priv);
-
-		node_healthcheck(&priv, 0);
-		if (!priv.failure)
-			node_healthcheck(&priv, FLAG_RENDER);
-		igt_skip_on_f(priv.failure, "%s\n", priv.failure);
 	}
 
 	igt_subtest_group {
-- 
2.21.1

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

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

* Re: [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
@ 2021-01-19 11:08   ` Marcin Bernatowicz
  -1 siblings, 0 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2021-01-19 11:08 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: intel-gfx

On Tue, 2021-01-19 at 09:42 +0100, Janusz Krzysztofik wrote:
> Since igt_fixture sections are processed unconditionally regardless
> of
> which subtest has been requested, they can now emit a lot of
> unrelated
> debug messages which can make the picture less clear.  Avoid emitting
> those messages from outside igt_subtest sections.
> 
> Move device close status prerequisite checks from igt_fixture
> sections
> into subtest execution paths.  For simplicity, pass any device close
> errors, including those from health checks, to next sections via a
> single .fd.drm data structure field.
> 
> Moreover, postpone initial device health check until first actually
> selected subtest is started.  In order to let that subtest skip on
> unsuccessful initial health check, not fail, move the decision
> whether
> to fail or skip on error from the health check helper to its users.
> 
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com
> >
> ---
>  tests/core_hotunplug.c | 86 +++++++++++++++++++++++-----------------
> --
>  1 file changed, 48 insertions(+), 38 deletions(-)
> 
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 91506fa72..e7d2a4472 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -49,6 +49,7 @@ struct hotunplug {
>  	} fd;	/* >= 0: valid fd, == -1: closed, < -1: close failed
> */
>  	const char *dev_bus_addr;
>  	const char *failure;
> +	bool need_healthcheck;
>  };
>  
>  /* Helpers */
> @@ -210,6 +211,12 @@ static void cleanup(struct hotunplug *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "post ", "exercised
> ");
>  	priv->fd.drm_hc = close_device(priv->fd.drm_hc, "post ",
>  							"health checked
> ");
> +	/* pass device close errors to next sections via priv->fd.drm
> */
> +	if (priv->fd.drm_hc < -1) {
> +		priv->fd.drm = priv->fd.drm_hc;
> +		priv->fd.drm_hc = -1;
> +	}
> +
>  	priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
>  }
>  
> @@ -346,9 +353,9 @@ static void node_healthcheck(struct hotunplug
> *priv, unsigned flags)
>  
>  		priv->failure = "Device sysfs healthckeck failure!";
>  		local_debug("%s\n", "running device sysfs
> healthcheck");
> -		igt_assert(igt_sysfs_path(fd_drm, path, sizeof(path)));
> -		igt_assert(igt_debugfs_path(fd_drm, path,
> sizeof(path)));
> -		priv->failure = NULL;
> +		if (igt_sysfs_path(fd_drm, path, sizeof(path)) &&
> +		    igt_debugfs_path(fd_drm, path, sizeof(path)))
> +			priv->failure = NULL;
>  	}
>  
>  	fd_drm = close_device(fd_drm, "", "health checked ");
> @@ -356,7 +363,7 @@ static void node_healthcheck(struct hotunplug
> *priv, unsigned flags)
>  		priv->fd.drm_hc = fd_drm;
>  }
>  
> -static void healthcheck(struct hotunplug *priv, bool recover)
> +static bool healthcheck(struct hotunplug *priv, bool recover)
>  {
>  	/* device name may have changed, rebuild IGT device list */
>  	igt_devices_scan(true);
> @@ -366,8 +373,19 @@ static void healthcheck(struct hotunplug *priv,
> bool recover)
>  		node_healthcheck(priv,
>  				 FLAG_RENDER | (recover ? FLAG_RECOVER
> : 0));
>  
> -	/* not only request igt_abort on failure, also fail the health
> check */
> -	igt_fail_on_f(priv->failure, "%s\n", priv->failure);
> +	return !priv->failure;
> +}
> +
> +static void pre_check(struct hotunplug *priv)
> +{
> +	igt_require(priv->fd.drm == -1);
> +
> +	if (priv->need_healthcheck) {
> +		igt_require_f(healthcheck(priv, false), "%s\n", priv-
> >failure);
> +		priv->need_healthcheck = false;
> +
> +		igt_require(priv->fd.drm_hc == -1);
> +	}
>  }
>  
>  static void recover(struct hotunplug *priv)
> @@ -386,7 +404,7 @@ static void recover(struct hotunplug *priv)
>  		driver_bind(priv, 60);
>  
>  	if (priv->failure)
> -		healthcheck(priv, true);
> +		igt_assert_f(healthcheck(priv, true), "%s\n", priv-
> >failure);
>  }
>  
>  static void post_healthcheck(struct hotunplug *priv)
> @@ -394,8 +412,6 @@ static void post_healthcheck(struct hotunplug
> *priv)
>  	igt_abort_on_f(priv->failure, "%s\n", priv->failure);
>  
>  	cleanup(priv);
> -	igt_require(priv->fd.drm == -1);
> -	igt_require(priv->fd.drm_hc == -1);
>  }
>  
>  static void set_filter_from_device(int fd)
> @@ -417,32 +433,30 @@ static void set_filter_from_device(int fd)
>  
>  static void unbind_rebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
>  
>  	driver_unbind(priv, "", 0);
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void unplug_rescan(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
>  
>  	device_unplug(priv, "", 0);
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotunbind_rebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> unbind");
>  
>  	driver_unbind(priv, "hot ", 0);
> @@ -452,13 +466,13 @@ static void hotunbind_rebind(struct hotunplug
> *priv)
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotunplug_rescan(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> unplug");
>  
>  	device_unplug(priv, "hot ", 0);
> @@ -468,39 +482,39 @@ static void hotunplug_rescan(struct hotunplug
> *priv)
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotrebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> rebind");
>  
>  	driver_unbind(priv, "hot ", 60);
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotreplug(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> replug");
>  
>  	device_unplug(priv, "hot ", 60);
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotrebind_lateclose(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> rebind");
>  
>  	driver_unbind(priv, "hot ", 60);
> @@ -510,13 +524,13 @@ static void hotrebind_lateclose(struct
> hotunplug *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
>  	igt_assert_eq(priv->fd.drm, -1);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotreplug_lateclose(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> replug");
>  
>  	device_unplug(priv, "hot ", 60);
> @@ -526,7 +540,7 @@ static void hotreplug_lateclose(struct hotunplug
> *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
>  	igt_assert_eq(priv->fd.drm, -1);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  /* Main */
> @@ -536,6 +550,7 @@ igt_main
>  	struct hotunplug priv = {
>  		.fd		= { .drm = -1, .drm_hc = -1,
> .sysfs_dev = -1, },
>  		.failure	= NULL,
> +		.need_healthcheck = true,
>  	};
>  
>  	igt_fixture {
> @@ -570,11 +585,6 @@ igt_main
>  		igt_assert_eq(close_device(fd_drm, "", "selected "),
> -1);
>  
>  		prepare(&priv);
> -
> -		node_healthcheck(&priv, 0);
> -		if (!priv.failure)
> -			node_healthcheck(&priv, FLAG_RENDER);
> -		igt_skip_on_f(priv.failure, "%s\n", priv.failure);
>  	}
>  
>  	igt_subtest_group {

LGTM,
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
@ 2021-01-19 11:08   ` Marcin Bernatowicz
  0 siblings, 0 replies; 16+ messages in thread
From: Marcin Bernatowicz @ 2021-01-19 11:08 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: intel-gfx

On Tue, 2021-01-19 at 09:42 +0100, Janusz Krzysztofik wrote:
> Since igt_fixture sections are processed unconditionally regardless
> of
> which subtest has been requested, they can now emit a lot of
> unrelated
> debug messages which can make the picture less clear.  Avoid emitting
> those messages from outside igt_subtest sections.
> 
> Move device close status prerequisite checks from igt_fixture
> sections
> into subtest execution paths.  For simplicity, pass any device close
> errors, including those from health checks, to next sections via a
> single .fd.drm data structure field.
> 
> Moreover, postpone initial device health check until first actually
> selected subtest is started.  In order to let that subtest skip on
> unsuccessful initial health check, not fail, move the decision
> whether
> to fail or skip on error from the health check helper to its users.
> 
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com
> >
> ---
>  tests/core_hotunplug.c | 86 +++++++++++++++++++++++-----------------
> --
>  1 file changed, 48 insertions(+), 38 deletions(-)
> 
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 91506fa72..e7d2a4472 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -49,6 +49,7 @@ struct hotunplug {
>  	} fd;	/* >= 0: valid fd, == -1: closed, < -1: close failed
> */
>  	const char *dev_bus_addr;
>  	const char *failure;
> +	bool need_healthcheck;
>  };
>  
>  /* Helpers */
> @@ -210,6 +211,12 @@ static void cleanup(struct hotunplug *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "post ", "exercised
> ");
>  	priv->fd.drm_hc = close_device(priv->fd.drm_hc, "post ",
>  							"health checked
> ");
> +	/* pass device close errors to next sections via priv->fd.drm
> */
> +	if (priv->fd.drm_hc < -1) {
> +		priv->fd.drm = priv->fd.drm_hc;
> +		priv->fd.drm_hc = -1;
> +	}
> +
>  	priv->fd.sysfs_dev = close_sysfs(priv->fd.sysfs_dev);
>  }
>  
> @@ -346,9 +353,9 @@ static void node_healthcheck(struct hotunplug
> *priv, unsigned flags)
>  
>  		priv->failure = "Device sysfs healthckeck failure!";
>  		local_debug("%s\n", "running device sysfs
> healthcheck");
> -		igt_assert(igt_sysfs_path(fd_drm, path, sizeof(path)));
> -		igt_assert(igt_debugfs_path(fd_drm, path,
> sizeof(path)));
> -		priv->failure = NULL;
> +		if (igt_sysfs_path(fd_drm, path, sizeof(path)) &&
> +		    igt_debugfs_path(fd_drm, path, sizeof(path)))
> +			priv->failure = NULL;
>  	}
>  
>  	fd_drm = close_device(fd_drm, "", "health checked ");
> @@ -356,7 +363,7 @@ static void node_healthcheck(struct hotunplug
> *priv, unsigned flags)
>  		priv->fd.drm_hc = fd_drm;
>  }
>  
> -static void healthcheck(struct hotunplug *priv, bool recover)
> +static bool healthcheck(struct hotunplug *priv, bool recover)
>  {
>  	/* device name may have changed, rebuild IGT device list */
>  	igt_devices_scan(true);
> @@ -366,8 +373,19 @@ static void healthcheck(struct hotunplug *priv,
> bool recover)
>  		node_healthcheck(priv,
>  				 FLAG_RENDER | (recover ? FLAG_RECOVER
> : 0));
>  
> -	/* not only request igt_abort on failure, also fail the health
> check */
> -	igt_fail_on_f(priv->failure, "%s\n", priv->failure);
> +	return !priv->failure;
> +}
> +
> +static void pre_check(struct hotunplug *priv)
> +{
> +	igt_require(priv->fd.drm == -1);
> +
> +	if (priv->need_healthcheck) {
> +		igt_require_f(healthcheck(priv, false), "%s\n", priv-
> >failure);
> +		priv->need_healthcheck = false;
> +
> +		igt_require(priv->fd.drm_hc == -1);
> +	}
>  }
>  
>  static void recover(struct hotunplug *priv)
> @@ -386,7 +404,7 @@ static void recover(struct hotunplug *priv)
>  		driver_bind(priv, 60);
>  
>  	if (priv->failure)
> -		healthcheck(priv, true);
> +		igt_assert_f(healthcheck(priv, true), "%s\n", priv-
> >failure);
>  }
>  
>  static void post_healthcheck(struct hotunplug *priv)
> @@ -394,8 +412,6 @@ static void post_healthcheck(struct hotunplug
> *priv)
>  	igt_abort_on_f(priv->failure, "%s\n", priv->failure);
>  
>  	cleanup(priv);
> -	igt_require(priv->fd.drm == -1);
> -	igt_require(priv->fd.drm_hc == -1);
>  }
>  
>  static void set_filter_from_device(int fd)
> @@ -417,32 +433,30 @@ static void set_filter_from_device(int fd)
>  
>  static void unbind_rebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
>  
>  	driver_unbind(priv, "", 0);
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void unplug_rescan(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
>  
>  	device_unplug(priv, "", 0);
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotunbind_rebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> unbind");
>  
>  	driver_unbind(priv, "hot ", 0);
> @@ -452,13 +466,13 @@ static void hotunbind_rebind(struct hotunplug
> *priv)
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotunplug_rescan(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> unplug");
>  
>  	device_unplug(priv, "hot ", 0);
> @@ -468,39 +482,39 @@ static void hotunplug_rescan(struct hotunplug
> *priv)
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotrebind(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> rebind");
>  
>  	driver_unbind(priv, "hot ", 60);
>  
>  	driver_bind(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotreplug(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> replug");
>  
>  	device_unplug(priv, "hot ", 60);
>  
>  	bus_rescan(priv, 0);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotrebind_lateclose(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> rebind");
>  
>  	driver_unbind(priv, "hot ", 60);
> @@ -510,13 +524,13 @@ static void hotrebind_lateclose(struct
> hotunplug *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
>  	igt_assert_eq(priv->fd.drm, -1);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  static void hotreplug_lateclose(struct hotunplug *priv)
>  {
> -	igt_assert_eq(priv->fd.drm, -1);
> -	igt_assert_eq(priv->fd.drm_hc, -1);
> +	pre_check(priv);
> +
>  	priv->fd.drm = local_drm_open_driver(false, "", " for hot
> replug");
>  
>  	device_unplug(priv, "hot ", 60);
> @@ -526,7 +540,7 @@ static void hotreplug_lateclose(struct hotunplug
> *priv)
>  	priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
>  	igt_assert_eq(priv->fd.drm, -1);
>  
> -	healthcheck(priv, false);
> +	igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
>  }
>  
>  /* Main */
> @@ -536,6 +550,7 @@ igt_main
>  	struct hotunplug priv = {
>  		.fd		= { .drm = -1, .drm_hc = -1,
> .sysfs_dev = -1, },
>  		.failure	= NULL,
> +		.need_healthcheck = true,
>  	};
>  
>  	igt_fixture {
> @@ -570,11 +585,6 @@ igt_main
>  		igt_assert_eq(close_device(fd_drm, "", "selected "),
> -1);
>  
>  		prepare(&priv);
> -
> -		node_healthcheck(&priv, 0);
> -		if (!priv.failure)
> -			node_healthcheck(&priv, FLAG_RENDER);
> -		igt_skip_on_f(priv.failure, "%s\n", priv.failure);
>  	}
>  
>  	igt_subtest_group {

LGTM,
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>


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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
  (?)
  (?)
@ 2021-01-19 11:59 ` Patchwork
  2021-01-19 16:39   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-01-19 11:59 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: tests/core_hotunplug: Reduce debug noise on stdout
URL   : https://patchwork.freedesktop.org/series/86032/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9640 -> IGTPW_5402
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gem_contexts:
    - fi-byt-j1900:       NOTRUN -> [DMESG-FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@i915_selftest@live@gem_contexts.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@query-info:
    - fi-tgl-y:           NOTRUN -> [SKIP][2] ([fdo#109315] / [i915#2575])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@amdgpu/amd_basic@query-info.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][3] ([fdo#109271]) +22 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-bdw-5557u:       NOTRUN -> [WARN][4] ([i915#2283])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html

  * igt@debugfs_test@read_all_entries:
    - fi-tgl-y:           [PASS][5] -> [DMESG-WARN][6] ([i915#402]) +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@debugfs_test@read_all_entries.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@debugfs_test@read_all_entries.html

  * igt@gem_huc_copy@huc-copy:
    - fi-byt-j1900:       NOTRUN -> [SKIP][7] ([fdo#109271]) +27 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@gem_huc_copy@huc-copy.html

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

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
    - fi-bsw-kefka:       [PASS][9] -> [FAIL][10] ([i915#2122])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-byt-j1900:       NOTRUN -> [FAIL][11] ([i915#49])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@prime_vgem@basic-fence-flip:
    - fi-tgl-y:           [DMESG-WARN][12] ([i915#402]) -> [PASS][13] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49


Participating hosts (42 -> 37)
------------------------------

  Additional (1): fi-byt-j1900 
  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_5960 -> IGTPW_5402

  CI-20190529: 20190529
  CI_DRM_9640: e4a7b069614eee3e01353d8529d5cf8b924feeec @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
  IGT_5960: ace82fcd5f3623f8dde7c220a825873dc53dfae4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 5907 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] 16+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19 11:59 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2021-01-19 16:39   ` Janusz Krzysztofik
  2021-01-19 16:51     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-19 16:39 UTC (permalink / raw)
  To: igt-dev; +Cc: Lakshminarayana Vudum


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

On Tue, 2021-01-19 at 11:59 +0000, Patchwork wrote:
> 
> Patch Details
> 
> Series:tests/core_hotunplug: Reduce debug noise on stdout
> URL:https://patchwork.freedesktop.org/series/86032/
> State:failure
> 
>     Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
> 
> 
> 
> 
>     CI Bug Log - changes from CI_DRM_9640 -> IGTPW_5402
> Summary
> FAILURE
> 
> Serious unknown changes coming with IGTPW_5402 absolutely need to be
> 
>   verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> 
>   introduced in IGTPW_5402, 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_5402/index.html
> 
> Possible new issues
> Here are the unknown changes that may have been introduced in IGTPW_5402:
> 
> IGT changes
> Possible regressions
> 
> igt@i915_selftest@live@gem_contexts:
> fi-byt-j1900:       NOTRUN -> DMESG-FAIL

The change didn't touch i915_selftest, many  tests executed in that run after core_hotunplug, including i915_module_load, succeeded, then the change couldn't be responsible for this failure.
Thanks,Janusz
> 
> 
> Known issues
> Here are the changes found in IGTPW_5402 that come from known issues:
> IGT changes
> Issues hit
> 
> 
> igt@amdgpu/amd_basic@query-info:
> 
> fi-tgl-y:           NOTRUN -> SKIP (fdo#109315 / i915#2575)
> 
> 
> 
> igt@amdgpu/amd_basic@semaphore:
> 
> fi-bdw-5557u:       NOTRUN -> SKIP (fdo#109271) +22 similar issues
> 
> 
> 
> igt@core_hotunplug@unbind-rebind:
> 
> fi-bdw-5557u:       NOTRUN -> WARN (i915#2283)
> 
> 
> 
> igt@debugfs_test@read_all_entries:
> 
> fi-tgl-y:           PASS -> DMESG-WARN (i915#402) +2 similar issues
> 
> 
> 
> igt@gem_huc_copy@huc-copy:
> 
> fi-byt-j1900:       NOTRUN -> SKIP (fdo#109271) +27 similar issues
> 
> 
> 
> igt@kms_chamelium@hdmi-crc-fast:
> 
> fi-byt-j1900:       NOTRUN -> SKIP (fdo#109271 / fdo#111827) +8 similar issues
> 
> 
> 
> igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
> 
> fi-bsw-kefka:       PASS -> FAIL (i915#2122)
> 
> 
> 
> igt@kms_frontbuffer_tracking@basic:
> 
> fi-byt-j1900:       NOTRUN -> FAIL (i915#49)
> 
> 
> 
> Possible fixes
> 
> igt@prime_vgem@basic-fence-flip:
> fi-tgl-y:           DMESG-WARN (i915#402) -> PASS +1 similar issue
> 
> 
> 
> Participating hosts (42 -> 37)
> Additional (1): fi-byt-j1900 
> 
>   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_5960 -> IGTPW_5402
> 
> CI-20190529: 20190529
> 
>   CI_DRM_9640: e4a7b069614eee3e01353d8529d5cf8b924feeec @ git://anongit.freedesktop.org/gfx-ci/linux
> 
>   IGTPW_5402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
> 
>   IGT_5960: ace82fcd5f3623f8dde7c220a825873dc53dfae4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> 
> 

[-- Attachment #1.2: Type: text/html, Size: 6683 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] 16+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  (?)
@ 2021-01-19 16:49 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-01-19 16:49 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: tests/core_hotunplug: Reduce debug noise on stdout
URL   : https://patchwork.freedesktop.org/series/86032/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9640 -> IGTPW_5402
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@query-info:
    - fi-tgl-y:           NOTRUN -> [SKIP][1] ([fdo#109315] / [i915#2575])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@amdgpu/amd_basic@query-info.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][2] ([fdo#109271]) +22 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-bdw-5557u:       NOTRUN -> [WARN][3] ([i915#2283])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html

  * igt@debugfs_test@read_all_entries:
    - fi-tgl-y:           [PASS][4] -> [DMESG-WARN][5] ([i915#402]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@debugfs_test@read_all_entries.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@debugfs_test@read_all_entries.html

  * igt@gem_huc_copy@huc-copy:
    - fi-byt-j1900:       NOTRUN -> [SKIP][6] ([fdo#109271]) +27 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@gem_huc_copy@huc-copy.html

  * igt@i915_selftest@live@gem_contexts:
    - fi-byt-j1900:       NOTRUN -> [DMESG-FAIL][7] ([i915#2958])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@i915_selftest@live@gem_contexts.html

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

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
    - fi-bsw-kefka:       [PASS][9] -> [FAIL][10] ([i915#2122])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-byt-j1900:       NOTRUN -> [FAIL][11] ([i915#49])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@prime_vgem@basic-fence-flip:
    - fi-tgl-y:           [DMESG-WARN][12] ([i915#402]) -> [PASS][13] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2958]: https://gitlab.freedesktop.org/drm/intel/issues/2958
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49


Participating hosts (42 -> 37)
------------------------------

  Additional (1): fi-byt-j1900 
  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_5960 -> IGTPW_5402

  CI-20190529: 20190529
  CI_DRM_9640: e4a7b069614eee3e01353d8529d5cf8b924feeec @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
  IGT_5960: ace82fcd5f3623f8dde7c220a825873dc53dfae4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 5512 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] 16+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19 16:39   ` Janusz Krzysztofik
@ 2021-01-19 16:51     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 16+ messages in thread
From: Vudum, Lakshminarayana @ 2021-01-19 16:51 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev


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

Re-reported.

From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Sent: Tuesday, January 19, 2021 9:39 AM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.BAT: failure for tests/core_hotunplug: Reduce debug noise on stdout

On Tue, 2021-01-19 at 11:59 +0000, Patchwork wrote:
Patch Details
Series:

tests/core_hotunplug: Reduce debug noise on stdout

URL:

https://patchwork.freedesktop.org/series/86032/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html

CI Bug Log - changes from CI_DRM_9640 -> IGTPW_5402
Summary

FAILURE

Serious unknown changes coming with IGTPW_5402 absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5402, 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_5402/index.html

Possible new issues

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

IGT changes
Possible regressions

  *   igt@i915<mailto:igt@i915>_selftest@live@gem_contexts:

     *   fi-byt-j1900: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@i915_selftest@live@gem_contexts.html>

The change didn't touch i915_selftest, many tests executed in that run after core_hotunplug, including i915_module_load, succeeded, then the change couldn't be responsible for this failure.

Thanks,
Janusz


  *

Known issues

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

IGT changes
Issues hit

  *   igt@amdgpu/amd_basic@query-info:

     *   fi-tgl-y: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@amdgpu/amd_basic@query-info.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>)

  *   igt@amdgpu/amd_basic@semaphore:

     *   fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22 similar issues

  *   igt@core_hotunplug@unbind-rebind:

     *   fi-bdw-5557u: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html> (i915#2283<https://gitlab.freedesktop.org/drm/intel/issues/2283>)

  *   igt@debugfs_test@read_all_entries:

     *   fi-tgl-y: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@debugfs_test@read_all_entries.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@debugfs_test@read_all_entries.html> (i915#402<https://gitlab.freedesktop.org/drm/intel/issues/402>) +2 similar issues

  *   igt@gem_huc_copy@huc-copy:

     *   fi-byt-j1900: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +27 similar issues

  *   igt@kms_chamelium@hdmi-crc-fast:

     *   fi-byt-j1900: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues

  *   igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:

     *   fi-bsw-kefka: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-bsw-kefka/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>)

  *   igt@kms_frontbuffer_tracking@basic:

     *   fi-byt-j1900: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-byt-j1900/igt@kms_frontbuffer_tracking@basic.html> (i915#49<https://gitlab.freedesktop.org/drm/intel/issues/49>)

Possible fixes

  *   igt@prime_vgem@basic-fence-flip:

     *   fi-tgl-y: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html> (i915#402<https://gitlab.freedesktop.org/drm/intel/issues/402>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/fi-tgl-y/igt@prime_vgem@basic-fence-flip.html> +1 similar issue

Participating hosts (42 -> 37)

Additional (1): fi-byt-j1900
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_5960 -> IGTPW_5402

CI-20190529: 20190529
CI_DRM_9640: e4a7b069614eee3e01353d8529d5cf8b924feeec @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5402: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
IGT_5960: ace82fcd5f3623f8dde7c220a825873dc53dfae4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

[-- Attachment #1.2: Type: text/html, Size: 24658 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] 16+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
                   ` (3 preceding siblings ...)
  (?)
@ 2021-01-19 18:38 ` Patchwork
  2021-01-20  9:36   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-01-19 18:38 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: tests/core_hotunplug: Reduce debug noise on stdout
URL   : https://patchwork.freedesktop.org/series/86032/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@pipe-c-legacy-gamma-reset:
    - shard-kbl:          [PASS][1] -> [FAIL][2] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-apl:          [PASS][3] -> [FAIL][4] +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-glk:          [PASS][5] -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-hsw:          [PASS][7] -> [FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-iclb:         [PASS][9] -> [DMESG-WARN][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_hdr@bpc-switch-suspend.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_hdr@bpc-switch-suspend.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-hostile:
    - shard-hsw:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +3 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_ctx_persistence@engines-hostile.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][12] -> [FAIL][13] ([i915#2846])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs1.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2389]) +4 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@gem_exec_reloc@basic-many-active@rcs0.html
    - shard-hsw:          [PASS][21] -> [FAIL][22] ([i915#2389])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@bcs0:
    - shard-hsw:          NOTRUN -> [FAIL][23] ([i915#2389]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_exec_reloc@basic-wide-active@bcs0.html

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - shard-glk:          [PASS][24] -> [DMESG-WARN][25] ([i915#118] / [i915#95])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@gem_exec_whisper@basic-queues-priority-all.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_exec_whisper@basic-queues-priority-all.html

  * igt@gem_pread@exhaustion:
    - shard-hsw:          NOTRUN -> [WARN][26] ([i915#2658])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_pread@exhaustion.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][27] ([fdo#109271]) +6 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#768])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
    - shard-kbl:          NOTRUN -> [SKIP][29] ([fdo#109271]) +31 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#110426] / [i915#1704])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#110426] / [i915#1704])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][32] -> [DMESG-WARN][33] ([i915#1436] / [i915#716])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@gen9_exec_parse@allowed-all.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [PASS][34] -> [INCOMPLETE][35] ([i915#2880])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#111644] / [i915#1397] / [i915#2411])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@pm-tiling:
    - shard-kbl:          [PASS][37] -> [SKIP][38] ([fdo#109271])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@i915_pm_rpm@pm-tiling.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-apl:          [PASS][39] -> [SKIP][40] ([fdo#109271])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@i915_pm_rpm@pm-tiling.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-tglb:         [PASS][41] -> [SKIP][42] ([i915#579])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@i915_pm_rpm@pm-tiling.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@i915_pm_rpm@pm-tiling.html
    - shard-glk:          [PASS][43] -> [SKIP][44] ([fdo#109271])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk2/igt@i915_pm_rpm@pm-tiling.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@i915_pm_rpm@pm-tiling.html
    - shard-iclb:         [PASS][45] -> [SKIP][46] ([i915#579])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@i915_pm_rpm@pm-tiling.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@i915_pm_rpm@pm-tiling.html

  * igt@i915_selftest@live@active:
    - shard-iclb:         [PASS][47] -> [DMESG-FAIL][48] ([i915#2291])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb8/igt@i915_selftest@live@active.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@i915_selftest@live@active.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#111614])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109278]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_ccs@pipe-d-missing-ccs-buffer.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html
    - shard-glk:          NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_chamelium@dp-frame-dump.html
    - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_chamelium@dp-frame-dump.html
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_chamelium@dp-frame-dump.html
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_color_chamelium@pipe-c-ctm-limited-range:
    - shard-hsw:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html

  * igt@kms_content_protection@atomic:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111828])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109279])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#111825]) +12 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#109278])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-iclb:         [PASS][61] -> [INCOMPLETE][62] ([i915#1185])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-tglb:         [PASS][63] -> [INCOMPLETE][64] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411] / [i915#456])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
    - shard-hsw:          [PASS][65] -> [INCOMPLETE][66] ([i915#2055] / [i915#2295])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][67] -> [INCOMPLETE][68] ([i915#155])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-apl:          [PASS][69] -> [DMESG-WARN][70] ([i915#2635])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-hsw:          NOTRUN -> [SKIP][71] ([fdo#109271]) +213 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109280]) +2 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
    - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271]) +8 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][74] -> [INCOMPLETE][75] ([i915#155] / [i915#2828])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
    - shard-apl:          [PASS][76] -> [DMESG-FAIL][77] ([i915#1188])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl3/igt@kms_hdr@bpc-switch-suspend.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-glk:          [PASS][78] -> [DMESG-WARN][79] ([i915#2635]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@kms_hdr@bpc-switch-suspend.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_hdr@bpc-switch-suspend.html
    - shard-hsw:          [PASS][80] -> [DMESG-WARN][81] ([i915#2637])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-tglb:         [PASS][82] -> [DMESG-WARN][83] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109289])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#533])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#533]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-hsw:          NOTRUN -> [DMESG-WARN][88] ([i915#2637])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-kbl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#2920])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [PASS][91] -> [SKIP][92] ([fdo#109441]) +2 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2530])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#109291]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb3/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@runner@aborted:
    - shard-hsw:          NOTRUN -> ([FAIL][95], [FAIL][96]) ([fdo#109271] / [i915#2295] / [i915#2505])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@runner@aborted.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-glk:          [TIMEOUT][97] ([i915#2918]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk1/igt@gem_ctx_persistence@close-replace-race.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_exec_balancer@waits:
    - shard-tglb:         [INCOMPLETE][99] ([i915#2931]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@gem_exec_balancer@waits.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@gem_exec_balancer@waits.html

  * igt@gem_exec_endless@dispatch@vcs0:
    - shard-iclb:         [INCOMPLETE][101] -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@gem_exec_endless@dispatch@vcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@gem_exec_endless@dispatch@vcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [FAIL][103] -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-tglb:         [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][107] ([i915#2842]) -> [PASS][108] +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vecs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][109] ([i915#454]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-tglb:         [FAIL][111] ([i915#2598]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-kbl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-snb:          [SKIP][115] ([fdo#109271]) -> [PASS][116] +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][117] ([fdo#109441]) -> [PASS][118] +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-hsw:          [INCOMPLETE][119] -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@tools_test@sysfs_l3_parity.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@tools_test@sysfs_l3_parity.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][121] ([i915#2842]) -> [FAIL][122] ([i915#2852])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][123] ([i915#1804] / [i915#2684]) -> [WARN][124] ([i915#2681] / [i915#2684])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][125] ([i915#2920]) -> [SKIP][126] ([i915#658])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][127] ([i915#658]) -> [SKIP][128] ([i915#2920]) +1 similar issue
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@runner@aborted:
    - shard-iclb:         [FAIL][129] ([i915#2295] / [i915#2724]) -> ([FAIL][130], [FAIL][131], [FAIL][132]) ([i915#1814] / [i915#2295] / [i915#2724])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
    - shard-apl:          [FAIL][133] ([i915#2295]) -> ([FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#1814] / [i915#2295])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl2/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl3/igt@runner@aborted.html
    - shard-glk:          [FAIL][137] ([i915#2295] / [k.org#202321]) -> ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141]) ([i915#1814] / [i915#2295] / [k.org#202321])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk7/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk7/igt@runner@aborted.html
    - shard-tglb:         [FAIL][142] ([i915#2295] / [i915#2667]) -> ([FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1602] / [i915#1814] / [i915#2295] / [i915#2667])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb1/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110426]: https://bugs.freedesktop.org/show_bug.cgi?id=110426
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1704]: https://gitlab.freedesktop.org/drm/intel/issues/1704
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887
  [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598
  [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
  [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2667]: https://gitlab.freedesktop.org/drm/intel/issues/2667
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
  [i915#2828]: https://gitlab.freedesktop.org/drm/intel/issues/2828
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 36626 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] 16+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19 18:38 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-01-20  9:36   ` Janusz Krzysztofik
  0 siblings, 0 replies; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-20  9:36 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana


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

On Tue, 2021-01-19 at 18:38 +0000, Patchwork wrote:



Patch DetailsSeries:tests/core_hotunplug: Reduce debug noise on stdoutURL:https://patchwork.freedesktop.org/series/86032/State:failure

    Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html




    CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_fullSummaryFAILURE
Serious unknown changes coming with IGTPW_5402_full absolutely need to be

  verified manually.
If you think the reported changes have nothing to do with the changes

  introduced in IGTPW_5402_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_5402/index.html
Possible new issuesHere are the unknown changes that may have been introduced in IGTPW_5402_full:
IGT changesPossible regressions * 
igt@kms_color@pipe-c-legacy-gamma-reset:


shard-kbl:          PASS -> FAIL +1 similar issue


shard-apl:          PASS -> FAIL +1 similar issue


shard-glk:          PASS -> FAIL


shard-hsw:          PASS -> FAIL



 * 

Out of scope of the change, modified test (core_hotunplug) not executed
within the same run - false positive.
> igt@kms_hdr@bpc-switch-suspend:
> 
> shard-iclb:         PASS -> DMESG-WARN
> 
> 
> 
> 

ditto

Thanks,
Janusz

Known issuesHere are the changes found in IGTPW_5402_full that come from known issues:
IGT changesIssues hit * 
igt@gem_ctx_persistence@engines-hostile:

shard-hsw:          NOTRUN -> SKIP (fdo#109271 / i915#1099) +3 similar issues


 * 
igt@gem_exec_fair@basic-deadline:

shard-kbl:          PASS -> FAIL ([i915#2846])


 * 
igt@gem_exec_fair@basic-pace@vcs0:

shard-kbl:          PASS -> FAIL (i915#2842)


 * 
igt@gem_exec_fair@basic-pace@vcs1:

shard-tglb:         PASS -> FAIL (i915#2842)


 * 
igt@gem_exec_fair@basic-throttle@rcs0:

shard-iclb:         PASS -> FAIL (i915#2842)


 * 
igt@gem_exec_reloc@basic-many-active@rcs0:


shard-tglb:         NOTRUN -> FAIL (i915#2389) +4 similar issues


shard-hsw:          PASS -> FAIL (i915#2389)



 * 
igt@gem_exec_reloc@basic-wide-active@bcs0:

shard-hsw:          NOTRUN -> FAIL (i915#2389) +3 similar issues


 * 
igt@gem_exec_whisper@basic-queues-priority-all:

shard-glk:          PASS -> DMESG-WARN (i915#118 / [i915#95])


 * 
igt@gem_pread@exhaustion:

shard-hsw:          NOTRUN -> WARN (i915#2658)


 * 
igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:


shard-glk:          NOTRUN -> SKIP (fdo#109271) +6 similar issues


shard-iclb:         NOTRUN -> SKIP ([i915#768])



 * 
igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:

shard-kbl:          NOTRUN -> SKIP (fdo#109271) +31 similar issues


 * 
igt@gem_userptr_blits@readonly-pwrite-unsync:


shard-tglb:         NOTRUN -> SKIP (fdo#110426 / i915#1704)


shard-iclb:         NOTRUN -> SKIP (fdo#110426 / i915#1704)



 * 
igt@gen9_exec_parse@allowed-all:

shard-glk:          PASS -> DMESG-WARN (i915#1436 / [i915#716])


 * 
igt@i915_module_load@reload-with-fault-injection:

shard-snb:          PASS -> INCOMPLETE ([i915#2880])


 * 
igt@i915_pm_rpm@dpms-non-lpsp:

shard-tglb:         NOTRUN -> SKIP (fdo#111644 / i915#1397 / i915#2411)


 * 
igt@i915_pm_rpm@pm-tiling:


shard-kbl:          PASS -> SKIP (fdo#109271)


shard-apl:          PASS -> SKIP (fdo#109271)


shard-tglb:         PASS -> SKIP ([i915#579])


shard-glk:          PASS -> SKIP (fdo#109271)


shard-iclb:         PASS -> SKIP ([i915#579])



 * 
igt@i915_selftest@live@active:

shard-iclb:         PASS -> DMESG-FAIL (i915#2291)


 * 
igt@kms_big_fb@y-tiled-8bpp-rotate-90:

shard-tglb:         NOTRUN -> SKIP (fdo#111614)


 * 
igt@kms_ccs@pipe-d-missing-ccs-buffer:

shard-iclb:         NOTRUN -> SKIP (fdo#109278) +2 similar issues


 * 
igt@kms_chamelium@dp-frame-dump:


shard-iclb:         NOTRUN -> SKIP (fdo#109284 / fdo#111827)


shard-glk:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)


shard-kbl:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)


shard-tglb:         NOTRUN -> SKIP (fdo#109284 / fdo#111827) +2 similar issues


shard-apl:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)



 * 
igt@kms_color_chamelium@pipe-c-ctm-limited-range:

shard-hsw:          NOTRUN -> SKIP (fdo#109271 / fdo#111827) +13 similar issues


 * 
igt@kms_content_protection@atomic:

shard-tglb:         NOTRUN -> SKIP (fdo#111828)


 * 
igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:

shard-tglb:         NOTRUN -> SKIP (fdo#109279)


 * 
igt@kms_cursor_legacy@cursora-vs-flipb-atomic:


shard-tglb:         NOTRUN -> SKIP (fdo#111825) +12 similar issues


shard-iclb:         NOTRUN -> SKIP (fdo#109274 / fdo#109278)



 * 
igt@kms_fbcon_fbt@psr-suspend:


shard-iclb:         PASS -> INCOMPLETE (i915#1185)


shard-tglb:         PASS -> INCOMPLETE (i915#1436 / i915#1602 / i915#1887 / i915#2411 / [i915#456])



 * 
igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:

shard-hsw:          PASS -> INCOMPLETE (i915#2055 / i915#2295)


 * 
igt@kms_frontbuffer_tracking@fbc-suspend:


shard-kbl:          PASS -> INCOMPLETE (i915#155)


shard-apl:          PASS -> DMESG-WARN (i915#2635)



 * 
igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:

shard-hsw:          NOTRUN -> SKIP (fdo#109271) +213 similar issues


 * 
igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:


shard-iclb:         NOTRUN -> SKIP (fdo#109280) +2 similar issues


shard-apl:          NOTRUN -> SKIP (fdo#109271) +8 similar issues



 * 
igt@kms_hdr@bpc-switch-suspend:


shard-kbl:          PASS -> INCOMPLETE (i915#155 / i915#2828)


shard-apl:          PASS -> DMESG-FAIL (i915#1188)


shard-glk:          PASS -> DMESG-WARN (i915#2635) +1 similar issue


shard-hsw:          PASS -> DMESG-WARN (i915#2637)


shard-tglb:         PASS -> DMESG-WARN (i915#1436 / i915#1602 / i915#1887 / i915#2411)



 * 
igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:

shard-tglb:         NOTRUN -> SKIP (fdo#109289)


 * 
igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:


shard-glk:          NOTRUN -> SKIP (fdo#109271 / [i915#533])


shard-apl:          NOTRUN -> SKIP (fdo#109271 / [i915#533])



 * 
igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:

shard-kbl:          NOTRUN -> SKIP (fdo#109271 / [i915#533]) +1 similar issue


 * 
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:

shard-hsw:          NOTRUN -> DMESG-WARN (i915#2637)


 * 
igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:

shard-kbl:          NOTRUN -> SKIP (fdo#109271 / [i915#658])


 * 
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:

shard-tglb:         NOTRUN -> SKIP ([i915#2920])


 * 
igt@kms_psr@psr2_cursor_mmap_cpu:

shard-iclb:         PASS -> SKIP (fdo#109441) +2 similar issues


 * 
igt@nouveau_crc@pipe-d-ctx-flip-detection:

shard-tglb:         NOTRUN -> SKIP (i915#2530)


 * 
igt@prime_nv_test@i915_blt_fill_nv_read:

shard-tglb:         NOTRUN -> SKIP (fdo#109291) +1 similar issue


 * 
igt@runner@aborted:

shard-hsw:          NOTRUN -> (FAIL, FAIL) (fdo#109271 / i915#2295 / i915#2505)



Possible fixes * 
igt@gem_ctx_persistence@close-replace-race:

shard-glk:          TIMEOUT ([i915#2918]) -> PASS


 * 
igt@gem_exec_balancer@waits:

shard-tglb:         INCOMPLETE ([i915#2931]) -> PASS


 * 
igt@gem_exec_endless@dispatch@vcs0:

shard-iclb:         INCOMPLETE -> PASS


 * 
igt@gem_exec_fair@basic-pace@rcs0:

shard-kbl:          FAIL -> PASS


 * 
igt@gem_exec_fair@basic-pace@vcs0:

shard-tglb:         FAIL (i915#2842) -> PASS


 * 
igt@gem_exec_fair@basic-pace@vecs0:

shard-kbl:          FAIL (i915#2842) -> PASS +2 similar issues


 * 
igt@i915_pm_dc@dc6-psr:

shard-iclb:         FAIL ([i915#454]) -> PASS


 * 
igt@kms_flip@flip-vs-expired-vblank@a-edp1:

shard-tglb:         FAIL (i915#2598) -> PASS


 * 
igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:

shard-kbl:          DMESG-WARN (i915#180) -> PASS


 * 
igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:

shard-snb:          SKIP (fdo#109271) -> PASS +3 similar issues


 * 
igt@kms_psr@psr2_cursor_render:

shard-iclb:         SKIP (fdo#109441) -> PASS +2 similar issues


 * 
igt@tools_test@sysfs_l3_parity:

shard-hsw:          INCOMPLETE -> PASS



Warnings * 
igt@gem_exec_fair@basic-none-rrul@rcs0:

shard-iclb:         FAIL (i915#2842) -> FAIL ([i915#2852])


 * 
igt@i915_pm_rc6_residency@rc6-idle:

shard-iclb:         WARN (i915#1804 / i915#2684) -> WARN (i915#2681 / i915#2684)


 * 
igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:

shard-iclb:         SKIP ([i915#2920]) -> SKIP ([i915#658])


 * 
igt@kms_psr2_sf@plane-move-sf-dmg-area-0:

shard-iclb:         SKIP ([i915#658]) -> SKIP ([i915#2920]) +1 similar issue


 * 
igt@runner@aborted:


shard-iclb:         FAIL (i915#2295 / i915#2724) -> (FAIL, FAIL, FAIL) (i915#1814 / i915#2295 / i915#2724)


shard-apl:          FAIL (i915#2295) -> (FAIL, FAIL, FAIL) (fdo#109271 / i915#1814 / i915#2295)


shard-glk:          FAIL (i915#2295 / [k.org#202321]) -> (FAIL, FAIL, FAIL, FAIL) (i915#1814 / i915#2295 / [k.org#202321])


shard-tglb:         FAIL (i915#2295 / i915#2667) -> (FAIL, FAIL, FAIL) (i915#1602 / i915#1814 / i915#2295 / i915#2667)




[i915#2846





[-- Attachment #1.2: Type: text/html, Size: 37821 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] 16+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
                   ` (4 preceding siblings ...)
  (?)
@ 2021-01-20 15:58 ` Patchwork
  2021-01-20 16:10   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-01-20 15:58 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: tests/core_hotunplug: Reduce debug noise on stdout
URL   : https://patchwork.freedesktop.org/series/86032/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@pipe-b-legacy-gamma-reset:
    - shard-apl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_color@pipe-b-legacy-gamma-reset.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html
    - shard-kbl:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-b-legacy-gamma-reset.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-hostile:
    - shard-hsw:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_ctx_persistence@engines-hostile.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][6] -> [FAIL][7] ([i915#2846])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][12] -> [FAIL][13] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][14] ([i915#2389]) +4 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@gem_exec_reloc@basic-many-active@rcs0.html
    - shard-hsw:          [PASS][15] -> [FAIL][16] ([i915#2389])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@bcs0:
    - shard-hsw:          NOTRUN -> [FAIL][17] ([i915#2389]) +3 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_exec_reloc@basic-wide-active@bcs0.html

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / [i915#95])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@gem_exec_whisper@basic-queues-priority-all.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_exec_whisper@basic-queues-priority-all.html

  * igt@gem_pread@exhaustion:
    - shard-hsw:          NOTRUN -> [WARN][20] ([i915#2658])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_pread@exhaustion.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][21] ([fdo#109271]) +6 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#768])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271]) +31 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([fdo#110426] / [i915#1704])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#110426] / [i915#1704])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][26] -> [DMESG-WARN][27] ([i915#1436] / [i915#716])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@gen9_exec_parse@allowed-all.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [PASS][28] -> [INCOMPLETE][29] ([i915#2880])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111644] / [i915#1397] / [i915#2411])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@pm-tiling:
    - shard-kbl:          [PASS][31] -> [SKIP][32] ([fdo#109271])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@i915_pm_rpm@pm-tiling.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-apl:          [PASS][33] -> [SKIP][34] ([fdo#109271])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@i915_pm_rpm@pm-tiling.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-tglb:         [PASS][35] -> [SKIP][36] ([i915#579])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@i915_pm_rpm@pm-tiling.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@i915_pm_rpm@pm-tiling.html
    - shard-glk:          [PASS][37] -> [SKIP][38] ([fdo#109271])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk2/igt@i915_pm_rpm@pm-tiling.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@i915_pm_rpm@pm-tiling.html
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([i915#579])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@i915_pm_rpm@pm-tiling.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@i915_pm_rpm@pm-tiling.html

  * igt@i915_selftest@live@active:
    - shard-iclb:         [PASS][41] -> [DMESG-FAIL][42] ([i915#2291])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb8/igt@i915_selftest@live@active.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@i915_selftest@live@active.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111614])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109278]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_ccs@pipe-d-missing-ccs-buffer.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html
    - shard-glk:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_chamelium@dp-frame-dump.html
    - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_chamelium@dp-frame-dump.html
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_chamelium@dp-frame-dump.html
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_color@pipe-c-legacy-gamma-reset:
    - shard-kbl:          [PASS][50] -> [FAIL][51] ([i915#2964])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-apl:          [PASS][52] -> [FAIL][53] ([i915#2964])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#2964])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-hsw:          [PASS][56] -> [FAIL][57] ([i915#2964])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html

  * igt@kms_color_chamelium@pipe-c-ctm-limited-range:
    - shard-hsw:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html

  * igt@kms_content_protection@atomic:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#111828])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#109279])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#111825]) +12 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-iclb:         [PASS][63] -> [INCOMPLETE][64] ([i915#1185])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-tglb:         [PASS][65] -> [INCOMPLETE][66] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411] / [i915#456])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
    - shard-hsw:          [PASS][67] -> [INCOMPLETE][68] ([i915#2055] / [i915#2295])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][69] -> [INCOMPLETE][70] ([i915#155])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-apl:          [PASS][71] -> [DMESG-WARN][72] ([i915#2635])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-hsw:          NOTRUN -> [SKIP][73] ([fdo#109271]) +213 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109280]) +2 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
    - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271]) +8 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][76] -> [INCOMPLETE][77] ([i915#155] / [i915#2828])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
    - shard-apl:          [PASS][78] -> [DMESG-FAIL][79] ([i915#1188])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl3/igt@kms_hdr@bpc-switch-suspend.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-glk:          [PASS][80] -> [DMESG-WARN][81] ([i915#2635]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@kms_hdr@bpc-switch-suspend.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_hdr@bpc-switch-suspend.html
    - shard-iclb:         [PASS][82] -> [DMESG-WARN][83] ([i915#1602])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_hdr@bpc-switch-suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-hsw:          [PASS][84] -> [DMESG-WARN][85] ([i915#2637])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-tglb:         [PASS][86] -> [DMESG-WARN][87] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109289])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#533])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
    - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#533])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-hsw:          NOTRUN -> [DMESG-WARN][92] ([i915#2637])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#658])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([i915#2920])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [PASS][95] -> [SKIP][96] ([fdo#109441]) +2 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#2530])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109291]) +1 similar issue
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb3/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@runner@aborted:
    - shard-hsw:          NOTRUN -> ([FAIL][99], [FAIL][100]) ([fdo#109271] / [i915#2295] / [i915#2505])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@runner@aborted.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-glk:          [TIMEOUT][101] ([i915#2918]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk1/igt@gem_ctx_persistence@close-replace-race.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_exec_balancer@waits:
    - shard-tglb:         [INCOMPLETE][103] ([i915#2931]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@gem_exec_balancer@waits.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@gem_exec_balancer@waits.html

  * igt@gem_exec_endless@dispatch@vcs0:
    - shard-iclb:         [INCOMPLETE][105] -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@gem_exec_endless@dispatch@vcs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@gem_exec_endless@dispatch@vcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [FAIL][107] -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-tglb:         [FAIL][109] ([i915#2842]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][111] ([i915#2842]) -> [PASS][112] +2 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vecs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][113] ([i915#454]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-tglb:         [FAIL][115] ([i915#2598]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-kbl:          [DMESG-WARN][117] ([i915#180]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-snb:          [SKIP][119] ([fdo#109271]) -> [PASS][120] +3 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][121] ([fdo#109441]) -> [PASS][122] +2 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-hsw:          [INCOMPLETE][123] -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@tools_test@sysfs_l3_parity.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@tools_test@sysfs_l3_parity.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][125] ([i915#2842]) -> [FAIL][126] ([i915#2852])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][127] ([i915#1804] / [i915#2684]) -> [WARN][128] ([i915#2681] / [i915#2684])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][129] ([i915#2920]) -> [SKIP][130] ([i915#658])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][131] ([i915#658]) -> [SKIP][132] ([i915#2920]) +1 similar issue
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@runner@aborted:
    - shard-iclb:         [FAIL][133] ([i915#2295] / [i915#2724]) -> ([FAIL][134], [FAIL][135], [FAIL][136]) ([i915#1814] / [i915#2295] / [i915#2724])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
    - shard-apl:          [FAIL][137] ([i915#2295]) -> ([FAIL][138], [FAIL][139], [FAIL][140]) ([fdo#109271] / [i915#1814] / [i915#2295])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl2/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl3/igt@runner@aborted.html
    - shard-glk:          [FAIL][141] ([i915#2295] / [k.org#202321]) -> ([FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1814] / [i915#2295] / [k.org#202321])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk7/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk7/igt@runner@aborted.html
    - shard-tglb:         [FAIL][146] ([i915#2295] / [i915#2667]) -> ([FAIL][147], [FAIL][148], [FAIL][149]) ([i915#1602] / [i915#1814] / [i915#2295] / [i915#2667])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb1/igt@runner@aborted.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@runner@aborted.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@runner@aborted.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110426]: https://bugs.freedesktop.org/show_bug.cgi?id=110426
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1704]: https://gitlab.freedesktop.org/drm/intel/issues/1704
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887
  [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 36090 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] 16+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-20 15:58 ` Patchwork
@ 2021-01-20 16:10   ` Janusz Krzysztofik
  2021-01-20 16:14     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-20 16:10 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana


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

On Wed, 2021-01-20 at 15:58 +0000, Patchwork wrote:
> 
> Patch Details
> 
> Series:tests/core_hotunplug: Reduce debug noise on stdout
> URL:https://patchwork.freedesktop.org/series/86032/
> State:failure
> 
>     Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html
> 
> 
> 
> 
>     CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_full
> Summary
> FAILURE
> Serious unknown changes coming with IGTPW_5402_full absolutely need to be
> 
>   verified manually.
> If you think the reported changes have nothing to do with the changes
> 
>   introduced in IGTPW_5402_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_5402/index.html
> Possible new issues
> Here are the unknown changes that may have been introduced in IGTPW_5402_full:
> IGT changes
> Possible regressions
> 
> 
> igt@kms_color@pipe-b-legacy-gamma-reset:
> 
> 
> shard-apl:          PASS -> FAIL
> 
> 
> shard-kbl:          PASS -> FAIL
> 
> 
> 
> 
Looks almost the same (pipe-b here vs pipe-c before) as one of those I've already commented as false positives.
Thanks,Janusz
> Known issues
> Here are the changes found in IGTPW_5402_full that come from known issues:
> IGT changes
> Issues hit
> 
> 
> igt@gem_ctx_persistence@engines-hostile:
> 
> shard-hsw:          NOTRUN -> SKIP (fdo#109271 / i915#1099) +3 similar issues
> 
> 
> 
> igt@gem_exec_fair@basic-deadline:
> 
> shard-kbl:          PASS -> FAIL ([i915#2846])
> 
> 
> 
> igt@gem_exec_fair@basic-pace@vcs0:
> 
> shard-kbl:          PASS -> FAIL ([i915#2842])
> 
> 
> 
> igt@gem_exec_fair@basic-pace@vcs1:
> 
> shard-tglb:         PASS -> FAIL ([i915#2842])
> 
> 
> 
> igt@gem_exec_fair@basic-throttle@rcs0:
> 
> shard-iclb:         PASS -> FAIL ([i915#2842])
> 
> 
> 
> igt@gem_exec_reloc@basic-many-active@rcs0:
> 
> 
> shard-tglb:         NOTRUN -> FAIL (i915#2389) +4 similar issues
> 
> 
> shard-hsw:          PASS -> FAIL (i915#2389)
> 
> 
> 
> 
> igt@gem_exec_reloc@basic-wide-active@bcs0:
> 
> shard-hsw:          NOTRUN -> FAIL (i915#2389) +3 similar issues
> 
> 
> 
> igt@gem_exec_whisper@basic-queues-priority-all:
> 
> shard-glk:          PASS -> DMESG-WARN (i915#118 / [i915#95])
> 
> 
> 
> igt@gem_pread@exhaustion:
> 
> shard-hsw:          NOTRUN -> WARN ([i915#2658])
> 
> 
> 
> igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> 
> 
> shard-glk:          NOTRUN -> SKIP (fdo#109271) +6 similar issues
> 
> 
> shard-iclb:         NOTRUN -> SKIP ([i915#768])
> 
> 
> 
> 
> igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
> 
> shard-kbl:          NOTRUN -> SKIP (fdo#109271) +31 similar issues
> 
> 
> 
> igt@gem_userptr_blits@readonly-pwrite-unsync:
> 
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#110426 / i915#1704)
> 
> 
> shard-iclb:         NOTRUN -> SKIP (fdo#110426 / i915#1704)
> 
> 
> 
> 
> igt@gen9_exec_parse@allowed-all:
> 
> shard-glk:          PASS -> DMESG-WARN (i915#1436 / [i915#716])
> 
> 
> 
> igt@i915_module_load@reload-with-fault-injection:
> 
> shard-snb:          PASS -> INCOMPLETE ([i915#2880])
> 
> 
> 
> igt@i915_pm_rpm@dpms-non-lpsp:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#111644 / i915#1397 / i915#2411)
> 
> 
> 
> igt@i915_pm_rpm@pm-tiling:
> 
> 
> shard-kbl:          PASS -> SKIP (fdo#109271)
> 
> 
> shard-apl:          PASS -> SKIP (fdo#109271)
> 
> 
> shard-tglb:         PASS -> SKIP ([i915#579])
> 
> 
> shard-glk:          PASS -> SKIP (fdo#109271)
> 
> 
> shard-iclb:         PASS -> SKIP ([i915#579])
> 
> 
> 
> 
> igt@i915_selftest@live@active:
> 
> shard-iclb:         PASS -> DMESG-FAIL (i915#2291)
> 
> 
> 
> igt@kms_big_fb@y-tiled-8bpp-rotate-90:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#111614)
> 
> 
> 
> igt@kms_ccs@pipe-d-missing-ccs-buffer:
> 
> shard-iclb:         NOTRUN -> SKIP (fdo#109278) +2 similar issues
> 
> 
> 
> igt@kms_chamelium@dp-frame-dump:
> 
> 
> shard-iclb:         NOTRUN -> SKIP (fdo#109284 / fdo#111827)
> 
> 
> shard-glk:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)
> 
> 
> shard-kbl:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)
> 
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#109284 / fdo#111827) +2 similar issues
> 
> 
> shard-apl:          NOTRUN -> SKIP (fdo#109271 / fdo#111827)
> 
> 
> 
> 
> igt@kms_color@pipe-c-legacy-gamma-reset:
> 
> 
> shard-kbl:          PASS -> FAIL ([i915#2964])
> 
> 
> shard-apl:          PASS -> FAIL ([i915#2964])
> 
> 
> shard-glk:          PASS -> FAIL ([i915#2964])
> 
> 
> shard-hsw:          PASS -> FAIL ([i915#2964])
> 
> 
> 
> 
> igt@kms_color_chamelium@pipe-c-ctm-limited-range:
> 
> shard-hsw:          NOTRUN -> SKIP (fdo#109271 / fdo#111827) +13 similar issues
> 
> 
> 
> igt@kms_content_protection@atomic:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#111828)
> 
> 
> 
> igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#109279)
> 
> 
> 
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> 
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#111825) +12 similar issues
> 
> 
> shard-iclb:         NOTRUN -> SKIP (fdo#109274 / fdo#109278)
> 
> 
> 
> 
> igt@kms_fbcon_fbt@psr-suspend:
> 
> 
> shard-iclb:         PASS -> INCOMPLETE (i915#1185)
> 
> 
> shard-tglb:         PASS -> INCOMPLETE (i915#1436 / i915#1602 / i915#1887 / i915#2411 / [i915#456])
> 
> 
> 
> 
> igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
> 
> shard-hsw:          PASS -> INCOMPLETE (i915#2055 / i915#2295)
> 
> 
> 
> igt@kms_frontbuffer_tracking@fbc-suspend:
> 
> 
> shard-kbl:          PASS -> INCOMPLETE (i915#155)
> 
> 
> shard-apl:          PASS -> DMESG-WARN ([i915#2635])
> 
> 
> 
> 
> igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
> 
> shard-hsw:          NOTRUN -> SKIP (fdo#109271) +213 similar issues
> 
> 
> 
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
> 
> 
> shard-iclb:         NOTRUN -> SKIP (fdo#109280) +2 similar issues
> 
> 
> shard-apl:          NOTRUN -> SKIP (fdo#109271) +8 similar issues
> 
> 
> 
> 
> igt@kms_hdr@bpc-switch-suspend:
> 
> 
> shard-kbl:          PASS -> INCOMPLETE (i915#155 / [i915#2828])
> 
> 
> shard-apl:          PASS -> DMESG-FAIL (i915#1188)
> 
> 
> shard-glk:          PASS -> DMESG-WARN ([i915#2635]) +1 similar issue
> 
> 
> shard-iclb:         PASS -> DMESG-WARN (i915#1602)
> 
> 
> shard-hsw:          PASS -> DMESG-WARN ([i915#2637])
> 
> 
> shard-tglb:         PASS -> DMESG-WARN (i915#1436 / i915#1602 / i915#1887 / i915#2411)
> 
> 
> 
> 
> igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#109289)
> 
> 
> 
> igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
> 
> 
> shard-glk:          NOTRUN -> SKIP (fdo#109271 / [i915#533])
> 
> 
> shard-apl:          NOTRUN -> SKIP (fdo#109271 / [i915#533])
> 
> 
> 
> 
> igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
> 
> shard-kbl:          NOTRUN -> SKIP (fdo#109271 / [i915#533]) +1 similar issue
> 
> 
> 
> igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
> 
> shard-hsw:          NOTRUN -> DMESG-WARN ([i915#2637])
> 
> 
> 
> igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> 
> shard-kbl:          NOTRUN -> SKIP (fdo#109271 / [i915#658])
> 
> 
> 
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
> 
> shard-tglb:         NOTRUN -> SKIP ([i915#2920])
> 
> 
> 
> igt@kms_psr@psr2_cursor_mmap_cpu:
> 
> shard-iclb:         PASS -> SKIP (fdo#109441) +2 similar issues
> 
> 
> 
> igt@nouveau_crc@pipe-d-ctx-flip-detection:
> 
> shard-tglb:         NOTRUN -> SKIP (i915#2530)
> 
> 
> 
> igt@prime_nv_test@i915_blt_fill_nv_read:
> 
> shard-tglb:         NOTRUN -> SKIP (fdo#109291) +1 similar issue
> 
> 
> 
> igt@runner@aborted:
> 
> shard-hsw:          NOTRUN -> (FAIL, FAIL) (fdo#109271 / i915#2295 / i915#2505)
> 
> 
> 
> Possible fixes
> 
> 
> igt@gem_ctx_persistence@close-replace-race:
> 
> shard-glk:          TIMEOUT ([i915#2918]) -> PASS
> 
> 
> 
> igt@gem_exec_balancer@waits:
> 
> shard-tglb:         INCOMPLETE ([i915#2931]) -> PASS
> 
> 
> 
> igt@gem_exec_endless@dispatch@vcs0:
> 
> shard-iclb:         INCOMPLETE -> PASS
> 
> 
> 
> igt@gem_exec_fair@basic-pace@rcs0:
> 
> shard-kbl:          FAIL -> PASS
> 
> 
> 
> igt@gem_exec_fair@basic-pace@vcs0:
> 
> shard-tglb:         FAIL ([i915#2842]) -> PASS
> 
> 
> 
> igt@gem_exec_fair@basic-pace@vecs0:
> 
> shard-kbl:          FAIL ([i915#2842]) -> PASS +2 similar issues
> 
> 
> 
> igt@i915_pm_dc@dc6-psr:
> 
> shard-iclb:         FAIL ([i915#454]) -> PASS
> 
> 
> 
> igt@kms_flip@flip-vs-expired-vblank@a-edp1:
> 
> shard-tglb:         FAIL (i915#2598) -> PASS
> 
> 
> 
> igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
> 
> shard-kbl:          DMESG-WARN (i915#180) -> PASS
> 
> 
> 
> igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
> 
> shard-snb:          SKIP (fdo#109271) -> PASS +3 similar issues
> 
> 
> 
> igt@kms_psr@psr2_cursor_render:
> 
> shard-iclb:         SKIP (fdo#109441) -> PASS +2 similar issues
> 
> 
> 
> igt@tools_test@sysfs_l3_parity:
> 
> shard-hsw:          INCOMPLETE -> PASS
> 
> 
> 
> Warnings
> 
> 
> igt@gem_exec_fair@basic-none-rrul@rcs0:
> 
> shard-iclb:         FAIL ([i915#2842]) -> FAIL ([i915#2852])
> 
> 
> 
> igt@i915_pm_rc6_residency@rc6-idle:
> 
> shard-iclb:         WARN (i915#1804 / [i915#2684]) -> WARN ([i915#2681] / [i915#2684])
> 
> 
> 
> igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> 
> shard-iclb:         SKIP ([i915#2920]) -> SKIP ([i915#658])
> 
> 
> 
> igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> 
> shard-iclb:         SKIP ([i915#658]) -> SKIP ([i915#2920]) +1 similar issue
> 
> 
> 
> igt@runner@aborted:
> 
> 
> shard-iclb:         FAIL (i915#2295 / [i915#2724]) -> (FAIL, FAIL, FAIL) (i915#1814 / i915#2295 / [i915#2724])
> 
> 
> shard-apl:          FAIL (i915#2295) -> (FAIL, FAIL, FAIL) (fdo#109271 / i915#1814 / i915#2295)
> 
> 
> shard-glk:          FAIL (i915#2295 / [k.org#202321]) -> (FAIL, FAIL, FAIL, FAIL) (i915#1814 / i915#2295 / [k.org#202321])
> 
> 
> shard-tglb:         FAIL (i915#2295 / [i915#2667]) -> (FAIL, FAIL, FAIL) (i915#1602 / i915#1814 / i915#2295 / [i915#2667])
> 
> 
> 
> 
> 
> 
> 

[-- Attachment #1.2: Type: text/html, Size: 37119 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] 16+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
                   ` (5 preceding siblings ...)
  (?)
@ 2021-01-20 16:13 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-01-20 16:13 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: tests/core_hotunplug: Reduce debug noise on stdout
URL   : https://patchwork.freedesktop.org/series/86032/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-hostile:
    - shard-hsw:          NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1099]) +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_ctx_persistence@engines-hostile.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][2] -> [FAIL][3] ([i915#2846])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][4] -> [FAIL][5] ([i915#2842])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [PASS][6] -> [FAIL][7] ([i915#2842])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][8] -> [FAIL][9] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][10] ([i915#2389]) +4 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@gem_exec_reloc@basic-many-active@rcs0.html
    - shard-hsw:          [PASS][11] -> [FAIL][12] ([i915#2389])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@bcs0:
    - shard-hsw:          NOTRUN -> [FAIL][13] ([i915#2389]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_exec_reloc@basic-wide-active@bcs0.html

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - shard-glk:          [PASS][14] -> [DMESG-WARN][15] ([i915#118] / [i915#95])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@gem_exec_whisper@basic-queues-priority-all.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_exec_whisper@basic-queues-priority-all.html

  * igt@gem_pread@exhaustion:
    - shard-hsw:          NOTRUN -> [WARN][16] ([i915#2658])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_pread@exhaustion.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][17] ([fdo#109271]) +6 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#768])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
    - shard-kbl:          NOTRUN -> [SKIP][19] ([fdo#109271]) +31 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][20] ([fdo#110426] / [i915#1704])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][21] ([fdo#110426] / [i915#1704])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb4/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][22] -> [DMESG-WARN][23] ([i915#1436] / [i915#716])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@gen9_exec_parse@allowed-all.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [PASS][24] -> [INCOMPLETE][25] ([i915#2880])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#111644] / [i915#1397] / [i915#2411])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@pm-tiling:
    - shard-kbl:          [PASS][27] -> [SKIP][28] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@i915_pm_rpm@pm-tiling.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-apl:          [PASS][29] -> [SKIP][30] ([fdo#109271])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@i915_pm_rpm@pm-tiling.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@i915_pm_rpm@pm-tiling.html
    - shard-tglb:         [PASS][31] -> [SKIP][32] ([i915#579])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@i915_pm_rpm@pm-tiling.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@i915_pm_rpm@pm-tiling.html
    - shard-glk:          [PASS][33] -> [SKIP][34] ([fdo#109271])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk2/igt@i915_pm_rpm@pm-tiling.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@i915_pm_rpm@pm-tiling.html
    - shard-iclb:         [PASS][35] -> [SKIP][36] ([i915#579])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@i915_pm_rpm@pm-tiling.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@i915_pm_rpm@pm-tiling.html

  * igt@i915_selftest@live@active:
    - shard-iclb:         [PASS][37] -> [DMESG-FAIL][38] ([i915#2291])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb8/igt@i915_selftest@live@active.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@i915_selftest@live@active.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#111614])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_ccs@pipe-d-missing-ccs-buffer.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html
    - shard-glk:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_chamelium@dp-frame-dump.html
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_chamelium@dp-frame-dump.html
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_chamelium@dp-frame-dump.html
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_color@pipe-c-legacy-gamma-reset:
    - shard-kbl:          [PASS][46] -> [FAIL][47] ([i915#2964]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-apl:          [PASS][48] -> [FAIL][49] ([i915#2964]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-glk:          [PASS][50] -> [FAIL][51] ([i915#2964])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_color@pipe-c-legacy-gamma-reset.html
    - shard-hsw:          [PASS][52] -> [FAIL][53] ([i915#2964])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html

  * igt@kms_color_chamelium@pipe-c-ctm-limited-range:
    - shard-hsw:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html

  * igt@kms_content_protection@atomic:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111828])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#109279])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111825]) +12 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#109278])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-iclb:         [PASS][59] -> [INCOMPLETE][60] ([i915#1185])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-tglb:         [PASS][61] -> [INCOMPLETE][62] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411] / [i915#456])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
    - shard-hsw:          [PASS][63] -> [INCOMPLETE][64] ([i915#2055] / [i915#2295])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][65] -> [INCOMPLETE][66] ([i915#155])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-apl:          [PASS][67] -> [DMESG-WARN][68] ([i915#2635])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-hsw:          NOTRUN -> [SKIP][69] ([fdo#109271]) +213 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109280]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
    - shard-apl:          NOTRUN -> [SKIP][71] ([fdo#109271]) +8 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][72] -> [INCOMPLETE][73] ([i915#155] / [i915#2828])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
    - shard-apl:          [PASS][74] -> [DMESG-FAIL][75] ([i915#1188])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl3/igt@kms_hdr@bpc-switch-suspend.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-glk:          [PASS][76] -> [DMESG-WARN][77] ([i915#2635]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@kms_hdr@bpc-switch-suspend.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_hdr@bpc-switch-suspend.html
    - shard-iclb:         [PASS][78] -> [DMESG-WARN][79] ([i915#1602])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_hdr@bpc-switch-suspend.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-hsw:          [PASS][80] -> [DMESG-WARN][81] ([i915#2637])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-tglb:         [PASS][82] -> [DMESG-WARN][83] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109289])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#533])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#533]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-hsw:          NOTRUN -> [DMESG-WARN][88] ([i915#2637])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-kbl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#2920])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [PASS][91] -> [SKIP][92] ([fdo#109441]) +2 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2530])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#109291]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb3/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@runner@aborted:
    - shard-hsw:          NOTRUN -> ([FAIL][95], [FAIL][96]) ([fdo#109271] / [i915#2295] / [i915#2505])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@runner@aborted.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-glk:          [TIMEOUT][97] ([i915#2918]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk1/igt@gem_ctx_persistence@close-replace-race.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_exec_balancer@waits:
    - shard-tglb:         [INCOMPLETE][99] ([i915#2931]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@gem_exec_balancer@waits.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@gem_exec_balancer@waits.html

  * igt@gem_exec_endless@dispatch@vcs0:
    - shard-iclb:         [INCOMPLETE][101] -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@gem_exec_endless@dispatch@vcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@gem_exec_endless@dispatch@vcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [FAIL][103] -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-tglb:         [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][107] ([i915#2842]) -> [PASS][108] +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vecs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][109] ([i915#454]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-tglb:         [FAIL][111] ([i915#2598]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-kbl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-snb:          [SKIP][115] ([fdo#109271]) -> [PASS][116] +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][117] ([fdo#109441]) -> [PASS][118] +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-hsw:          [INCOMPLETE][119] -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@tools_test@sysfs_l3_parity.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@tools_test@sysfs_l3_parity.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][121] ([i915#2842]) -> [FAIL][122] ([i915#2852])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][123] ([i915#1804] / [i915#2684]) -> [WARN][124] ([i915#2681] / [i915#2684])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][125] ([i915#2920]) -> [SKIP][126] ([i915#658])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][127] ([i915#658]) -> [SKIP][128] ([i915#2920]) +1 similar issue
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@runner@aborted:
    - shard-iclb:         [FAIL][129] ([i915#2295] / [i915#2724]) -> ([FAIL][130], [FAIL][131], [FAIL][132]) ([i915#1814] / [i915#2295] / [i915#2724])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html
    - shard-apl:          [FAIL][133] ([i915#2295]) -> ([FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#1814] / [i915#2295])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl2/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl3/igt@runner@aborted.html
    - shard-glk:          [FAIL][137] ([i915#2295] / [k.org#202321]) -> ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141]) ([i915#1814] / [i915#2295] / [k.org#202321])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk7/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk7/igt@runner@aborted.html
    - shard-tglb:         [FAIL][142] ([i915#2295] / [i915#2667]) -> ([FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1602] / [i915#1814] / [i915#2295] / [i915#2667])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb1/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110426]: https://bugs.freedesktop.org/show_bug.cgi?id=110426
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1704]: https://gitlab.freedesktop.org/drm/intel/issues/1704
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887
  [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598
  [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
  [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2667]: https://gitlab.freedesktop.org/drm/intel/issues/2667
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
  [i915#2828]: https://gitlab.freedesktop.org/drm/intel/issues/2828
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852
  [i915#2880]: https://gitlab.freedesktop.org/drm/intel/issues/2880
  [i915#2918]: https://gitlab.freedesktop.org/drm/intel/issues/2918
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2931]: https://gitlab.freedesktop.org/drm/intel/issues/2931
  [i915#2964]: https://gitlab.freedesktop.org/drm/i

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 36909 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] 16+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-20 16:10   ` Janusz Krzysztofik
@ 2021-01-20 16:14     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 16+ messages in thread
From: Vudum, Lakshminarayana @ 2021-01-20 16:14 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev


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

Re-reported.

From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Sent: Wednesday, January 20, 2021 9:11 AM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for tests/core_hotunplug: Reduce debug noise on stdout

On Wed, 2021-01-20 at 15:58 +0000, Patchwork wrote:
Patch Details
Series:

tests/core_hotunplug: Reduce debug noise on stdout

URL:

https://patchwork.freedesktop.org/series/86032/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/index.html

CI Bug Log - changes from CI_DRM_9640_full -> IGTPW_5402_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_5402_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5402_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_5402/index.html

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_color@pipe-b-legacy-gamma-reset:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_color@pipe-b-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-b-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma-reset.html>
Looks almost the same (pipe-b here vs pipe-c before) as one of those I've already commented as false positives.

Thanks,
Janusz

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_persistence@engines-hostile:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_ctx_persistence@engines-hostile.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +3 similar issues

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl7/igt@gem_exec_fair@basic-deadline.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@gem_exec_fair@basic-deadline.html> ([i915#2846])

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs1.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842])

  *   igt@gem_exec_reloc@basic-many-active@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@gem_exec_reloc@basic-many-active@rcs0.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) +4 similar issues
     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@gem_exec_reloc@basic-many-active@rcs0.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>)

  *   igt@gem_exec_reloc@basic-wide-active@bcs0:

     *   shard-hsw: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_exec_reloc@basic-wide-active@bcs0.html> (i915#2389<https://gitlab.freedesktop.org/drm/intel/issues/2389>) +3 similar issues

  *   igt@gem_exec_whisper@basic-queues-priority-all:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@gem_exec_whisper@basic-queues-priority-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_exec_whisper@basic-queues-priority-all.html> (i915#118<https://gitlab.freedesktop.org/drm/intel/issues/118> / [i915#95])

  *   igt@gem_pread@exhaustion:

     *   shard-hsw: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +6 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> ([i915#768])

  *   igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +31 similar issues

  *   igt@gem_userptr_blits@readonly-pwrite-unsync:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html> (fdo#110426<https://bugs.freedesktop.org/show_bug.cgi?id=110426> / i915#1704<https://gitlab.freedesktop.org/drm/intel/issues/1704>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb4/igt@gem_userptr_blits@readonly-pwrite-unsync.html> (fdo#110426<https://bugs.freedesktop.org/show_bug.cgi?id=110426> / i915#1704<https://gitlab.freedesktop.org/drm/intel/issues/1704>)

  *   igt@gen9_exec_parse@allowed-all:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@gen9_exec_parse@allowed-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@gen9_exec_parse@allowed-all.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / [i915#716])

  *   igt@i915_module_load@reload-with-fault-injection:

     *   shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html> ([i915#2880])

  *   igt@i915_pm_rpm@dpms-non-lpsp:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@i915_pm_rpm@dpms-non-lpsp.html> (fdo#111644<https://bugs.freedesktop.org/show_bug.cgi?id=111644> / i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397> / i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>)

  *   igt@i915_pm_rpm@pm-tiling:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@i915_pm_rpm@pm-tiling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@i915_pm_rpm@pm-tiling.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@i915_pm_rpm@pm-tiling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@i915_pm_rpm@pm-tiling.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@i915_pm_rpm@pm-tiling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@i915_pm_rpm@pm-tiling.html> ([i915#579])
     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk2/igt@i915_pm_rpm@pm-tiling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@i915_pm_rpm@pm-tiling.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@i915_pm_rpm@pm-tiling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@i915_pm_rpm@pm-tiling.html> ([i915#579])

  *   igt@i915_selftest@live@active:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb8/igt@i915_selftest@live@active.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@i915_selftest@live@active.html> (i915#2291<https://gitlab.freedesktop.org/drm/intel/issues/2291>)

  *   igt@kms_big_fb@y-tiled-8bpp-rotate-90:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)

  *   igt@kms_ccs@pipe-d-missing-ccs-buffer:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_ccs@pipe-d-missing-ccs-buffer.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +2 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_chamelium@dp-frame-dump.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_chamelium@dp-frame-dump.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_chamelium@dp-frame-dump.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_chamelium@dp-frame-dump.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_chamelium@dp-frame-dump.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)

  *   igt@kms_color@pipe-c-legacy-gamma-reset:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl6/igt@kms_color@pipe-c-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html> ([i915#2964])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl8/igt@kms_color@pipe-c-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_color@pipe-c-legacy-gamma-reset.html> ([i915#2964])
     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_color@pipe-c-legacy-gamma-reset.html> ([i915#2964])
     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html> ([i915#2964])

  *   igt@kms_color_chamelium@pipe-c-ctm-limited-range:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_color_chamelium@pipe-c-ctm-limited-range.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +13 similar issues

  *   igt@kms_content_protection@atomic:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_content_protection@atomic.html> (fdo#111828<https://bugs.freedesktop.org/show_bug.cgi?id=111828>)

  *   igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-512x170-offscreen.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279>)

  *   igt@kms_cursor_legacy@cursora-vs-flipb-atomic:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +12 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>)

  *   igt@kms_fbcon_fbt@psr-suspend:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html> (i915#1185<https://gitlab.freedesktop.org/drm/intel/issues/1185>)
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@kms_fbcon_fbt@psr-suspend.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602> / i915#1887<https://gitlab.freedesktop.org/drm/intel/issues/1887> / i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / [i915#456])

  *   igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:

     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> (i915#2055<https://gitlab.freedesktop.org/drm/intel/issues/2055> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295>)

  *   igt@kms_frontbuffer_tracking@fbc-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155>)
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@kms_frontbuffer_tracking@fbc-suspend.html> ([i915#2635])

  *   igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +213 similar issues

  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +2 similar issues
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +8 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> (i915#155<https://gitlab.freedesktop.org/drm/intel/issues/155> / [i915#2828])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl3/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@kms_hdr@bpc-switch-suspend.html> (i915#1188<https://gitlab.freedesktop.org/drm/intel/issues/1188>)
     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk4/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@kms_hdr@bpc-switch-suspend.html> ([i915#2635]) +1 similar issue
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@kms_hdr@bpc-switch-suspend.html> (i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602>)
     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@kms_hdr@bpc-switch-suspend.html> ([i915#2637])
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@kms_hdr@bpc-switch-suspend.html> (i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602> / i915#1887<https://gitlab.freedesktop.org/drm/intel/issues/1887> / i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411>)

  *   igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)

  *   igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk1/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533])

  *   igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl1/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#533]) +1 similar issue

  *   igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:

     *   shard-hsw: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html> ([i915#2637])

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / [i915#658])

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html> ([i915#2920])

  *   igt@kms_psr@psr2_cursor_mmap_cpu:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +2 similar issues

  *   igt@nouveau_crc@pipe-d-ctx-flip-detection:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (i915#2530<https://gitlab.freedesktop.org/drm/intel/issues/2530>)

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb3/igt@prime_nv_test@i915_blt_fill_nv_read.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1 similar issue

  *   igt@runner@aborted:

     *   shard-hsw: NOTRUN -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw7/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / i915#2505<https://gitlab.freedesktop.org/drm/intel/issues/2505>)

Possible fixes

  *   igt@gem_ctx_persistence@close-replace-race:

     *   shard-glk: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk1/igt@gem_ctx_persistence@close-replace-race.html> ([i915#2918]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk2/igt@gem_ctx_persistence@close-replace-race.html>

  *   igt@gem_exec_balancer@waits:

     *   shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb6/igt@gem_exec_balancer@waits.html> ([i915#2931]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@gem_exec_balancer@waits.html>

  *   igt@gem_exec_endless@dispatch@vcs0:

     *   shard-iclb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@gem_exec_endless@dispatch@vcs0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@gem_exec_endless@dispatch@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@rcs0:

     *   shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb7/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vecs0:

     *   shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@gem_exec_fair@basic-pace@vecs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html> +2 similar issues

  *   igt@i915_pm_dc@dc6-psr:

     *   shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb6/igt@i915_pm_dc@dc6-psr.html>

  *   igt@kms_flip@flip-vs-expired-vblank@a-edp1:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> (i915#2598<https://gitlab.freedesktop.org/drm/intel/issues/2598>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>

  *   igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html>

  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:

     *   shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> +3 similar issues

  *   igt@kms_psr@psr2_cursor_render:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@kms_psr@psr2_cursor_render.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> +2 similar issues

  *   igt@tools_test@sysfs_l3_parity:

     *   shard-hsw: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-hsw4/igt@tools_test@sysfs_l3_parity.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-hsw4/igt@tools_test@sysfs_l3_parity.html>

Warnings

  *   igt@gem_exec_fair@basic-none-rrul@rcs0:

     *   shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> ([i915#2842]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> ([i915#2852])

  *   igt@i915_pm_rc6_residency@rc6-idle:

     *   shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#1804<https://gitlab.freedesktop.org/drm/intel/issues/1804> / [i915#2684]) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2681] / [i915#2684])

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> ([i915#2920]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> ([i915#658])

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area-0:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html> ([i915#658]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html> ([i915#2920]) +1 similar issue

  *   igt@runner@aborted:

     *   shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-iclb3/igt@runner@aborted.html> (i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [i915#2724]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-iclb7/igt@runner@aborted.html>) (i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [i915#2724])
     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-apl2/igt@runner@aborted.html> (i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295>)
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-glk7/igt@runner@aborted.html> (i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [k.org#202321]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk4/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-glk7/igt@runner@aborted.html>) (i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [k.org#202321])
     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9640/shard-tglb1/igt@runner@aborted.html> (i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [i915#2667]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5402/shard-tglb2/igt@runner@aborted.html>) (i915#1602<https://gitlab.freedesktop.org/drm/intel/issues/1602> / i915#1814<https://gitlab.freedesktop.org/drm/intel/issues/1814> / i915#2295<https://gitlab.freedesktop.org/drm/intel/issues/2295> / [i915#2667])

[-- Attachment #1.2: Type: text/html, Size: 62215 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] 16+ messages in thread

* Re: [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
  2021-01-19 11:08   ` [igt-dev] " Marcin Bernatowicz
@ 2021-01-21  8:48     ` Janusz Krzysztofik
  -1 siblings, 0 replies; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-21  8:48 UTC (permalink / raw)
  To: Marcin Bernatowicz, igt-dev; +Cc: intel-gfx

On Tue, 2021-01-19 at 12:08 +0100, Marcin Bernatowicz wrote:
> On Tue, 2021-01-19 at 09:42 +0100, Janusz Krzysztofik wrote:
> > Since igt_fixture sections are processed unconditionally regardless
> > of
> > which subtest has been requested, they can now emit a lot of
> > unrelated
> > debug messages which can make the picture less clear.  Avoid emitting
> > those messages from outside igt_subtest sections.
> > 
> > Move device close status prerequisite checks from igt_fixture
> > sections
> > into subtest execution paths.  For simplicity, pass any device close
> > errors, including those from health checks, to next sections via a
> > single .fd.drm data structure field.
> > 
> > Moreover, postpone initial device health check until first actually
> > selected subtest is started.  In order to let that subtest skip on
> > unsuccessful initial health check, not fail, move the decision
> > whether
> > to fail or skip on error from the health check helper to its users.
> > 
> > Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com
> > ...
> Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>

Thank you Marcin.

CI results with no false positives finally collected after a few re-
runs, so pushed.

Thanks,
Janusz

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout
@ 2021-01-21  8:48     ` Janusz Krzysztofik
  0 siblings, 0 replies; 16+ messages in thread
From: Janusz Krzysztofik @ 2021-01-21  8:48 UTC (permalink / raw)
  To: Marcin Bernatowicz, igt-dev; +Cc: intel-gfx

On Tue, 2021-01-19 at 12:08 +0100, Marcin Bernatowicz wrote:
> On Tue, 2021-01-19 at 09:42 +0100, Janusz Krzysztofik wrote:
> > Since igt_fixture sections are processed unconditionally regardless
> > of
> > which subtest has been requested, they can now emit a lot of
> > unrelated
> > debug messages which can make the picture less clear.  Avoid emitting
> > those messages from outside igt_subtest sections.
> > 
> > Move device close status prerequisite checks from igt_fixture
> > sections
> > into subtest execution paths.  For simplicity, pass any device close
> > errors, including those from health checks, to next sections via a
> > single .fd.drm data structure field.
> > 
> > Moreover, postpone initial device health check until first actually
> > selected subtest is started.  In order to let that subtest skip on
> > unsuccessful initial health check, not fail, move the decision
> > whether
> > to fail or skip on error from the health check helper to its users.
> > 
> > Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com
> > ...
> Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>

Thank you Marcin.

CI results with no false positives finally collected after a few re-
runs, so pushed.

Thanks,
Janusz

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

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

end of thread, other threads:[~2021-01-21  8:48 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-19  8:42 [Intel-gfx] [PATCH i-g-t] tests/core_hotunplug: Reduce debug noise on stdout Janusz Krzysztofik
2021-01-19  8:42 ` [igt-dev] " Janusz Krzysztofik
2021-01-19 11:08 ` [Intel-gfx] " Marcin Bernatowicz
2021-01-19 11:08   ` [igt-dev] " Marcin Bernatowicz
2021-01-21  8:48   ` Janusz Krzysztofik
2021-01-21  8:48     ` [igt-dev] " Janusz Krzysztofik
2021-01-19 11:59 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2021-01-19 16:39   ` Janusz Krzysztofik
2021-01-19 16:51     ` Vudum, Lakshminarayana
2021-01-19 16:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2021-01-19 18:38 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-01-20  9:36   ` Janusz Krzysztofik
2021-01-20 15:58 ` Patchwork
2021-01-20 16:10   ` Janusz Krzysztofik
2021-01-20 16:14     ` Vudum, Lakshminarayana
2021-01-20 16:13 ` [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.