intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
@ 2020-03-16  8:45 Janusz Krzysztofik
  2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-16  8:45 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Together with recently submitted patches, this series concludes
MMAP_OFFSET related changes required for gem_userptr_blits.

Thanks,
Janusz

Janusz Krzysztofik (2):
  tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise
  tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests

 tests/i915/gem_userptr_blits.c | 129 ++++++++++++++++++++++++---------
 1 file changed, 95 insertions(+), 34 deletions(-)

-- 
2.21.1

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

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

* [Intel-gfx] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise
  2020-03-16  8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
@ 2020-03-16  8:45 ` Janusz Krzysztofik
  2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-16  8:45 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Upgrade the subtest to use MMAP_GTT API v4 (aka MMAP_OFFSET),
dynamically examine each mapping type supported by i915 driver.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/i915/gem_userptr_blits.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index beced298a..975cd9dab 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -1277,7 +1277,7 @@ static void sigjmp_handler(int sig)
 	siglongjmp(sigjmp, sig);
 }
 
-static void test_readonly_mmap(int i915)
+static void test_readonly_mmap(int i915, const struct mmap_offset *t)
 {
 	char *original, *result;
 	uint32_t handle;
@@ -1294,6 +1294,14 @@ static void test_readonly_mmap(int i915)
 	 * on the GPU as well.
 	 */
 
+	handle = gem_create(i915, PAGE_SIZE);
+	ptr = __gem_mmap_offset(i915, handle, 0, PAGE_SIZE,
+				PROT_READ | PROT_WRITE, t->type);
+	gem_close(i915, handle);
+	igt_require_f(ptr, "HW & kernel support for mmap-offset(%s)\n",
+		      t->name);
+	munmap(ptr, PAGE_SIZE);
+
 	igt_require(igt_setup_clflush());
 
 	sz = 16 << 12;
@@ -1307,11 +1315,11 @@ static void test_readonly_mmap(int i915)
 	igt_clflush_range(pages, sz);
 	original = g_compute_checksum_for_data(G_CHECKSUM_SHA1, pages, sz);
 
-	ptr = __gem_mmap__gtt(i915, handle, sz, PROT_WRITE);
+	ptr = __gem_mmap_offset(i915, handle, 0, sz, PROT_WRITE, t->type);
 	igt_assert(ptr == NULL);
 
 	/* Optional kernel support for GTT mmaps of userptr */
-	ptr = __gem_mmap__gtt(i915, handle, sz, PROT_READ);
+	ptr = __gem_mmap_offset(i915, handle, 0, sz, PROT_READ, t->type);
 	gem_close(i915, handle);
 
 	if (ptr) { /* Check that a write into the GTT readonly map fails */
@@ -2110,8 +2118,11 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 		igt_subtest("readonly-unsync")
 			test_readonly(fd);
 
-		igt_subtest("readonly-mmap-unsync")
-			test_readonly_mmap(fd);
+		igt_describe("Examine mmap-offset mapping to read-only userptr");
+		igt_subtest_with_dynamic("readonly-mmap-unsync")
+			for_each_mmap_offset_type(fd, t)
+				igt_dynamic(t->name)
+					test_readonly_mmap(fd, t);
 
 		igt_subtest("readonly-pwrite-unsync")
 			test_readonly_pwrite(fd);
-- 
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] 8+ messages in thread

* [Intel-gfx] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
  2020-03-16  8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
  2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik
@ 2020-03-16  8:45 ` Janusz Krzysztofik
  2020-03-16 18:57 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for " Patchwork
       [not found] ` <158438673635.18995.14325349729717846904@emeril.freedesktop.org>
  3 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-16  8:45 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Extend initial check for support of MMAP_GTT mapping to userptr with
equivalent checks for each MMAP_OFFSET mapping type supported by i915
driver.  Based on that, extend coverage of process-exit-gtt* subtests
over non-GTT mapping types.  In case of dmabuf-* subtests, use first
supported mapping type if there are any.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/i915/gem_userptr_blits.c | 108 ++++++++++++++++++++++++---------
 1 file changed, 79 insertions(+), 29 deletions(-)

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index 975cd9dab..475200930 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -73,18 +73,30 @@
 
 static uint32_t userptr_flags = LOCAL_I915_USERPTR_UNSYNCHRONIZED;
 
-static bool can_gtt_mmap;
+static bool *can_mmap;
 
 #define WIDTH 512
 #define HEIGHT 512
 
 static uint32_t linear[WIDTH*HEIGHT];
 
-static bool has_gtt_mmap(int i915)
+static bool has_mmap(int i915, const struct mmap_offset *t)
 {
 	void *ptr, *map = NULL;
 	uint32_t handle;
 
+	handle = gem_create(i915, PAGE_SIZE);
+	map = __gem_mmap_offset(i915, handle, 0, PAGE_SIZE, PROT_WRITE,
+				t->type);
+	gem_close(i915, handle);
+	if (map) {
+		munmap(map, PAGE_SIZE);
+	} else {
+		igt_debug("no HW / kernel support for mmap-offset(%s)\n",
+			  t->name);
+		return false;
+	}
+
 	igt_assert(posix_memalign(&ptr, PAGE_SIZE, PAGE_SIZE) == 0);
 
 	if (__gem_userptr(i915, ptr, 4096, 0,
@@ -92,9 +104,12 @@ static bool has_gtt_mmap(int i915)
 		goto out_ptr;
 	igt_assert(handle != 0);
 
-	map = __gem_mmap__gtt(i915, handle, 4096, PROT_WRITE);
+	map = __gem_mmap_offset(i915, handle, 0, 4096, PROT_WRITE, t->type);
 	if (map)
 		munmap(map, 4096);
+	else if (errno == ENODEV)
+		igt_debug("mmap-offset(%s) banned, lockdep loop prevention\n",
+			  t->name);
 
 	gem_close(i915, handle);
 out_ptr:
@@ -642,20 +657,25 @@ static int test_invalid_mapping(int fd, const struct mmap_offset *t)
 	return 0;
 }
 
-#define PE_GTT_MAP 0x1
-#define PE_BUSY 0x2
-static void test_process_exit(int fd, int flags)
+#define PE_BUSY 0x1
+static void test_process_exit(int fd, const struct mmap_offset *mmo, int flags)
 {
-	if (flags & PE_GTT_MAP)
-		igt_require(can_gtt_mmap);
+	if (mmo)
+		igt_require_f(can_mmap[mmo->type],
+			      "HW & kernel support for LLC and mmap-offset(%s) over userptr\n",
+			      mmo->name);
 
 	igt_fork(child, 1) {
 		uint32_t handle;
 
 		handle = create_userptr_bo(fd, sizeof(linear));
 
-		if (flags & PE_GTT_MAP) {
-			uint32_t *ptr = __gem_mmap__gtt(fd, handle, sizeof(linear), PROT_READ | PROT_WRITE);
+		if (mmo) {
+			uint32_t *ptr;
+
+			ptr = __gem_mmap_offset(fd, handle, 0, sizeof(linear),
+						PROT_READ | PROT_WRITE,
+						mmo->type);
 			if (ptr)
 				*ptr = 0;
 		}
@@ -933,13 +953,14 @@ static void (* volatile orig_sigbus)(int sig, siginfo_t *info, void *param);
 static volatile unsigned long sigbus_start;
 static volatile long sigbus_cnt = -1;
 
-static void *umap(int fd, uint32_t handle)
+static void *umap(int fd, uint32_t handle, const struct mmap_offset *mmo)
 {
 	void *ptr;
 
-	if (can_gtt_mmap) {
-		ptr = gem_mmap__gtt(fd, handle, sizeof(linear),
-				    PROT_READ | PROT_WRITE);
+	if (mmo) {
+		ptr = __gem_mmap_offset(fd, handle, 0, sizeof(linear),
+					PROT_READ | PROT_WRITE, mmo->type);
+		igt_assert(ptr);
 	} else {
 		uint32_t tmp = gem_create(fd, sizeof(linear));
 		igt_assert_eq(copy(fd, tmp, handle), 0);
@@ -951,16 +972,17 @@ static void *umap(int fd, uint32_t handle)
 }
 
 static void
-check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2)
+check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2,
+	 const struct mmap_offset *mmo)
 {
 	unsigned char *ptr1, *ptr2;
 	unsigned long size = sizeof(linear);
 
-	ptr2 = umap(fd2, handle2);
+	ptr2 = umap(fd2, handle2, mmo);
 	if (is_userptr)
 		ptr1 = is_userptr > 0 ? get_handle_ptr(handle1) : ptr2;
 	else
-		ptr1 = umap(fd1, handle1);
+		ptr1 = umap(fd1, handle1, mmo);
 
 	igt_assert(ptr1);
 	igt_assert(ptr2);
@@ -968,7 +990,7 @@ check_bo(int fd1, uint32_t handle1, int is_userptr, int fd2, uint32_t handle2)
 	sigbus_start = (unsigned long)ptr2;
 	igt_assert(memcmp(ptr1, ptr2, sizeof(linear)) == 0);
 
-	if (can_gtt_mmap) {
+	if (mmo) {
 		counter++;
 		memset(ptr1, counter, size);
 		memset(ptr2, counter, size);
@@ -1026,9 +1048,17 @@ static int test_dmabuf(void)
 	uint32_t handle, handle_import;
 	int dma_buf_fd = -1;
 	int ret;
+	const struct mmap_offset *mmo = NULL;
 
 	fd1 = drm_open_driver(DRIVER_INTEL);
 
+	for_each_mmap_offset_type(fd1, t)
+		if (can_mmap[t->type]) {
+			igt_debug("using mmap-offset(%s)\n", t->name);
+			mmo = t;
+			break;
+	}
+
 	handle = create_userptr_bo(fd1, sizeof(linear));
 	memset(get_handle_ptr(handle), counter, sizeof(linear));
 
@@ -1045,17 +1075,17 @@ static int test_dmabuf(void)
 
 	fd2 = drm_open_driver(DRIVER_INTEL);
 	handle_import = prime_fd_to_handle(fd2, dma_buf_fd);
-	check_bo(fd1, handle, 1, fd2, handle_import);
+	check_bo(fd1, handle, 1, fd2, handle_import, mmo);
 
 	/* close dma_buf, check whether nothing disappears. */
 	close(dma_buf_fd);
-	check_bo(fd1, handle, 1, fd2, handle_import);
+	check_bo(fd1, handle, 1, fd2, handle_import, mmo);
 
 	/* destroy userptr object and expect SIGBUS */
 	free_userptr_bo(fd1, handle);
 	close(fd1);
 
-	if (can_gtt_mmap) {
+	if (mmo) {
 		struct sigaction sigact, orig_sigact;
 
 		memset(&sigact, 0, sizeof(sigact));
@@ -1067,7 +1097,7 @@ static int test_dmabuf(void)
 		orig_sigbus = orig_sigact.sa_sigaction;
 
 		sigbus_cnt = 0;
-		check_bo(fd2, handle_import, -1, fd2, handle_import);
+		check_bo(fd2, handle_import, -1, fd2, handle_import, mmo);
 		igt_assert(sigbus_cnt > 0);
 
 		ret = sigaction(SIGBUS, &orig_sigact, NULL);
@@ -2030,12 +2060,23 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 	int size = sizeof(linear);
 
 	igt_fixture {
+		unsigned int mmo_max = 0;
+
 		fd = drm_open_driver(DRIVER_INTEL);
 		igt_assert(fd >= 0);
 		igt_require_gem(fd);
 		gem_require_blitter(fd);
 
-		can_gtt_mmap = has_gtt_mmap(fd) && gem_has_llc(fd);
+		for_each_mmap_offset_type(fd, t)
+			if (t->type >= mmo_max)
+				mmo_max = t->type + 1;
+		igt_assert(mmo_max);
+
+		can_mmap = calloc(mmo_max, sizeof(*can_mmap));
+		igt_assert(can_mmap);
+
+		for_each_mmap_offset_type(fd, t)
+			can_mmap[t->type] = has_mmap(fd, t) && gem_has_llc(fd);
 
 		size = sizeof(linear);
 
@@ -2193,16 +2234,22 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 		}
 
 		igt_subtest("process-exit")
-			test_process_exit(fd, 0);
+			test_process_exit(fd, NULL, 0);
 
-		igt_subtest("process-exit-gtt")
-			test_process_exit(fd, PE_GTT_MAP);
+		igt_describe("Test process exit with userptr object mmapped via mmap-offset");
+		igt_subtest_with_dynamic("process-exit-mmap")
+			for_each_mmap_offset_type(fd, t)
+				igt_dynamic(t->name)
+					test_process_exit(fd, t, 0);
 
 		igt_subtest("process-exit-busy")
-			test_process_exit(fd, PE_BUSY);
+			test_process_exit(fd, NULL, PE_BUSY);
 
-		igt_subtest("process-exit-gtt-busy")
-			test_process_exit(fd, PE_GTT_MAP | PE_BUSY);
+		igt_describe("Test process exit with busy userptr object mmapped via mmap-offset");
+		igt_subtest_with_dynamic("process-exit-mmap-busy")
+			for_each_mmap_offset_type(fd, t)
+				igt_dynamic(t->name)
+					test_process_exit(fd, t, PE_BUSY);
 
 		igt_subtest("create-destroy-sync")
 			test_create_destroy(fd, 5);
@@ -2325,4 +2372,7 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 
 	igt_subtest("access-control")
 		test_access_control(fd);
+
+	igt_fixture
+		free(can_mmap);
 }
-- 
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] 8+ messages in thread

* [Intel-gfx] ✗ Fi.CI.BUILD: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
  2020-03-16  8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
  2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik
  2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
@ 2020-03-16 18:57 ` Patchwork
       [not found] ` <158438673635.18995.14325349729717846904@emeril.freedesktop.org>
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2020-03-16 18:57 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: intel-gfx

== Series Details ==

Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests
URL   : https://patchwork.freedesktop.org/series/74730/
State : failure

== Summary ==

Applying: tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise
error: sha1 information is lacking or useless (tests/i915/gem_userptr_blits.c).
error: could not build fake ancestor
hint: Use 'git am --show-current-patch' to see the failed patch
Patch failed at 0001 tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
       [not found] ` <158438673635.18995.14325349729717846904@emeril.freedesktop.org>
@ 2020-03-17  8:53   ` Janusz Krzysztofik
  2020-03-17 10:40     ` Petri Latvala
  0 siblings, 1 reply; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-17  8:53 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Hi,

On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
> URL   : https://patchwork.freedesktop.org/series/74201/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**

False positive, see below.

>   Serious unknown changes coming with IGTPW_4307_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4307_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_4307/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4307_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ctx_shared@single-timeline:
>     - shard-snb:          NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html
>     - shard-hsw:          NOTRUN -> [FAIL][2] +1 similar issue
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_ctx_shared@single-timeline.html
> 
>   * igt@gem_exec_fence@basic-await@vcs0:
>     - shard-kbl:          [PASS][3] -> [FAIL][4] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html
>     - shard-iclb:         [PASS][5] -> [FAIL][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html
>     - shard-apl:          [PASS][7] -> [FAIL][8] +2 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
>     - shard-glk:          [PASS][9] -> [FAIL][10] +2 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html
>     - shard-tglb:         [PASS][11] -> [FAIL][12] +2 similar issues
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html

Not related.

> 
>   * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW):
>     - shard-iclb:         NOTRUN -> [SKIP][13] +7 similar issues
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html
> 
>   * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW):
>     - shard-tglb:         NOTRUN -> [SKIP][14] +11 similar issues
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html

Expected behavior.

> 
>   * igt@gem_wait@wait-rcs0:
>     - shard-hsw:          [PASS][15] -> [FAIL][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
>     - shard-snb:          [PASS][17] -> [FAIL][18] +1 similar issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html

Not related.

Thanks,
Janusz


> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_reloc@basic-spin-bsd:
>     - shard-snb:          [FAIL][19] ([i915#757]) -> [TIMEOUT][20]
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full:
> 
> ### New IGT tests (24) ###
> 
>   * igt@gem_userptr_blits@process-exit-mmap:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy@gtt:
>     - Statuses : 7 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy@uc:
>     - Statuses : 7 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy@wb:
>     - Statuses : 7 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
>     - Statuses : 7 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap@gtt:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap@uc:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap@wb:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@process-exit-mmap@wc:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@readonly-mmap-unsync@gtt:
>     - Statuses : 3 pass(s) 4 skip(s)
>     - Exec time: [0.01] s
> 
>   * igt@gem_userptr_blits@readonly-mmap-unsync@uc:
>     - Statuses : 3 pass(s) 4 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   * igt@gem_userptr_blits@readonly-mmap-unsync@wb:
>     - Statuses : 3 pass(s) 4 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   * igt@gem_userptr_blits@readonly-mmap-unsync@wc:
>     - Statuses : 3 pass(s) 4 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   * igt@sysfs_heartbeat_interval@idempotent:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_heartbeat_interval@invalid:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_heartbeat_interval@nopreempt:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_heartbeat_interval@off:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_heartbeat_interval@precise:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_preempt_timeout@idempotent:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_preempt_timeout@invalid:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_timeslice_duration@duration:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_timeslice_duration@idempotent:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@sysfs_timeslice_duration@timeout:
>     - Statuses :
>     - Exec time: [None] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4307_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_persistence@close-replace-race:
>     - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#1402])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
>     - shard-glk:          [PASS][23] -> [TIMEOUT][24] ([i915#1340])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html
> 
>   * igt@gem_ctx_shared@exec-single-timeline-bsd:
>     - shard-iclb:         [PASS][25] -> [SKIP][26] ([fdo#110841])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> 
>   * igt@gem_exec_schedule@implicit-write-read-bsd1:
>     - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> 
>   * igt@gem_exec_schedule@preempt-other-chain-bsd:
>     - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> 
>   * igt@gem_exec_schedule@preempt-queue-bsd1:
>     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - shard-kbl:          [PASS][33] -> [INCOMPLETE][34] ([i915#155])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - shard-iclb:         [PASS][35] -> [INCOMPLETE][36] ([i915#1185])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank:
>     - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#1297])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html
>     - shard-apl:          [PASS][39] -> [DMESG-WARN][40] ([i915#1297])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>     - shard-apl:          [PASS][41] -> [DMESG-WARN][42] ([i915#180])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-kbl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_plane_lowres@pipe-c-tiling-x:
>     - shard-hsw:          [PASS][45] -> [DMESG-WARN][46] ([i915#478])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#31])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html
>     - shard-glk:          [PASS][51] -> [FAIL][52] ([i915#31])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html
>     - shard-kbl:          [PASS][53] -> [FAIL][54] ([i915#31])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html
> 
>   * igt@perf_pmu@busy-no-semaphores-vcs1:
>     - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@rcs0-s3:
>     - shard-snb:          [FAIL][57] -> [PASS][58] +1 similar issue
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
> 
>   * igt@gem_ctx_persistence@close-replace-race:
>     - shard-tglb:         [INCOMPLETE][59] ([i915#1402]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html
>     - shard-apl:          [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html
> 
>   * igt@gem_eio@in-flight-contexts-1us:
>     - shard-hsw:          [TIMEOUT][63] -> [PASS][64]
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html
> 
>   * igt@gem_exec_parallel@bcs0-fds:
>     - shard-apl:          [FAIL][65] -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
>     - shard-iclb:         [FAIL][67] -> [PASS][68]
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html
>     - shard-tglb:         [FAIL][69] -> [PASS][70]
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html
>     - shard-glk:          [FAIL][71] -> [PASS][72]
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html
> 
>   * igt@gem_exec_schedule@implicit-read-write-bsd2:
>     - shard-iclb:         [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74]
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> 
>   * igt@gem_exec_schedule@pi-common-bsd:
>     - shard-iclb:         [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html
> 
>   * igt@gem_exec_schedule@preempt-hang-render:
>     - shard-apl:          [SKIP][77] ([fdo#109271]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html
>     - shard-glk:          [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html
>     - shard-iclb:         [SKIP][81] -> [PASS][82]
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html
>     - shard-tglb:         [SKIP][83] -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html
>     - shard-kbl:          [SKIP][85] ([fdo#109271]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html
> 
>   * igt@gem_exec_schedule@reorder-wide-bsd:
>     - shard-iclb:         [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html
> 
>   * igt@gem_userptr_blits@sync-unmap-cycles:
>     - shard-snb:          [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
>     - shard-hsw:          [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92]
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [DMESG-WARN][93] ([i915#180]) -> [PASS][94]
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-iclb:         [FAIL][95] ([i915#447]) -> [PASS][96]
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_pm_rpm@system-suspend-devices:
>     - shard-iclb:         [SKIP][97] ([i915#1316]) -> [PASS][98]
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html
>     - shard-tglb:         [SKIP][99] ([i915#1316]) -> [PASS][100]
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html
> 
>   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
>     - shard-glk:          [FAIL][101] ([i915#72]) -> [PASS][102]
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-hsw:          [INCOMPLETE][103] ([i915#61]) -> [PASS][104]
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
>     - shard-kbl:          [FAIL][105] ([i915#49]) -> [PASS][106]
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
>     - shard-glk:          [FAIL][107] ([i915#49]) -> [PASS][108]
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
>     - shard-apl:          [FAIL][109] ([i915#49]) -> [PASS][110]
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
>     - shard-snb:          [DMESG-WARN][111] ([i915#478]) -> [PASS][112]
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-apl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang:
>     - shard-tglb:         [SKIP][117] ([fdo#112015]) -> [PASS][118]
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> 
>   * igt@perf_pmu@busy-vcs1:
>     - shard-iclb:         [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html
> 
>   * igt@perf_pmu@most-busy-idle-check-all-bcs0:
>     - shard-hsw:          [FAIL][121] -> [PASS][122] +1 similar issue
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
> 
>   * igt@prime_busy@hang-bsd2:
>     - shard-iclb:         [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt:
>     - shard-hsw:          [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478])
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt:
>     - shard-hsw:          [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478])
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
>     - shard-snb:          [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-tglb:         [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454])
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92])
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
>     - shard-apl:          ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
>   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
>   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
>   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
>   [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
>   [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
>   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
>   [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
>   [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
>   [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
>   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
>   [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
>   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
>   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
>   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
>   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
>   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
>   [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757
>   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> 
> 
> Participating hosts (10 -> 8)
> ------------------------------
> 
>   Missing    (2): pig-skl-6260u pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5510 -> IGTPW_4307
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
>   IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits:  Refresh other now MMAP_GTT dependent subtests (rev2)
  2020-03-17  8:53   ` [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Janusz Krzysztofik
@ 2020-03-17 10:40     ` Petri Latvala
  2020-03-17 13:59       ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 8+ messages in thread
From: Petri Latvala @ 2020-03-17 10:40 UTC (permalink / raw)
  To: Janusz Krzysztofik, Lakshminarayana Vudum; +Cc: igt-dev, intel-gfx

Lakshmi, see below.

On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote:
> Hi,
> 
> On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote:
> > == Series Details ==
> > 
> > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
> > URL   : https://patchwork.freedesktop.org/series/74201/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> 
> False positive, see below.
> 
> >   Serious unknown changes coming with IGTPW_4307_full absolutely need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in IGTPW_4307_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_4307/index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in IGTPW_4307_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@gem_ctx_shared@single-timeline:
> >     - shard-snb:          NOTRUN -> [FAIL][1]
> >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html
> >     - shard-hsw:          NOTRUN -> [FAIL][2] +1 similar issue
> >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_ctx_shared@single-timeline.html
> > 
> >   * igt@gem_exec_fence@basic-await@vcs0:
> >     - shard-kbl:          [PASS][3] -> [FAIL][4] +3 similar issues
> >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html
> >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-iclb:         [PASS][5] -> [FAIL][6]
> >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html
> >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-apl:          [PASS][7] -> [FAIL][8] +2 similar issues
> >    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> >    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-glk:          [PASS][9] -> [FAIL][10] +2 similar issues
> >    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html
> >    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-tglb:         [PASS][11] -> [FAIL][12] +2 similar issues
> >    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html
> >    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_exec_fence@basic-await@vcs0.html
> 
> Not related.
> 
> > 
> >   * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW):
> >     - shard-iclb:         NOTRUN -> [SKIP][13] +7 similar issues
> >    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@gem_userptr_blits@process-exit-mmap-busy@gtt.html
> > 
> >   * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW):
> >     - shard-tglb:         NOTRUN -> [SKIP][14] +11 similar issues
> >    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html
> 
> Expected behavior.
> 
> > 
> >   * igt@gem_wait@wait-rcs0:
> >     - shard-hsw:          [PASS][15] -> [FAIL][16]
> >    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html
> >    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_wait@wait-rcs0.html
> > 
> >   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
> >     - shard-snb:          [PASS][17] -> [FAIL][18] +1 similar issue
> >    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> >    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> 
> Not related.
> 
> Thanks,
> Janusz
> 
> 
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@gem_exec_reloc@basic-spin-bsd:
> >     - shard-snb:          [FAIL][19] ([i915#757]) -> [TIMEOUT][20]
> >    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html
> >    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@gem_exec_reloc@basic-spin-bsd.html
> > 
> >   
> > New tests
> > ---------
> > 
> >   New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full:
> > 
> > ### New IGT tests (24) ###
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@gtt:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@uc:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@wb:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@gtt:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@uc:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@wb:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@wc:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@gtt:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.01] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@uc:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@wb:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@wc:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@sysfs_heartbeat_interval@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@invalid:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@nopreempt:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@off:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@precise:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_preempt_timeout@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_preempt_timeout@invalid:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@duration:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@timeout:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   
> > 
> > Known issues
> > ------------
> > 
> >   Here are the changes found in IGTPW_4307_full that come from known issues:
> > 
> > ### IGT changes ###
> > 
> > #### Issues hit ####
> > 
> >   * igt@gem_ctx_persistence@close-replace-race:
> >     - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#1402])
> >    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> >    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> >     - shard-glk:          [PASS][23] -> [TIMEOUT][24] ([i915#1340])
> >    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
> >    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@gem_ctx_persistence@close-replace-race.html
> > 
> >   * igt@gem_ctx_shared@exec-single-timeline-bsd:
> >     - shard-iclb:         [PASS][25] -> [SKIP][26] ([fdo#110841])
> >    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> >    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> > 
> >   * igt@gem_exec_schedule@implicit-write-read-bsd1:
> >     - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677])
> >    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> >    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> > 
> >   * igt@gem_exec_schedule@preempt-other-chain-bsd:
> >     - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues
> >    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> >    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> > 
> >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> >     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues
> >    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
> >    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > 
> >   * igt@gem_exec_suspend@basic-s3:
> >     - shard-kbl:          [PASS][33] -> [INCOMPLETE][34] ([i915#155])
> >    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html
> >    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_exec_suspend@basic-s3.html
> > 
> >   * igt@kms_fbcon_fbt@psr-suspend:
> >     - shard-iclb:         [PASS][35] -> [INCOMPLETE][36] ([i915#1185])
> >    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html
> >    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html
> > 
> >   * igt@kms_flip@flip-vs-expired-vblank:
> >     - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#1297])
> >    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html
> >    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html
> >     - shard-apl:          [PASS][39] -> [DMESG-WARN][40] ([i915#1297])
> >    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html
> >    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@kms_flip@flip-vs-expired-vblank.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
> >     - shard-apl:          [PASS][41] -> [DMESG-WARN][42] ([i915#180])
> >    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> >    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> >     - shard-kbl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues
> >    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> >    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > 
> >   * igt@kms_plane_lowres@pipe-c-tiling-x:
> >     - shard-hsw:          [PASS][45] -> [DMESG-WARN][46] ([i915#478])
> >    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html
> >    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html
> > 
> >   * igt@kms_psr@psr2_sprite_plane_move:
> >     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues
> >    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> >    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
> > 
> >   * igt@kms_setmode@basic:
> >     - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#31])
> >    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html
> >    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html
> >     - shard-glk:          [PASS][51] -> [FAIL][52] ([i915#31])
> >    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html
> >    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html
> >     - shard-kbl:          [PASS][53] -> [FAIL][54] ([i915#31])
> >    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html
> >    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_setmode@basic.html
> > 
> >   * igt@perf_pmu@busy-no-semaphores-vcs1:
> >     - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues
> >    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
> >    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html
> > 
> >   
> > #### Possible fixes ####
> > 
> >   * igt@gem_ctx_isolation@rcs0-s3:
> >     - shard-snb:          [FAIL][57] -> [PASS][58] +1 similar issue
> >    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
> >    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
> > 
> >   * igt@gem_ctx_persistence@close-replace-race:
> >     - shard-tglb:         [INCOMPLETE][59] ([i915#1402]) -> [PASS][60]
> >    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html
> >    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html
> >     - shard-apl:          [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62]
> >    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html
> >    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@gem_ctx_persistence@close-replace-race.html
> > 
> >   * igt@gem_eio@in-flight-contexts-1us:
> >     - shard-hsw:          [TIMEOUT][63] -> [PASS][64]
> >    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html
> >    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_eio@in-flight-contexts-1us.html
> > 
> >   * igt@gem_exec_parallel@bcs0-fds:
> >     - shard-apl:          [FAIL][65] -> [PASS][66]
> >    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> >    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-iclb:         [FAIL][67] -> [PASS][68]
> >    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html
> >    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-tglb:         [FAIL][69] -> [PASS][70]
> >    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html
> >    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-glk:          [FAIL][71] -> [PASS][72]
> >    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html
> >    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@gem_exec_parallel@bcs0-fds.html
> > 
> >   * igt@gem_exec_schedule@implicit-read-write-bsd2:
> >     - shard-iclb:         [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74]
> >    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> >    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> > 
> >   * igt@gem_exec_schedule@pi-common-bsd:
> >     - shard-iclb:         [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue
> >    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
> >    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd.html
> > 
> >   * igt@gem_exec_schedule@preempt-hang-render:
> >     - shard-apl:          [SKIP][77] ([fdo#109271]) -> [PASS][78]
> >    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html
> >    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-glk:          [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue
> >    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html
> >    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-iclb:         [SKIP][81] -> [PASS][82]
> >    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html
> >    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-tglb:         [SKIP][83] -> [PASS][84]
> >    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html
> >    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-kbl:          [SKIP][85] ([fdo#109271]) -> [PASS][86]
> >    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html
> >    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@gem_exec_schedule@preempt-hang-render.html
> > 
> >   * igt@gem_exec_schedule@reorder-wide-bsd:
> >     - shard-iclb:         [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues
> >    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
> >    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html
> > 
> >   * igt@gem_userptr_blits@sync-unmap-cycles:
> >     - shard-snb:          [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue
> >    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
> >    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
> >     - shard-hsw:          [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92]
> >    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
> >    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html
> > 
> >   * igt@gem_workarounds@suspend-resume-fd:
> >     - shard-kbl:          [DMESG-WARN][93] ([i915#180]) -> [PASS][94]
> >    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> >    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> > 
> >   * igt@i915_pm_dc@dc5-dpms:
> >     - shard-iclb:         [FAIL][95] ([i915#447]) -> [PASS][96]
> >    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
> >    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@i915_pm_dc@dc5-dpms.html
> > 
> >   * igt@i915_pm_rpm@system-suspend-devices:
> >     - shard-iclb:         [SKIP][97] ([i915#1316]) -> [PASS][98]
> >    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html
> >    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html
> >     - shard-tglb:         [SKIP][99] ([i915#1316]) -> [PASS][100]
> >    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html
> >    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@i915_pm_rpm@system-suspend-devices.html
> > 
> >   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> >     - shard-glk:          [FAIL][101] ([i915#72]) -> [PASS][102]
> >    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> >    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> > 
> >   * igt@kms_flip@flip-vs-suspend:
> >     - shard-hsw:          [INCOMPLETE][103] ([i915#61]) -> [PASS][104]
> >    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
> >    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
> >     - shard-kbl:          [FAIL][105] ([i915#49]) -> [PASS][106]
> >    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >     - shard-glk:          [FAIL][107] ([i915#49]) -> [PASS][108]
> >    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >     - shard-apl:          [FAIL][109] ([i915#49]) -> [PASS][110]
> >    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
> >     - shard-snb:          [DMESG-WARN][111] ([i915#478]) -> [PASS][112]
> >    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> >    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> >     - shard-apl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
> >    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> >    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > 
> >   * igt@kms_psr@psr2_primary_page_flip:
> >     - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
> >    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html
> >    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
> > 
> >   * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang:
> >     - shard-tglb:         [SKIP][117] ([fdo#112015]) -> [PASS][118]
> >    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> >    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> > 
> >   * igt@perf_pmu@busy-vcs1:
> >     - shard-iclb:         [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues
> >    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html
> >    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@perf_pmu@busy-vcs1.html
> > 
> >   * igt@perf_pmu@most-busy-idle-check-all-bcs0:
> >     - shard-hsw:          [FAIL][121] -> [PASS][122] +1 similar issue
> >    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
> >    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
> > 
> >   * igt@prime_busy@hang-bsd2:
> >     - shard-iclb:         [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues
> >    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html
> >    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@prime_busy@hang-bsd2.html
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt:
> >     - shard-hsw:          [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478])
> >    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
> >    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
> > 
> >   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt:
> >     - shard-hsw:          [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478])
> >    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >     - shard-snb:          [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478])
> >    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > 
> >   * igt@i915_pm_dc@dc6-dpms:
> >     - shard-tglb:         [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454])
> >    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
> >    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@i915_pm_dc@dc6-dpms.html
> > 
> >   * igt@runner@aborted:
> >     - shard-kbl:          [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92])
> >    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html
> >    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> >    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> >     - shard-apl:          ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927])
> >    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html
> >    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html
> >    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@runner@aborted.html
> > 
> >   
> >   {name}: This element is suppressed. This means it is ignored when computing
> >           the status of the difference (SUCCESS, WARNING, or FAILURE).
> > 
> >   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
> >   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> >   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
> >   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> >   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
> >   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
> >   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
> >   [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
> >   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
> >   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
> >   [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
> >   [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
> >   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
> >   [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
> >   [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
> >   [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
> >   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> >   [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447
> >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> >   [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
> >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> >   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
> >   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
> >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> >   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
> >   [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757
> >   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> > 
> > 
> > Participating hosts (10 -> 8)
> > ------------------------------
> > 
> >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > 
> > 
> > Build changes
> > -------------
> > 
> >   * CI: CI-20190529 -> None
> >   * IGT: IGT_5510 -> IGTPW_4307
> >   * Piglit: piglit_4509 -> None
> > 
> >   CI-20190529: 20190529
> >   CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux
> >   IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> >   IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> > 
> > == Logs ==
> > 
> > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
  2020-03-17 10:40     ` Petri Latvala
@ 2020-03-17 13:59       ` Vudum, Lakshminarayana
  2020-03-17 16:32         ` Janusz Krzysztofik
  0 siblings, 1 reply; 8+ messages in thread
From: Vudum, Lakshminarayana @ 2020-03-17 13:59 UTC (permalink / raw)
  To: Latvala, Petri, Janusz Krzysztofik; +Cc: igt-dev, intel-gfx

I had to re-report more than once as there were many issues. All good now.

Thanks,
Lakshmi.
-----Original Message-----
From: Latvala, Petri <petri.latvala@intel.com> 
Sent: Tuesday, March 17, 2020 12:40 PM
To: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)

Lakshmi, see below.

On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote:
> Hi,
> 
> On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote:
> > == Series Details ==
> > 
> > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
> > URL   : https://patchwork.freedesktop.org/series/74201/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full 
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> 
> False positive, see below.
> 
> >   Serious unknown changes coming with IGTPW_4307_full absolutely need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in IGTPW_4307_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_4307/index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in IGTPW_4307_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@gem_ctx_shared@single-timeline:
> >     - shard-snb:          NOTRUN -> [FAIL][1]
> >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html
> >     - shard-hsw:          NOTRUN -> [FAIL][2] +1 similar issue
> >    [2]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > em_ctx_shared@single-timeline.html
> > 
> >   * igt@gem_exec_fence@basic-await@vcs0:
> >     - shard-kbl:          [PASS][3] -> [FAIL][4] +3 similar issues
> >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html
> >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-iclb:         [PASS][5] -> [FAIL][6]
> >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html
> >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-apl:          [PASS][7] -> [FAIL][8] +2 similar issues
> >    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> >    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-glk:          [PASS][9] -> [FAIL][10] +2 similar issues
> >    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html
> >    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html
> >     - shard-tglb:         [PASS][11] -> [FAIL][12] +2 similar issues
> >    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html
> >    [12]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > gem_exec_fence@basic-await@vcs0.html
> 
> Not related.
> 
> > 
> >   * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW):
> >     - shard-iclb:         NOTRUN -> [SKIP][13] +7 similar issues
> >    [13]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@
> > gem_userptr_blits@process-exit-mmap-busy@gtt.html
> > 
> >   * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW):
> >     - shard-tglb:         NOTRUN -> [SKIP][14] +11 similar issues
> >    [14]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > gem_userptr_blits@process-exit-mmap-busy@uc.html
> 
> Expected behavior.
> 
> > 
> >   * igt@gem_wait@wait-rcs0:
> >     - shard-hsw:          [PASS][15] -> [FAIL][16]
> >    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html
> >    [16]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > em_wait@wait-rcs0.html
> > 
> >   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
> >     - shard-snb:          [PASS][17] -> [FAIL][18] +1 similar issue
> >    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> >    [18]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@k
> > ms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> 
> Not related.
> 
> Thanks,
> Janusz
> 
> 
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@gem_exec_reloc@basic-spin-bsd:
> >     - shard-snb:          [FAIL][19] ([i915#757]) -> [TIMEOUT][20]
> >    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html
> >    [20]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@g
> > em_exec_reloc@basic-spin-bsd.html
> > 
> >   
> > New tests
> > ---------
> > 
> >   New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full:
> > 
> > ### New IGT tests (24) ###
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@gtt:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@uc:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@wb:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
> >     - Statuses : 7 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@gtt:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@uc:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@wb:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@process-exit-mmap@wc:
> >     - Statuses : 6 skip(s)
> >     - Exec time: [0.0] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@gtt:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.01] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@uc:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@wb:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@gem_userptr_blits@readonly-mmap-unsync@wc:
> >     - Statuses : 3 pass(s) 4 skip(s)
> >     - Exec time: [0.0, 0.00] s
> > 
> >   * igt@sysfs_heartbeat_interval@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@invalid:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@nopreempt:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@off:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_heartbeat_interval@precise:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_preempt_timeout@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_preempt_timeout@invalid:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@duration:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@idempotent:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   * igt@sysfs_timeslice_duration@timeout:
> >     - Statuses :
> >     - Exec time: [None] s
> > 
> >   
> > 
> > Known issues
> > ------------
> > 
> >   Here are the changes found in IGTPW_4307_full that come from known issues:
> > 
> > ### IGT changes ###
> > 
> > #### Issues hit ####
> > 
> >   * igt@gem_ctx_persistence@close-replace-race:
> >     - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#1402])
> >    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> >    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> >     - shard-glk:          [PASS][23] -> [TIMEOUT][24] ([i915#1340])
> >    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
> >    [24]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@g
> > em_ctx_persistence@close-replace-race.html
> > 
> >   * igt@gem_ctx_shared@exec-single-timeline-bsd:
> >     - shard-iclb:         [PASS][25] -> [SKIP][26] ([fdo#110841])
> >    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> >    [26]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > gem_ctx_shared@exec-single-timeline-bsd.html
> > 
> >   * igt@gem_exec_schedule@implicit-write-read-bsd1:
> >     - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677])
> >    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> >    [28]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@
> > gem_exec_schedule@implicit-write-read-bsd1.html
> > 
> >   * igt@gem_exec_schedule@preempt-other-chain-bsd:
> >     - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues
> >    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> >    [30]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@
> > gem_exec_schedule@preempt-other-chain-bsd.html
> > 
> >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> >     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues
> >    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
> >    [32]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@
> > gem_exec_schedule@preempt-queue-bsd1.html
> > 
> >   * igt@gem_exec_suspend@basic-s3:
> >     - shard-kbl:          [PASS][33] -> [INCOMPLETE][34] ([i915#155])
> >    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html
> >    [34]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@g
> > em_exec_suspend@basic-s3.html
> > 
> >   * igt@kms_fbcon_fbt@psr-suspend:
> >     - shard-iclb:         [PASS][35] -> [INCOMPLETE][36] ([i915#1185])
> >    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html
> >    [36]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@
> > kms_fbcon_fbt@psr-suspend.html
> > 
> >   * igt@kms_flip@flip-vs-expired-vblank:
> >     - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#1297])
> >    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html
> >    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html
> >     - shard-apl:          [PASS][39] -> [DMESG-WARN][40] ([i915#1297])
> >    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html
> >    [40]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@k
> > ms_flip@flip-vs-expired-vblank.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
> >     - shard-apl:          [PASS][41] -> [DMESG-WARN][42] ([i915#180])
> >    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> >    [42]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@k
> > ms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> >     - shard-kbl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues
> >    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> >    [44]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@k
> > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > 
> >   * igt@kms_plane_lowres@pipe-c-tiling-x:
> >     - shard-hsw:          [PASS][45] -> [DMESG-WARN][46] ([i915#478])
> >    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html
> >    [46]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@k
> > ms_plane_lowres@pipe-c-tiling-x.html
> > 
> >   * igt@kms_psr@psr2_sprite_plane_move:
> >     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues
> >    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> >    [48]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > kms_psr@psr2_sprite_plane_move.html
> > 
> >   * igt@kms_setmode@basic:
> >     - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#31])
> >    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html
> >    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html
> >     - shard-glk:          [PASS][51] -> [FAIL][52] ([i915#31])
> >    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html
> >    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html
> >     - shard-kbl:          [PASS][53] -> [FAIL][54] ([i915#31])
> >    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html
> >    [54]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@k
> > ms_setmode@basic.html
> > 
> >   * igt@perf_pmu@busy-no-semaphores-vcs1:
> >     - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues
> >    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
> >    [56]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@
> > perf_pmu@busy-no-semaphores-vcs1.html
> > 
> >   
> > #### Possible fixes ####
> > 
> >   * igt@gem_ctx_isolation@rcs0-s3:
> >     - shard-snb:          [FAIL][57] -> [PASS][58] +1 similar issue
> >    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
> >    [58]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g
> > em_ctx_isolation@rcs0-s3.html
> > 
> >   * igt@gem_ctx_persistence@close-replace-race:
> >     - shard-tglb:         [INCOMPLETE][59] ([i915#1402]) -> [PASS][60]
> >    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html
> >    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html
> >     - shard-apl:          [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62]
> >    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html
> >    [62]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@g
> > em_ctx_persistence@close-replace-race.html
> > 
> >   * igt@gem_eio@in-flight-contexts-1us:
> >     - shard-hsw:          [TIMEOUT][63] -> [PASS][64]
> >    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html
> >    [64]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g
> > em_eio@in-flight-contexts-1us.html
> > 
> >   * igt@gem_exec_parallel@bcs0-fds:
> >     - shard-apl:          [FAIL][65] -> [PASS][66]
> >    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> >    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-iclb:         [FAIL][67] -> [PASS][68]
> >    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html
> >    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-tglb:         [FAIL][69] -> [PASS][70]
> >    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html
> >    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html
> >     - shard-glk:          [FAIL][71] -> [PASS][72]
> >    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html
> >    [72]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@g
> > em_exec_parallel@bcs0-fds.html
> > 
> >   * igt@gem_exec_schedule@implicit-read-write-bsd2:
> >     - shard-iclb:         [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74]
> >    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> >    [74]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@
> > gem_exec_schedule@implicit-read-write-bsd2.html
> > 
> >   * igt@gem_exec_schedule@pi-common-bsd:
> >     - shard-iclb:         [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue
> >    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
> >    [76]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@
> > gem_exec_schedule@pi-common-bsd.html
> > 
> >   * igt@gem_exec_schedule@preempt-hang-render:
> >     - shard-apl:          [SKIP][77] ([fdo#109271]) -> [PASS][78]
> >    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html
> >    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-glk:          [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue
> >    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html
> >    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-iclb:         [SKIP][81] -> [PASS][82]
> >    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html
> >    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-tglb:         [SKIP][83] -> [PASS][84]
> >    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html
> >    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html
> >     - shard-kbl:          [SKIP][85] ([fdo#109271]) -> [PASS][86]
> >    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html
> >    [86]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@g
> > em_exec_schedule@preempt-hang-render.html
> > 
> >   * igt@gem_exec_schedule@reorder-wide-bsd:
> >     - shard-iclb:         [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues
> >    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
> >    [88]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@
> > gem_exec_schedule@reorder-wide-bsd.html
> > 
> >   * igt@gem_userptr_blits@sync-unmap-cycles:
> >     - shard-snb:          [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue
> >    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
> >    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
> >     - shard-hsw:          [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92]
> >    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
> >    [92]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > em_userptr_blits@sync-unmap-cycles.html
> > 
> >   * igt@gem_workarounds@suspend-resume-fd:
> >     - shard-kbl:          [DMESG-WARN][93] ([i915#180]) -> [PASS][94]
> >    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> >    [94]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@g
> > em_workarounds@suspend-resume-fd.html
> > 
> >   * igt@i915_pm_dc@dc5-dpms:
> >     - shard-iclb:         [FAIL][95] ([i915#447]) -> [PASS][96]
> >    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
> >    [96]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > i915_pm_dc@dc5-dpms.html
> > 
> >   * igt@i915_pm_rpm@system-suspend-devices:
> >     - shard-iclb:         [SKIP][97] ([i915#1316]) -> [PASS][98]
> >    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html
> >    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html
> >     - shard-tglb:         [SKIP][99] ([i915#1316]) -> [PASS][100]
> >    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html
> >    [100]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > i915_pm_rpm@system-suspend-devices.html
> > 
> >   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> >     - shard-glk:          [FAIL][101] ([i915#72]) -> [PASS][102]
> >    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> >    [102]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@k
> > ms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> > 
> >   * igt@kms_flip@flip-vs-suspend:
> >     - shard-hsw:          [INCOMPLETE][103] ([i915#61]) -> [PASS][104]
> >    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
> >    [104]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@k
> > ms_flip@flip-vs-suspend.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
> >     - shard-kbl:          [FAIL][105] ([i915#49]) -> [PASS][106]
> >    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >     - shard-glk:          [FAIL][107] ([i915#49]) -> [PASS][108]
> >    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >     - shard-apl:          [FAIL][109] ([i915#49]) -> [PASS][110]
> >    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> >    [110]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@k
> > ms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
> >     - shard-snb:          [DMESG-WARN][111] ([i915#478]) -> [PASS][112]
> >    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> >    [112]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@k
> > ms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> > 
> >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> >     - shard-apl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
> >    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> >    [114]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@k
> > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > 
> >   * igt@kms_psr@psr2_primary_page_flip:
> >     - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
> >    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html
> >    [116]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@
> > kms_psr@psr2_primary_page_flip.html
> > 
> >   * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang:
> >     - shard-tglb:         [SKIP][117] ([fdo#112015]) -> [PASS][118]
> >    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> >    [118]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@
> > kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> > 
> >   * igt@perf_pmu@busy-vcs1:
> >     - shard-iclb:         [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues
> >    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html
> >    [120]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > perf_pmu@busy-vcs1.html
> > 
> >   * igt@perf_pmu@most-busy-idle-check-all-bcs0:
> >     - shard-hsw:          [FAIL][121] -> [PASS][122] +1 similar issue
> >    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
> >    [122]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@p
> > erf_pmu@most-busy-idle-check-all-bcs0.html
> > 
> >   * igt@prime_busy@hang-bsd2:
> >     - shard-iclb:         [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues
> >    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html
> >    [124]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@
> > prime_busy@hang-bsd2.html
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt:
> >     - shard-hsw:          [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478])
> >    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
> >    [126]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g
> > em_userptr_blits@map-fixed-invalidate-busy@gtt.html
> > 
> >   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt:
> >     - shard-hsw:          [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478])
> >    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >     - shard-snb:          [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478])
> >    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> >    [130]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g
> > em_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > 
> >   * igt@i915_pm_dc@dc6-dpms:
> >     - shard-tglb:         [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454])
> >    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
> >    [132]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@
> > i915_pm_dc@dc6-dpms.html
> > 
> >   * igt@runner@aborted:
> >     - shard-kbl:          [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92])
> >    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html
> >    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> >    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> >     - shard-apl:          ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927])
> >    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html
> >    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html
> >    [138]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@r
> > unner@aborted.html
> > 
> >   
> >   {name}: This element is suppressed. This means it is ignored when computing
> >           the status of the difference (SUCCESS, WARNING, or FAILURE).
> > 
> >   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
> >   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> >   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
> >   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> >   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
> >   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
> >   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
> >   [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
> >   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
> >   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
> >   [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
> >   [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
> >   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
> >   [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
> >   [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
> >   [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
> >   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> >   [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447
> >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> >   [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
> >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> >   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
> >   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
> >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> >   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
> >   [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757
> >   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> > 
> > 
> > Participating hosts (10 -> 8)
> > ------------------------------
> > 
> >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > 
> > 
> > Build changes
> > -------------
> > 
> >   * CI: CI-20190529 -> None
> >   * IGT: IGT_5510 -> IGTPW_4307
> >   * Piglit: piglit_4509 -> None
> > 
> >   CI-20190529: 20190529
> >   CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux
> >   IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> >   IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > git://anongit.freedesktop.org/piglit
> > 
> > == Logs ==
> > 
> > For more details see: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
  2020-03-17 13:59       ` Vudum, Lakshminarayana
@ 2020-03-17 16:32         ` Janusz Krzysztofik
  0 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-17 16:32 UTC (permalink / raw)
  To: Vudum, Lakshminarayana, Latvala, Petri; +Cc: igt-dev, intel-gfx

On Tue, 2020-03-17 at 13:59 +0000, Vudum, Lakshminarayana wrote:
> I had to re-report more than once as there were many issues. All good now.

Thank you :-)
Janusz


> 
> Thanks,
> Lakshmi.
> -----Original Message-----
> From: Latvala, Petri <petri.latvala@intel.com> 
> Sent: Tuesday, March 17, 2020 12:40 PM
> To: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Cc: igt-dev@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
> Subject: Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
> 
> Lakshmi, see below.
> 
> On Tue, Mar 17, 2020 at 09:53:51AM +0100, Janusz Krzysztofik wrote:
> > Hi,
> > 
> > On Mon, 2020-03-16 at 19:25 +0000, Patchwork wrote:
> > > == Series Details ==
> > > 
> > > Series: tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2)
> > > URL   : https://patchwork.freedesktop.org/series/74201/
> > > State : failure
> > > 
> > > == Summary ==
> > > 
> > > CI Bug Log - changes from CI_DRM_8137_full -> IGTPW_4307_full 
> > > ====================================================
> > > 
> > > Summary
> > > -------
> > > 
> > >   **FAILURE**
> > 
> > False positive, see below.
> > 
> > >   Serious unknown changes coming with IGTPW_4307_full absolutely need to be
> > >   verified manually.
> > >   
> > >   If you think the reported changes have nothing to do with the changes
> > >   introduced in IGTPW_4307_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_4307/index.html
> > > 
> > > Possible new issues
> > > -------------------
> > > 
> > >   Here are the unknown changes that may have been introduced in IGTPW_4307_full:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Possible regressions ####
> > > 
> > >   * igt@gem_ctx_shared@single-timeline:
> > >     - shard-snb:          NOTRUN -> [FAIL][1]
> > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@gem_ctx_shared@single-timeline.html
> > >     - shard-hsw:          NOTRUN -> [FAIL][2] +1 similar issue
> > >    [2]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > > em_ctx_shared@single-timeline.html
> > > 
> > >   * igt@gem_exec_fence@basic-await@vcs0:
> > >     - shard-kbl:          [PASS][3] -> [FAIL][4] +3 similar issues
> > >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl1/igt@gem_exec_fence@basic-await@vcs0.html
> > >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl7/igt@gem_exec_fence@basic-await@vcs0.html
> > >     - shard-iclb:         [PASS][5] -> [FAIL][6]
> > >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_fence@basic-await@vcs0.html
> > >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@gem_exec_fence@basic-await@vcs0.html
> > >     - shard-apl:          [PASS][7] -> [FAIL][8] +2 similar issues
> > >    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> > >    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@gem_exec_fence@basic-await@vcs0.html
> > >     - shard-glk:          [PASS][9] -> [FAIL][10] +2 similar issues
> > >    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk6/igt@gem_exec_fence@basic-await@vcs0.html
> > >    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk4/igt@gem_exec_fence@basic-await@vcs0.html
> > >     - shard-tglb:         [PASS][11] -> [FAIL][12] +2 similar issues
> > >    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@gem_exec_fence@basic-await@vcs0.html
> > >    [12]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > > gem_exec_fence@basic-await@vcs0.html
> > 
> > Not related.
> > 
> > >   * {igt@gem_userptr_blits@process-exit-mmap-busy@gtt} (NEW):
> > >     - shard-iclb:         NOTRUN -> [SKIP][13] +7 similar issues
> > >    [13]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@
> > > gem_userptr_blits@process-exit-mmap-busy@gtt.html
> > > 
> > >   * {igt@gem_userptr_blits@process-exit-mmap-busy@uc} (NEW):
> > >     - shard-tglb:         NOTRUN -> [SKIP][14] +11 similar issues
> > >    [14]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > > gem_userptr_blits@process-exit-mmap-busy@uc.html
> > 
> > Expected behavior.
> > 
> > >   * igt@gem_wait@wait-rcs0:
> > >     - shard-hsw:          [PASS][15] -> [FAIL][16]
> > >    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_wait@wait-rcs0.html
> > >    [16]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > > em_wait@wait-rcs0.html
> > > 
> > >   * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
> > >     - shard-snb:          [PASS][17] -> [FAIL][18] +1 similar issue
> > >    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> > >    [18]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb5/igt@k
> > > ms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html
> > 
> > Not related.
> > 
> > Thanks,
> > Janusz
> > 
> > 
> > >   
> > > #### Warnings ####
> > > 
> > >   * igt@gem_exec_reloc@basic-spin-bsd:
> > >     - shard-snb:          [FAIL][19] ([i915#757]) -> [TIMEOUT][20]
> > >    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_exec_reloc@basic-spin-bsd.html
> > >    [20]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@g
> > > em_exec_reloc@basic-spin-bsd.html
> > > 
> > >   
> > > New tests
> > > ---------
> > > 
> > >   New tests have been introduced between CI_DRM_8137_full and IGTPW_4307_full:
> > > 
> > > ### New IGT tests (24) ###
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap-busy:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap-busy@gtt:
> > >     - Statuses : 7 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap-busy@uc:
> > >     - Statuses : 7 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap-busy@wb:
> > >     - Statuses : 7 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap-busy@wc:
> > >     - Statuses : 7 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap@gtt:
> > >     - Statuses : 6 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap@uc:
> > >     - Statuses : 6 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap@wb:
> > >     - Statuses : 6 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@process-exit-mmap@wc:
> > >     - Statuses : 6 skip(s)
> > >     - Exec time: [0.0] s
> > > 
> > >   * igt@gem_userptr_blits@readonly-mmap-unsync@gtt:
> > >     - Statuses : 3 pass(s) 4 skip(s)
> > >     - Exec time: [0.01] s
> > > 
> > >   * igt@gem_userptr_blits@readonly-mmap-unsync@uc:
> > >     - Statuses : 3 pass(s) 4 skip(s)
> > >     - Exec time: [0.0, 0.00] s
> > > 
> > >   * igt@gem_userptr_blits@readonly-mmap-unsync@wb:
> > >     - Statuses : 3 pass(s) 4 skip(s)
> > >     - Exec time: [0.0, 0.00] s
> > > 
> > >   * igt@gem_userptr_blits@readonly-mmap-unsync@wc:
> > >     - Statuses : 3 pass(s) 4 skip(s)
> > >     - Exec time: [0.0, 0.00] s
> > > 
> > >   * igt@sysfs_heartbeat_interval@idempotent:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_heartbeat_interval@invalid:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_heartbeat_interval@nopreempt:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_heartbeat_interval@off:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_heartbeat_interval@precise:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_preempt_timeout@idempotent:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_preempt_timeout@invalid:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_timeslice_duration@duration:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_timeslice_duration@idempotent:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   * igt@sysfs_timeslice_duration@timeout:
> > >     - Statuses :
> > >     - Exec time: [None] s
> > > 
> > >   
> > > 
> > > Known issues
> > > ------------
> > > 
> > >   Here are the changes found in IGTPW_4307_full that come from known issues:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Issues hit ####
> > > 
> > >   * igt@gem_ctx_persistence@close-replace-race:
> > >     - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#1402])
> > >    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> > >    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
> > >     - shard-glk:          [PASS][23] -> [TIMEOUT][24] ([i915#1340])
> > >    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
> > >    [24]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk8/igt@g
> > > em_ctx_persistence@close-replace-race.html
> > > 
> > >   * igt@gem_ctx_shared@exec-single-timeline-bsd:
> > >     - shard-iclb:         [PASS][25] -> [SKIP][26] ([fdo#110841])
> > >    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> > >    [26]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > > gem_ctx_shared@exec-single-timeline-bsd.html
> > > 
> > >   * igt@gem_exec_schedule@implicit-write-read-bsd1:
> > >     - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109276] / [i915#677])
> > >    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> > >    [28]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb7/igt@
> > > gem_exec_schedule@implicit-write-read-bsd1.html
> > > 
> > >   * igt@gem_exec_schedule@preempt-other-chain-bsd:
> > >     - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#112146]) +4 similar issues
> > >    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> > >    [30]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@
> > > gem_exec_schedule@preempt-other-chain-bsd.html
> > > 
> > >   * igt@gem_exec_schedule@preempt-queue-bsd1:
> > >     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109276]) +13 similar issues
> > >    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
> > >    [32]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@
> > > gem_exec_schedule@preempt-queue-bsd1.html
> > > 
> > >   * igt@gem_exec_suspend@basic-s3:
> > >     - shard-kbl:          [PASS][33] -> [INCOMPLETE][34] ([i915#155])
> > >    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_exec_suspend@basic-s3.html
> > >    [34]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@g
> > > em_exec_suspend@basic-s3.html
> > > 
> > >   * igt@kms_fbcon_fbt@psr-suspend:
> > >     - shard-iclb:         [PASS][35] -> [INCOMPLETE][36] ([i915#1185])
> > >    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html
> > >    [36]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb3/igt@
> > > kms_fbcon_fbt@psr-suspend.html
> > > 
> > >   * igt@kms_flip@flip-vs-expired-vblank:
> > >     - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#1297])
> > >    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank.html
> > >    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@kms_flip@flip-vs-expired-vblank.html
> > >     - shard-apl:          [PASS][39] -> [DMESG-WARN][40] ([i915#1297])
> > >    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_flip@flip-vs-expired-vblank.html
> > >    [40]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl4/igt@k
> > > ms_flip@flip-vs-expired-vblank.html
> > > 
> > >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
> > >     - shard-apl:          [PASS][41] -> [DMESG-WARN][42] ([i915#180])
> > >    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> > >    [42]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl8/igt@k
> > > ms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> > > 
> > >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> > >     - shard-kbl:          [PASS][43] -> [DMESG-WARN][44] ([i915#180]) +3 similar issues
> > >    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > >    [44]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@k
> > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > > 
> > >   * igt@kms_plane_lowres@pipe-c-tiling-x:
> > >     - shard-hsw:          [PASS][45] -> [DMESG-WARN][46] ([i915#478])
> > >    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw7/igt@kms_plane_lowres@pipe-c-tiling-x.html
> > >    [46]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@k
> > > ms_plane_lowres@pipe-c-tiling-x.html
> > > 
> > >   * igt@kms_psr@psr2_sprite_plane_move:
> > >     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441]) +2 similar issues
> > >    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
> > >    [48]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > > kms_psr@psr2_sprite_plane_move.html
> > > 
> > >   * igt@kms_setmode@basic:
> > >     - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#31])
> > >    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl2/igt@kms_setmode@basic.html
> > >    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@kms_setmode@basic.html
> > >     - shard-glk:          [PASS][51] -> [FAIL][52] ([i915#31])
> > >    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_setmode@basic.html
> > >    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_setmode@basic.html
> > >     - shard-kbl:          [PASS][53] -> [FAIL][54] ([i915#31])
> > >    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@kms_setmode@basic.html
> > >    [54]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@k
> > > ms_setmode@basic.html
> > > 
> > >   * igt@perf_pmu@busy-no-semaphores-vcs1:
> > >     - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#112080]) +11 similar issues
> > >    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
> > >    [56]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb8/igt@
> > > perf_pmu@busy-no-semaphores-vcs1.html
> > > 
> > >   
> > > #### Possible fixes ####
> > > 
> > >   * igt@gem_ctx_isolation@rcs0-s3:
> > >     - shard-snb:          [FAIL][57] -> [PASS][58] +1 similar issue
> > >    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb4/igt@gem_ctx_isolation@rcs0-s3.html
> > >    [58]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g
> > > em_ctx_isolation@rcs0-s3.html
> > > 
> > >   * igt@gem_ctx_persistence@close-replace-race:
> > >     - shard-tglb:         [INCOMPLETE][59] ([i915#1402]) -> [PASS][60]
> > >    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html
> > >    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@gem_ctx_persistence@close-replace-race.html
> > >     - shard-apl:          [INCOMPLETE][61] ([fdo#103927] / [i915#1402]) -> [PASS][62]
> > >    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@gem_ctx_persistence@close-replace-race.html
> > >    [62]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl2/igt@g
> > > em_ctx_persistence@close-replace-race.html
> > > 
> > >   * igt@gem_eio@in-flight-contexts-1us:
> > >     - shard-hsw:          [TIMEOUT][63] -> [PASS][64]
> > >    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_eio@in-flight-contexts-1us.html
> > >    [64]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g
> > > em_eio@in-flight-contexts-1us.html
> > > 
> > >   * igt@gem_exec_parallel@bcs0-fds:
> > >     - shard-apl:          [FAIL][65] -> [PASS][66]
> > >    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> > >    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@gem_exec_parallel@bcs0-fds.html
> > >     - shard-iclb:         [FAIL][67] -> [PASS][68]
> > >    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_parallel@bcs0-fds.html
> > >    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@gem_exec_parallel@bcs0-fds.html
> > >     - shard-tglb:         [FAIL][69] -> [PASS][70]
> > >    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_parallel@bcs0-fds.html
> > >    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb6/igt@gem_exec_parallel@bcs0-fds.html
> > >     - shard-glk:          [FAIL][71] -> [PASS][72]
> > >    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_parallel@bcs0-fds.html
> > >    [72]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk3/igt@g
> > > em_exec_parallel@bcs0-fds.html
> > > 
> > >   * igt@gem_exec_schedule@implicit-read-write-bsd2:
> > >     - shard-iclb:         [SKIP][73] ([fdo#109276] / [i915#677]) -> [PASS][74]
> > >    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> > >    [74]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@
> > > gem_exec_schedule@implicit-read-write-bsd2.html
> > > 
> > >   * igt@gem_exec_schedule@pi-common-bsd:
> > >     - shard-iclb:         [SKIP][75] ([i915#677]) -> [PASS][76] +1 similar issue
> > >    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
> > >    [76]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb6/igt@
> > > gem_exec_schedule@pi-common-bsd.html
> > > 
> > >   * igt@gem_exec_schedule@preempt-hang-render:
> > >     - shard-apl:          [SKIP][77] ([fdo#109271]) -> [PASS][78]
> > >    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@gem_exec_schedule@preempt-hang-render.html
> > >    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl3/igt@gem_exec_schedule@preempt-hang-render.html
> > >     - shard-glk:          [SKIP][79] ([fdo#109271]) -> [PASS][80] +1 similar issue
> > >    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk8/igt@gem_exec_schedule@preempt-hang-render.html
> > >    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk2/igt@gem_exec_schedule@preempt-hang-render.html
> > >     - shard-iclb:         [SKIP][81] -> [PASS][82]
> > >    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@preempt-hang-render.html
> > >    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb4/igt@gem_exec_schedule@preempt-hang-render.html
> > >     - shard-tglb:         [SKIP][83] -> [PASS][84]
> > >    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@gem_exec_schedule@preempt-hang-render.html
> > >    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@gem_exec_schedule@preempt-hang-render.html
> > >     - shard-kbl:          [SKIP][85] ([fdo#109271]) -> [PASS][86]
> > >    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl7/igt@gem_exec_schedule@preempt-hang-render.html
> > >    [86]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl1/igt@g
> > > em_exec_schedule@preempt-hang-render.html
> > > 
> > >   * igt@gem_exec_schedule@reorder-wide-bsd:
> > >     - shard-iclb:         [SKIP][87] ([fdo#112146]) -> [PASS][88] +5 similar issues
> > >    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
> > >    [88]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@
> > > gem_exec_schedule@reorder-wide-bsd.html
> > > 
> > >   * igt@gem_userptr_blits@sync-unmap-cycles:
> > >     - shard-snb:          [DMESG-WARN][89] ([fdo#111870] / [i915#478]) -> [PASS][90] +1 similar issue
> > >    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
> > >    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
> > >     - shard-hsw:          [DMESG-WARN][91] ([fdo#111870]) -> [PASS][92]
> > >    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
> > >    [92]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@g
> > > em_userptr_blits@sync-unmap-cycles.html
> > > 
> > >   * igt@gem_workarounds@suspend-resume-fd:
> > >     - shard-kbl:          [DMESG-WARN][93] ([i915#180]) -> [PASS][94]
> > >    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html
> > >    [94]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl2/igt@g
> > > em_workarounds@suspend-resume-fd.html
> > > 
> > >   * igt@i915_pm_dc@dc5-dpms:
> > >     - shard-iclb:         [FAIL][95] ([i915#447]) -> [PASS][96]
> > >    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
> > >    [96]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > > i915_pm_dc@dc5-dpms.html
> > > 
> > >   * igt@i915_pm_rpm@system-suspend-devices:
> > >     - shard-iclb:         [SKIP][97] ([i915#1316]) -> [PASS][98]
> > >    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb1/igt@i915_pm_rpm@system-suspend-devices.html
> > >    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb5/igt@i915_pm_rpm@system-suspend-devices.html
> > >     - shard-tglb:         [SKIP][99] ([i915#1316]) -> [PASS][100]
> > >    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb6/igt@i915_pm_rpm@system-suspend-devices.html
> > >    [100]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb5/igt@
> > > i915_pm_rpm@system-suspend-devices.html
> > > 
> > >   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> > >     - shard-glk:          [FAIL][101] ([i915#72]) -> [PASS][102]
> > >    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> > >    [102]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk9/igt@k
> > > ms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> > > 
> > >   * igt@kms_flip@flip-vs-suspend:
> > >     - shard-hsw:          [INCOMPLETE][103] ([i915#61]) -> [PASS][104]
> > >    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
> > >    [104]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw1/igt@k
> > > ms_flip@flip-vs-suspend.html
> > > 
> > >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
> > >     - shard-kbl:          [FAIL][105] ([i915#49]) -> [PASS][106]
> > >    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > >    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > >     - shard-glk:          [FAIL][107] ([i915#49]) -> [PASS][108]
> > >    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > >    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > >     - shard-apl:          [FAIL][109] ([i915#49]) -> [PASS][110]
> > >    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > >    [110]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl7/igt@k
> > > ms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
> > > 
> > >   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
> > >     - shard-snb:          [DMESG-WARN][111] ([i915#478]) -> [PASS][112]
> > >    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> > >    [112]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb6/igt@k
> > > ms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
> > > 
> > >   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
> > >     - shard-apl:          [DMESG-WARN][113] ([i915#180]) -> [PASS][114]
> > >    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > >    [114]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl6/igt@k
> > > ms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> > > 
> > >   * igt@kms_psr@psr2_primary_page_flip:
> > >     - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
> > >    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html
> > >    [116]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@
> > > kms_psr@psr2_primary_page_flip.html
> > > 
> > >   * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang:
> > >     - shard-tglb:         [SKIP][117] ([fdo#112015]) -> [PASS][118]
> > >    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> > >    [118]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb1/igt@
> > > kms_vblank@pipe-d-ts-continuation-modeset-hang.html
> > > 
> > >   * igt@perf_pmu@busy-vcs1:
> > >     - shard-iclb:         [SKIP][119] ([fdo#112080]) -> [PASS][120] +15 similar issues
> > >    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb6/igt@perf_pmu@busy-vcs1.html
> > >    [120]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb1/igt@
> > > perf_pmu@busy-vcs1.html
> > > 
> > >   * igt@perf_pmu@most-busy-idle-check-all-bcs0:
> > >     - shard-hsw:          [FAIL][121] -> [PASS][122] +1 similar issue
> > >    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@perf_pmu@most-busy-idle-check-all-bcs0.html
> > >    [122]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw6/igt@p
> > > erf_pmu@most-busy-idle-check-all-bcs0.html
> > > 
> > >   * igt@prime_busy@hang-bsd2:
> > >     - shard-iclb:         [SKIP][123] ([fdo#109276]) -> [PASS][124] +20 similar issues
> > >    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-iclb8/igt@prime_busy@hang-bsd2.html
> > >    [124]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-iclb2/igt@
> > > prime_busy@hang-bsd2.html
> > > 
> > >   
> > > #### Warnings ####
> > > 
> > >   * igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt:
> > >     - shard-hsw:          [DMESG-WARN][125] ([fdo#110789] / [i915#478]) -> [DMESG-WARN][126] ([i915#478])
> > >    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy@gtt.html
> > >    [126]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw5/igt@g
> > > em_userptr_blits@map-fixed-invalidate-busy@gtt.html
> > > 
> > >   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt:
> > >     - shard-hsw:          [DMESG-WARN][127] ([i915#478]) -> [DMESG-WARN][128] ([fdo#110789] / [i915#478])
> > >    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > >    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > >     - shard-snb:          [DMESG-WARN][129] ([i915#478]) -> [DMESG-WARN][130] ([fdo#110789] / [i915#478])
> > >    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > >    [130]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-snb4/igt@g
> > > em_userptr_blits@map-fixed-invalidate-overlap-busy-gup@gtt.html
> > > 
> > >   * igt@i915_pm_dc@dc6-dpms:
> > >     - shard-tglb:         [SKIP][131] ([i915#468]) -> [FAIL][132] ([i915#454])
> > >    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
> > >    [132]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-tglb8/igt@
> > > i915_pm_dc@dc6-dpms.html
> > > 
> > >   * igt@runner@aborted:
> > >     - shard-kbl:          [FAIL][133] ([i915#92]) -> ([FAIL][134], [FAIL][135]) ([i915#1389] / [i915#1402] / [i915#92])
> > >    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-kbl3/igt@runner@aborted.html
> > >    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> > >    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-kbl6/igt@runner@aborted.html
> > >     - shard-apl:          ([FAIL][136], [FAIL][137]) ([fdo#103927] / [i915#1402]) -> [FAIL][138] ([fdo#103927])
> > >    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl3/igt@runner@aborted.html
> > >    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8137/shard-apl1/igt@runner@aborted.html
> > >    [138]: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/shard-apl1/igt@r
> > > unner@aborted.html
> > > 
> > >   
> > >   {name}: This element is suppressed. This means it is ignored when computing
> > >           the status of the difference (SUCCESS, WARNING, or FAILURE).
> > > 
> > >   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
> > >   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
> > >   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> > >   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
> > >   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
> > >   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
> > >   [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015
> > >   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
> > >   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
> > >   [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
> > >   [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
> > >   [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
> > >   [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
> > >   [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
> > >   [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
> > >   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> > >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> > >   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
> > >   [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447
> > >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> > >   [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
> > >   [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
> > >   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
> > >   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
> > >   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
> > >   [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
> > >   [i915#757]: https://gitlab.freedesktop.org/drm/intel/issues/757
> > >   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> > > 
> > > 
> > > Participating hosts (10 -> 8)
> > > ------------------------------
> > > 
> > >   Missing    (2): pig-skl-6260u pig-glk-j5005 
> > > 
> > > 
> > > Build changes
> > > -------------
> > > 
> > >   * CI: CI-20190529 -> None
> > >   * IGT: IGT_5510 -> IGTPW_4307
> > >   * Piglit: piglit_4509 -> None
> > > 
> > >   CI-20190529: 20190529
> > >   CI_DRM_8137: 5786b5e77cc17a1b494b9bdf3c3f29eedc2e2e7d @ git://anongit.freedesktop.org/gfx-ci/linux
> > >   IGTPW_4307: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> > >   IGT_5510: e100092d50105463f58db531fa953c70cc58bb10 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> > >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> > > git://anongit.freedesktop.org/piglit
> > > 
> > > == Logs ==
> > > 
> > > For more details see: 
> > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4307/index.html
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

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

end of thread, other threads:[~2020-03-17 16:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-16  8:45 [Intel-gfx] [RESUBMIT PATCH 0/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 1/2] tests/gem_userptr_blits: Refresh readonly-mmap-unsync exercise Janusz Krzysztofik
2020-03-16  8:45 ` [Intel-gfx] [RESUBMIT PATCH 2/2] tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests Janusz Krzysztofik
2020-03-16 18:57 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for " Patchwork
     [not found] ` <158438673635.18995.14325349729717846904@emeril.freedesktop.org>
2020-03-17  8:53   ` [Intel-gfx] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: Refresh other now MMAP_GTT dependent subtests (rev2) Janusz Krzysztofik
2020-03-17 10:40     ` Petri Latvala
2020-03-17 13:59       ` Vudum, Lakshminarayana
2020-03-17 16:32         ` Janusz Krzysztofik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).