public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements
@ 2020-03-04  9:58 Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 1/3] tests/gem_userptr_blits: More effectively set pages before invalidation Janusz Krzysztofik
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-04  9:58 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Janusz Krzysztofik (3):
  tests/gem_userptr_blits: More effectively set pages before invalidation
  tests/gem_userptr_blits: More exact detection of lockdep loop prevention
  tests/gem_userptr_blits: Add active variant of mmap-offset-invalidate

 tests/i915/gem_userptr_blits.c | 40 ++++++++++++++++++++++++++++------
 1 file changed, 33 insertions(+), 7 deletions(-)

-- 
2.21.1

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

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

* [igt-dev] [PATCH i-g-t 1/3] tests/gem_userptr_blits: More effectively set pages before invalidation
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
@ 2020-03-04  9:58 ` Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 2/3] tests/gem_userptr_blits: More exact detection of lockdep loop prevention Janusz Krzysztofik
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-04  9:58 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

It has been observed that mmap-offset-invalidate@wb subtest has never
triggered a lockdep loop complain.  To fix it, don't use the ->domain
field of a mapping type being examined, always set read and write
domains to I915_GEM_DOMAIN_GTT instead.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/i915/gem_userptr_blits.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index cd1a3af27..8148d7d76 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -821,7 +821,7 @@ static void test_mmap_offset_invalidate(int fd, const struct mmap_offset *t)
 	igt_require_f(map, "mmap-offset banned, lockdep loop prevention\n");
 
 	/* set object pages in order to activate MMU notifier for it */
-	gem_set_domain(fd, handle, t->domain, t->domain);
+	gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
 
 	/* trigger the notifier */
 	munmap(ptr, PAGE_SIZE);
-- 
2.21.1

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

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

* [igt-dev] [PATCH i-g-t 2/3] tests/gem_userptr_blits: More exact detection of lockdep loop prevention
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 1/3] tests/gem_userptr_blits: More effectively set pages before invalidation Janusz Krzysztofik
@ 2020-03-04  9:58 ` Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [RFC PATCH i-g-t 3/3] tests/gem_userptr_blits: Add active variant of mmap-offset-invalidate Janusz Krzysztofik
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-04  9:58 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

If mmap-offset over userptr fails, skip with respective message about
lockdep loop preventive failure occurrence only if ENODEV, fail
otherwise.

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

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index 8148d7d76..95e90c40a 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -818,7 +818,10 @@ static void test_mmap_offset_invalidate(int fd, const struct mmap_offset *t)
 	/* set up mmap-offset mapping on top of the object, skip if refused */
 	map = __gem_mmap_offset(fd, handle, 0, PAGE_SIZE,
 				PROT_READ | PROT_WRITE, t->type);
-	igt_require_f(map, "mmap-offset banned, lockdep loop prevention\n");
+	igt_skip_on_f(!map && errno == ENODEV,
+		      "mmap-offset(%s) banned, lockdep loop prevention\n",
+		      t->name);
+	igt_assert(map);
 
 	/* set object pages in order to activate MMU notifier for it */
 	gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
-- 
2.21.1

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

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

* [igt-dev] [RFC PATCH i-g-t 3/3] tests/gem_userptr_blits: Add active variant of mmap-offset-invalidate
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 1/3] tests/gem_userptr_blits: More effectively set pages before invalidation Janusz Krzysztofik
  2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 2/3] tests/gem_userptr_blits: More exact detection of lockdep loop prevention Janusz Krzysztofik
@ 2020-03-04  9:58 ` Janusz Krzysztofik
  2020-03-04 10:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: mmap-offset-invalidate enhancements Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-04  9:58 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Add a variant that also attaches a igt_spin_t to the userptr, waits for
it to start executing, call igt_spin_set_timeout and then do the munmap.

Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 tests/i915/gem_userptr_blits.c | 33 ++++++++++++++++++++++++++++-----
 1 file changed, 28 insertions(+), 5 deletions(-)

diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index 95e90c40a..68fc6aee4 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -797,10 +797,13 @@ static int test_map_fixed_invalidate(int fd, uint32_t flags)
 	return 0;
 }
 
-static void test_mmap_offset_invalidate(int fd, const struct mmap_offset *t)
+static void test_mmap_offset_invalidate(int fd, const struct mmap_offset *t,
+					int flags)
+#define MMOI_ACTIVE	0x1
 {
 	void *ptr, *map;
 	uint32_t handle;
+	igt_spin_t *spin;
 
 	/* check if mmap_offset type is supported by hardware, skip if not */
 	handle = gem_create(fd, PAGE_SIZE);
@@ -823,13 +826,26 @@ static void test_mmap_offset_invalidate(int fd, const struct mmap_offset *t)
 		      t->name);
 	igt_assert(map);
 
-	/* set object pages in order to activate MMU notifier for it */
-	gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+	/* activate MMU notifier for the object */
+	if (flags & MMOI_ACTIVE) {
+		/* attach a time limited dummy load to the object */
+		spin = igt_spin_new(fd, .dependency = handle);
+		usleep(USEC_PER_SEC/MSEC_PER_SEC);
+		igt_spin_set_timeout(spin, NSEC_PER_SEC);
+	} else {
+		/* just set object pages */
+		gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT,
+					   I915_GEM_DOMAIN_GTT);
+	}
 
 	/* trigger the notifier */
+	igt_set_timeout(3, "deadlock");
 	munmap(ptr, PAGE_SIZE);
+	igt_reset_timeout();
 
 	/* cleanup */
+	if (flags & MMOI_ACTIVE)
+		igt_spin_free(fd, spin);
 	munmap(map, PAGE_SIZE);
 	gem_close(fd, handle);
 }
@@ -2207,11 +2223,18 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 			}
 		}
 
-		igt_describe("Invalidate pages of userptr with mmap-offset on top");
+		igt_describe("Invalidate pages of idle userptr with mmap-offset on top");
 		igt_subtest_with_dynamic("mmap-offset-invalidate")
 			for_each_mmap_offset_type(fd, t)
 				igt_dynamic_f("%s", t->name)
-					test_mmap_offset_invalidate(fd, t);
+					test_mmap_offset_invalidate(fd, t, 0);
+
+		igt_describe("Invalidate pages of active userptr with mmap-offset on top");
+		igt_subtest_with_dynamic("mmap-offset-invalidate-active")
+			for_each_mmap_offset_type(fd, t)
+				igt_dynamic_f("%s", t->name)
+					test_mmap_offset_invalidate(fd, t,
+								   MMOI_ACTIVE);
 
 		igt_subtest("coherency-sync")
 			test_coherency(fd, count);
-- 
2.21.1

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: mmap-offset-invalidate enhancements
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  2020-03-04  9:58 ` [igt-dev] [RFC PATCH i-g-t 3/3] tests/gem_userptr_blits: Add active variant of mmap-offset-invalidate Janusz Krzysztofik
@ 2020-03-04 10:32 ` Patchwork
  2020-03-05  3:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2020-03-05 11:19 ` [igt-dev] ✗ Fi.CI.IGT: failure for gem_userptr_blits: " Janusz Krzysztofik
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2020-03-04 10:32 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/gem_userptr_blits: mmap-offset-invalidate enhancements
URL   : https://patchwork.freedesktop.org/series/74253/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8062 -> IGTPW_4254
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-icl-dsi:         [PASS][1] -> [INCOMPLETE][2] ([i915#189])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/fi-icl-dsi/igt@i915_pm_rpm@basic-rte.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/fi-icl-dsi/igt@i915_pm_rpm@basic-rte.html

  * igt@kms_addfb_basic@invalid-get-prop-any:
    - fi-tgl-y:           [PASS][3] -> [DMESG-WARN][4] ([CI#94] / [i915#402]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/fi-tgl-y/igt@kms_addfb_basic@invalid-get-prop-any.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/fi-tgl-y/igt@kms_addfb_basic@invalid-get-prop-any.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic:
    - fi-tgl-y:           [DMESG-WARN][5] ([CI#94] / [i915#402]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/fi-tgl-y/igt@gem_mmap_gtt@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/fi-tgl-y/igt@gem_mmap_gtt@basic.html

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

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


Participating hosts (44 -> 45)
------------------------------

  Additional (7): fi-glk-dsi fi-bwr-2160 fi-snb-2520m fi-skl-lmem fi-byt-n2820 fi-bsw-nick fi-skl-6600u 
  Missing    (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5490 -> IGTPW_4254

  CI-20190529: 20190529
  CI_DRM_8062: 9c57d926e26eb7f9ededcdf356aef74b135af03e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4254: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/index.html
  IGT_5490: f98b33cbd5b57bae52b8e2fae2039e89ac877822 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_userptr_blits@mmap-offset-invalidate-active

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: mmap-offset-invalidate enhancements
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
                   ` (3 preceding siblings ...)
  2020-03-04 10:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: mmap-offset-invalidate enhancements Patchwork
@ 2020-03-05  3:11 ` Patchwork
  2020-03-05 11:01   ` Janusz Krzysztofik
  2020-03-05 11:19 ` [igt-dev] ✗ Fi.CI.IGT: failure for gem_userptr_blits: " Janusz Krzysztofik
  5 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2020-03-05  3:11 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/gem_userptr_blits: mmap-offset-invalidate enhancements
URL   : https://patchwork.freedesktop.org/series/74253/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8062_full -> IGTPW_4254_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-hsw:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * {igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][3] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb8/igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt.html

  * {igt@gem_userptr_blits@mmap-offset-invalidate-active@wc} (NEW):
    - shard-tglb:         NOTRUN -> [SKIP][4] +3 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wc.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-iclb:         [PASS][5] -> [SKIP][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@i915_pm_backlight@fade_with_dpms.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-iclb:         NOTRUN -> [FAIL][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-hsw:          ([FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13]) ([fdo#111870] / [i915#226]) -> ([FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21]) ([fdo#111870])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@runner@aborted.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@runner@aborted.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@runner@aborted.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@runner@aborted.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@runner@aborted.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@runner@aborted.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@runner@aborted.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@runner@aborted.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@runner@aborted.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@runner@aborted.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@gem_userptr_blits@mmap-offset-invalidate@wb}:
    - shard-iclb:         [SKIP][22] ([i915#1317]) -> [SKIP][23] +3 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html

  * {igt@gem_userptr_blits@mmap-offset-invalidate@wc}:
    - shard-tglb:         [SKIP][24] ([i915#1317]) -> [SKIP][25] +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb6/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb5/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html

  
New tests
---------

  New tests have been introduced between CI_DRM_8062_full and IGTPW_4254_full:

### New IGT tests (5) ###

  * igt@gem_userptr_blits@mmap-offset-invalidate-active:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt:
    - Statuses : 6 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@uc:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
    - Statuses : 6 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@gem_userptr_blits@mmap-offset-invalidate-active@wc:
    - Statuses : 6 skip(s)
    - Exec time: [0.0, 0.00] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [PASS][26] -> [SKIP][27] ([fdo#112080]) +7 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_exec_schedule@implicit-read-write-bsd1:
    - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109276] / [i915#677]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@implicit-read-write-bsd1.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_exec_schedule@implicit-read-write-bsd1.html

  * igt@gem_exec_schedule@independent-bsd2:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109276]) +19 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html

  * igt@gem_exec_schedule@preempt-self-bsd:
    - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#112146]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb7/igt@gem_exec_schedule@preempt-self-bsd.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb4/igt@gem_exec_schedule@preempt-self-bsd.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-snb:          [PASS][34] -> [DMESG-WARN][35] ([i915#478] / [i915#793])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-snb:          [PASS][36] -> [DMESG-WARN][37] ([fdo#111870] / [i915#478])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-tglb:         [PASS][38] -> [SKIP][39] ([i915#1311])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb6/igt@i915_pm_backlight@fade_with_dpms.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][40] -> [DMESG-WARN][41] ([i915#180]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen:
    - shard-kbl:          [PASS][42] -> [FAIL][43] ([i915#54])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
    - shard-apl:          [PASS][44] -> [FAIL][45] ([i915#54])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled:
    - shard-hsw:          [PASS][46] -> [DMESG-WARN][47] ([i915#478]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
    - shard-snb:          [PASS][48] -> [DMESG-WARN][49] ([i915#478])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-glk:          [PASS][50] -> [FAIL][51] ([i915#46])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk6/igt@kms_flip@flip-vs-expired-vblank.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk4/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [PASS][52] -> [INCOMPLETE][53] ([i915#61])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_flip@flip-vs-suspend.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@kms_flip@flip-vs-suspend.html
    - shard-apl:          [PASS][54] -> [INCOMPLETE][55] ([fdo#103927])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl2/igt@kms_flip@flip-vs-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-glk:          [PASS][56] -> [FAIL][57] ([i915#49])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [PASS][58] -> [DMESG-WARN][59] ([i915#180]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-glk:          [PASS][60] -> [FAIL][61] ([i915#899]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk8/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk2/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-b-tiling-x:
    - shard-apl:          [PASS][62] -> [FAIL][63] ([i915#899])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl2/igt@kms_plane_lowres@pipe-b-tiling-x.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl3/igt@kms_plane_lowres@pipe-b-tiling-x.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][64] -> [SKIP][65] ([fdo#109441])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
    - shard-tglb:         [PASS][66] -> [SKIP][67] ([fdo#112015])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
    - shard-hsw:          [PASS][68] -> [SKIP][69] ([fdo#109271])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
    - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109278])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb3/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
    - shard-glk:          [PASS][72] -> [SKIP][73] ([fdo#109271])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html

  * igt@perf@short-reads:
    - shard-hsw:          [PASS][74] -> [FAIL][75] ([i915#51])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@perf@short-reads.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@perf@short-reads.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@legacy-engines-mixed-process@default:
    - shard-glk:          [FAIL][76] ([i915#679]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk5/igt@gem_ctx_persistence@legacy-engines-mixed-process@default.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@gem_ctx_persistence@legacy-engines-mixed-process@default.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process@render:
    - shard-glk:          [INCOMPLETE][78] ([i915#58] / [k.org#198133]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk5/igt@gem_ctx_persistence@legacy-engines-mixed-process@render.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@gem_ctx_persistence@legacy-engines-mixed-process@render.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [SKIP][80] ([fdo#110841]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_exec_async@concurrent-writes-bsd:
    - shard-iclb:         [SKIP][82] ([fdo#112146]) -> [PASS][83] +3 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb4/igt@gem_exec_async@concurrent-writes-bsd.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_exec_async@concurrent-writes-bsd.html

  * igt@gem_exec_schedule@implicit-read-write-bsd2:
    - shard-iclb:         [SKIP][84] ([fdo#109276] / [i915#677]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd2.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@gem_exec_schedule@implicit-read-write-bsd2.html

  * igt@gem_exec_schedule@pi-shared-iova-bsd:
    - shard-iclb:         [SKIP][86] ([i915#677]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_exec_schedule@pi-shared-iova-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [SKIP][88] ([fdo#109276]) -> [PASS][89] +12 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][90] ([i915#644]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [DMESG-WARN][92] ([fdo#111870] / [i915#478]) -> [PASS][93] +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@gem_userptr_blits@sync-unmap.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@gem_userptr_blits@sync-unmap.html
    - shard-hsw:          [DMESG-WARN][94] ([fdo#111870]) -> [PASS][95] +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@gem_userptr_blits@sync-unmap.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +4 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl6/igt@gem_workarounds@suspend-resume-context.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl7/igt@gem_workarounds@suspend-resume-context.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +4 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_rpm@fences:
    - shard-hsw:          [DMESG-WARN][100] ([i915#478]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@i915_pm_rpm@fences.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@i915_pm_rpm@fences.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-iclb:         [INCOMPLETE][102] ([i915#189]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_atomic_transition@2x-modeset-transitions-fencing:
    - shard-hsw:          [INCOMPLETE][104] ([i915#61]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_atomic_transition@2x-modeset-transitions-fencing.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@kms_atomic_transition@2x-modeset-transitions-fencing.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-glk:          [FAIL][106] ([i915#1119]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          [DMESG-WARN][108] ([i915#478]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-kbl:          [FAIL][110] ([fdo#103375]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         [SKIP][112] ([fdo#109441]) -> [PASS][113] +2 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb6/igt@kms_psr@psr2_dpms.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb2/igt@kms_psr@psr2_dpms.html

  * igt@perf_pmu@busy-accuracy-98-vcs1:
    - shard-iclb:         [SKIP][114] ([fdo#112080]) -> [PASS][115] +11 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb6/igt@perf_pmu@busy-accuracy-98-vcs1.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb2/igt@perf_pmu@busy-accuracy-98-vcs1.html

  
#### Warnings ####

  * igt@gem_exec_schedule@pi-userfault-bsd1:
    - shard-iclb:         [INCOMPLETE][116] -> [SKIP][117] ([fdo#109276])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd1.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_exec_schedule@pi-userfault-bsd1.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][118] -> [SKIP][119] ([i915#468])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb8/igt@i915_pm_dc@dc6-psr.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-kbl:          [DMESG-WARN][120] ([i915#180]) -> [INCOMPLETE][121] ([fdo#103665] / [i915#600])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl6/igt@kms_flip@flip-vs-suspend.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl3/igt@kms_flip@flip-vs-suspend.html

  * igt@runner@aborted:
    - shard-snb:          ([FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127]) ([fdo#111870] / [i915#1077] / [i915#698]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#111870] / [i915#1077])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb2/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb2/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb2/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [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#1077]: https://gitlab.freedesktop.org/drm/intel/issues/1077
  [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119
  [i915#1311]: https://gitlab.freedesktop.org/drm/intel/issues/1311
  [i915#1317]: https://gitlab.freedesktop.org/drm/intel/issues/1317
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#189]: https://gitlab.freedesktop.org/drm/intel/issues/189
  [i915#226]: https://gitlab.freedesktop.org/drm/intel/issues/226
  [i915#46]: https://gitlab.freedesktop.org/drm/intel/issues/46
  [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#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#600]: https://gitlab.freedesktop.org/drm/intel/issues/600
  [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
  [i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679
  [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698
  [i915#793]: https://gitlab.freedesktop.org/drm/intel/issues/793
  [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5490 -> IGTPW_4254
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8062: 9c57d926e26eb7f9ededcdf356aef74b135af03e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4254: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/index.html
  IGT_5490: f98b33cbd5b57bae52b8e2fae2039e89ac877822 @ 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_4254/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_userptr_blits: mmap-offset-invalidate enhancements
  2020-03-05  3:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-05 11:01   ` Janusz Krzysztofik
  0 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-05 11:01 UTC (permalink / raw)
  To: igt-dev; +Cc: Martin Peres

Hi,

On Thu, 2020-03-05 at 03:11 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/gem_userptr_blits: mmap-offset-invalidate enhancements
> URL   : https://patchwork.freedesktop.org/series/74253/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8062_full -> IGTPW_4254_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4254_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4254_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_4254/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4254_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-hsw:          [PASS][1] -> [DMESG-WARN][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

This has nothing to do with the changes.

> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt} (NEW):
>     - shard-iclb:         NOTRUN -> [SKIP][3] +3 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb8/igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate-active@wc} (NEW):
>     - shard-tglb:         NOTRUN -> [SKIP][4] +3 similar issues
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wc.html

SKIP is expected behavior for as long as userptr MMU notifier related
lockdep loop issue exists in the driver.

> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-iclb:         [PASS][5] -> [SKIP][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@i915_pm_backlight@fade_with_dpms.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-iclb:         NOTRUN -> [FAIL][7]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html

These two also have nothing to do with the changes.

Thanks,
Janusz


> 
>   
> #### Warnings ####
> 
>   * igt@runner@aborted:
>     - shard-hsw:          ([FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13]) ([fdo#111870] / [i915#226]) -> ([FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21]) ([fdo#111870])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@runner@aborted.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@runner@aborted.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@runner@aborted.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@runner@aborted.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@runner@aborted.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@runner@aborted.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@runner@aborted.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@runner@aborted.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@runner@aborted.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@runner@aborted.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@runner@aborted.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw8/igt@runner@aborted.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@wb}:
>     - shard-iclb:         [SKIP][22] ([i915#1317]) -> [SKIP][23] +3 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@wc}:
>     - shard-tglb:         [SKIP][24] ([i915#1317]) -> [SKIP][25] +3 similar issues
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb6/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb5/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_8062_full and IGTPW_4254_full:
> 
> ### New IGT tests (5) ###
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@uc:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@wc:
>     - Statuses : 6 skip(s)
>     - Exec time: [0.0, 0.00] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4254_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_isolation@vcs1-nonpriv:
>     - shard-iclb:         [PASS][26] -> [SKIP][27] ([fdo#112080]) +7 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html
> 
>   * igt@gem_exec_schedule@implicit-read-write-bsd1:
>     - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109276] / [i915#677]) +2 similar issues
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@implicit-read-write-bsd1.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_exec_schedule@implicit-read-write-bsd1.html
> 
>   * igt@gem_exec_schedule@independent-bsd2:
>     - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109276]) +19 similar issues
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html
> 
>   * igt@gem_exec_schedule@preempt-self-bsd:
>     - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#112146]) +2 similar issues
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb7/igt@gem_exec_schedule@preempt-self-bsd.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb4/igt@gem_exec_schedule@preempt-self-bsd.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-snb:          [PASS][34] -> [DMESG-WARN][35] ([i915#478] / [i915#793])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-snb:          [PASS][36] -> [DMESG-WARN][37] ([fdo#111870] / [i915#478])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-tglb:         [PASS][38] -> [SKIP][39] ([i915#1311])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb6/igt@i915_pm_backlight@fade_with_dpms.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@i915_suspend@fence-restore-tiled2untiled:
>     - shard-apl:          [PASS][40] -> [DMESG-WARN][41] ([i915#180]) +2 similar issues
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen:
>     - shard-kbl:          [PASS][42] -> [FAIL][43] ([i915#54])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>     - shard-apl:          [PASS][44] -> [FAIL][45] ([i915#54])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled:
>     - shard-hsw:          [PASS][46] -> [DMESG-WARN][47] ([i915#478]) +1 similar issue
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
>     - shard-snb:          [PASS][48] -> [DMESG-WARN][49] ([i915#478])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank:
>     - shard-glk:          [PASS][50] -> [FAIL][51] ([i915#46])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk6/igt@kms_flip@flip-vs-expired-vblank.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk4/igt@kms_flip@flip-vs-expired-vblank.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-hsw:          [PASS][52] -> [INCOMPLETE][53] ([i915#61])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_flip@flip-vs-suspend.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@kms_flip@flip-vs-suspend.html
>     - shard-apl:          [PASS][54] -> [INCOMPLETE][55] ([fdo#103927])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl2/igt@kms_flip@flip-vs-suspend.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl4/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-glk:          [PASS][56] -> [FAIL][57] ([i915#49])
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
>     - shard-kbl:          [PASS][58] -> [DMESG-WARN][59] ([i915#180]) +2 similar issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
> 
>   * igt@kms_plane_lowres@pipe-a-tiling-x:
>     - shard-glk:          [PASS][60] -> [FAIL][61] ([i915#899]) +1 similar issue
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk8/igt@kms_plane_lowres@pipe-a-tiling-x.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk2/igt@kms_plane_lowres@pipe-a-tiling-x.html
> 
>   * igt@kms_plane_lowres@pipe-b-tiling-x:
>     - shard-apl:          [PASS][62] -> [FAIL][63] ([i915#899])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl2/igt@kms_plane_lowres@pipe-b-tiling-x.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl3/igt@kms_plane_lowres@pipe-b-tiling-x.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-iclb:         [PASS][64] -> [SKIP][65] ([fdo#109441])
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
>     - shard-tglb:         [PASS][66] -> [SKIP][67] ([fdo#112015])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-hsw:          [PASS][68] -> [SKIP][69] ([fdo#109271])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109278])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb3/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-glk:          [PASS][72] -> [SKIP][73] ([fdo#109271])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
> 
>   * igt@perf@short-reads:
>     - shard-hsw:          [PASS][74] -> [FAIL][75] ([i915#51])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@perf@short-reads.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw5/igt@perf@short-reads.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed-process@default:
>     - shard-glk:          [FAIL][76] ([i915#679]) -> [PASS][77]
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk5/igt@gem_ctx_persistence@legacy-engines-mixed-process@default.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@gem_ctx_persistence@legacy-engines-mixed-process@default.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed-process@render:
>     - shard-glk:          [INCOMPLETE][78] ([i915#58] / [k.org#198133]) -> [PASS][79]
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk5/igt@gem_ctx_persistence@legacy-engines-mixed-process@render.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@gem_ctx_persistence@legacy-engines-mixed-process@render.html
> 
>   * igt@gem_ctx_shared@exec-single-timeline-bsd:
>     - shard-iclb:         [SKIP][80] ([fdo#110841]) -> [PASS][81]
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> 
>   * igt@gem_exec_async@concurrent-writes-bsd:
>     - shard-iclb:         [SKIP][82] ([fdo#112146]) -> [PASS][83] +3 similar issues
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb4/igt@gem_exec_async@concurrent-writes-bsd.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_exec_async@concurrent-writes-bsd.html
> 
>   * igt@gem_exec_schedule@implicit-read-write-bsd2:
>     - shard-iclb:         [SKIP][84] ([fdo#109276] / [i915#677]) -> [PASS][85]
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb3/igt@gem_exec_schedule@implicit-read-write-bsd2.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb1/igt@gem_exec_schedule@implicit-read-write-bsd2.html
> 
>   * igt@gem_exec_schedule@pi-shared-iova-bsd:
>     - shard-iclb:         [SKIP][86] ([i915#677]) -> [PASS][87]
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb7/igt@gem_exec_schedule@pi-shared-iova-bsd.html
> 
>   * igt@gem_exec_schedule@preempt-queue-bsd1:
>     - shard-iclb:         [SKIP][88] ([fdo#109276]) -> [PASS][89] +12 similar issues
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd1.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
> 
>   * igt@gem_ppgtt@flink-and-close-vma-leak:
>     - shard-glk:          [FAIL][90] ([i915#644]) -> [PASS][91]
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
> 
>   * igt@gem_userptr_blits@sync-unmap:
>     - shard-snb:          [DMESG-WARN][92] ([fdo#111870] / [i915#478]) -> [PASS][93] +1 similar issue
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@gem_userptr_blits@sync-unmap.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@gem_userptr_blits@sync-unmap.html
>     - shard-hsw:          [DMESG-WARN][94] ([fdo#111870]) -> [PASS][95] +1 similar issue
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw8/igt@gem_userptr_blits@sync-unmap.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html
> 
>   * igt@gem_workarounds@suspend-resume-context:
>     - shard-apl:          [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +4 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-apl6/igt@gem_workarounds@suspend-resume-context.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +4 similar issues
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_pm_rpm@fences:
>     - shard-hsw:          [DMESG-WARN][100] ([i915#478]) -> [PASS][101]
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw5/igt@i915_pm_rpm@fences.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw7/igt@i915_pm_rpm@fences.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>     - shard-iclb:         [INCOMPLETE][102] ([i915#189]) -> [PASS][103]
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@kms_atomic_transition@2x-modeset-transitions-fencing:
>     - shard-hsw:          [INCOMPLETE][104] ([i915#61]) -> [PASS][105]
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-hsw7/igt@kms_atomic_transition@2x-modeset-transitions-fencing.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-hsw1/igt@kms_atomic_transition@2x-modeset-transitions-fencing.html
> 
>   * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
>     - shard-glk:          [FAIL][106] ([i915#1119]) -> [PASS][107]
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-glk9/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-glk3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
>     - shard-snb:          [DMESG-WARN][108] ([i915#478]) -> [PASS][109]
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>     - shard-kbl:          [FAIL][110] ([fdo#103375]) -> [PASS][111]
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> 
>   * igt@kms_psr@psr2_dpms:
>     - shard-iclb:         [SKIP][112] ([fdo#109441]) -> [PASS][113] +2 similar issues
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb6/igt@kms_psr@psr2_dpms.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb2/igt@kms_psr@psr2_dpms.html
> 
>   * igt@perf_pmu@busy-accuracy-98-vcs1:
>     - shard-iclb:         [SKIP][114] ([fdo#112080]) -> [PASS][115] +11 similar issues
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb6/igt@perf_pmu@busy-accuracy-98-vcs1.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb2/igt@perf_pmu@busy-accuracy-98-vcs1.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_schedule@pi-userfault-bsd1:
>     - shard-iclb:         [INCOMPLETE][116] -> [SKIP][117] ([fdo#109276])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd1.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-iclb5/igt@gem_exec_schedule@pi-userfault-bsd1.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][118] -> [SKIP][119] ([i915#468])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-tglb8/igt@i915_pm_dc@dc6-psr.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-kbl:          [DMESG-WARN][120] ([i915#180]) -> [INCOMPLETE][121] ([fdo#103665] / [i915#600])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-kbl6/igt@kms_flip@flip-vs-suspend.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-kbl3/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@runner@aborted:
>     - shard-snb:          ([FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127]) ([fdo#111870] / [i915#1077] / [i915#698]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#111870] / [i915#1077])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb2/igt@runner@aborted.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@runner@aborted.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb6/igt@runner@aborted.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8062/shard-snb4/igt@runner@aborted.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@runner@aborted.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb2/igt@runner@aborted.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb2/igt@runner@aborted.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@runner@aborted.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb4/igt@runner@aborted.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/igt@runner@aborted.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@runner@aborted.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb5/igt@runner@aborted.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/shard-snb6/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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [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#1077]: https://gitlab.freedesktop.org/drm/intel/issues/1077
>   [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119
>   [i915#1311]: https://gitlab.freedesktop.org/drm/intel/issues/1311
>   [i915#1317]: https://gitlab.freedesktop.org/drm/intel/issues/1317
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#189]: https://gitlab.freedesktop.org/drm/intel/issues/189
>   [i915#226]: https://gitlab.freedesktop.org/drm/intel/issues/226
>   [i915#46]: https://gitlab.freedesktop.org/drm/intel/issues/46
>   [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#51]: https://gitlab.freedesktop.org/drm/intel/issues/51
>   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
>   [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
>   [i915#600]: https://gitlab.freedesktop.org/drm/intel/issues/600
>   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
>   [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
>   [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
>   [i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679
>   [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698
>   [i915#793]: https://gitlab.freedesktop.org/drm/intel/issues/793
>   [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
>   [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
> 
> 
> Participating hosts (10 -> 8)
> ------------------------------
> 
>   Missing    (2): pig-skl-6260u pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5490 -> IGTPW_4254
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_8062: 9c57d926e26eb7f9ededcdf356aef74b135af03e @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4254: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4254/index.html
>   IGT_5490: f98b33cbd5b57bae52b8e2fae2039e89ac877822 @ 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_4254/index.html

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for gem_userptr_blits: mmap-offset-invalidate enhancements
  2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
                   ` (4 preceding siblings ...)
  2020-03-05  3:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-03-05 11:19 ` Janusz Krzysztofik
  5 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2020-03-05 11:19 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx, Martin Peres

Hi,

Here are my comments to CI results from testing the IGT changes on
Trybot with kernel change that prevents non-GTT mmap-offset mapping to
userptr reverted.

On Thu, 2020-03-05 at 06:15 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: gem_userptr_blits: mmap-offset-invalidate enhancements
> URL   : https://patchwork.freedesktop.org/series/74255/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8063_full -> Trybot_5722_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Trybot_5722_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Trybot_5722_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Trybot_5722_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ctx_persistence@close-replace-race:
>     - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb2/igt@gem_ctx_persistence@close-replace-race.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb5/igt@gem_ctx_persistence@close-replace-race.html

This has nothing to do with the IGT changes.

> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt} (NEW):
>     - shard-iclb:         NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt.html
>     - shard-tglb:         NOTRUN -> [SKIP][4]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate-active@wb} (NEW):
>     - shard-snb:          NOTRUN -> [DMESG-FAIL][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-kbl:          NOTRUN -> [DMESG-FAIL][6]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl6/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-glk:          NOTRUN -> [DMESG-FAIL][7]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk5/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-skl:          NOTRUN -> [DMESG-FAIL][8]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-apl:          NOTRUN -> [DMESG-FAIL][9]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl1/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-tglb:         NOTRUN -> [DMESG-FAIL][10]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
>     - shard-iclb:         NOTRUN -> [INCOMPLETE][11]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate-active@wc} (NEW):
>     - shard-tglb:         NOTRUN -> [INCOMPLETE][12]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@gem_userptr_blits@mmap-offset-invalidate-active@wc.html
>     - shard-skl:          NOTRUN -> [INCOMPLETE][13]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@gem_userptr_blits@mmap-offset-invalidate-active@wc.html

Here we have driver issues reported by the active subtest variant when
run on a kernel with the lockdep loop preventive patch reverted.

> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-iclb:         [PASS][14] -> [SKIP][15]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb8/igt@i915_pm_backlight@fade_with_dpms.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb2/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-skl:          [PASS][16] -> [FAIL][17]
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl10/igt@i915_pm_dc@dc6-psr.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl2/igt@i915_pm_dc@dc6-psr.html

The above two also have nothing to do with the IGT changes.

Thanks,
Janusz


> 
>   * igt@runner@aborted:
>     - shard-tglb:         NOTRUN -> ([FAIL][18], [FAIL][19], [FAIL][20]) ([fdo#111870])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@runner@aborted.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb5/igt@runner@aborted.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb2/igt@runner@aborted.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_schedule@pi-userfault-bsd1:
>     - shard-iclb:         [SKIP][21] ([fdo#109276]) -> [INCOMPLETE][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb6/igt@gem_exec_schedule@pi-userfault-bsd1.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb4/igt@gem_exec_schedule@pi-userfault-bsd1.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@gtt}:
>     - shard-iclb:         [SKIP][23] ([i915#1317]) -> [SKIP][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb8/igt@gem_userptr_blits@mmap-offset-invalidate@gtt.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@gem_userptr_blits@mmap-offset-invalidate@gtt.html
>     - shard-tglb:         [SKIP][25] ([i915#1317]) -> [SKIP][26]
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb5/igt@gem_userptr_blits@mmap-offset-invalidate@gtt.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb2/igt@gem_userptr_blits@mmap-offset-invalidate@gtt.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@wb}:
>     - shard-iclb:         [SKIP][27] ([i915#1317]) -> [DMESG-WARN][28]
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb8/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>     - shard-kbl:          [SKIP][29] ([fdo#109271]) -> [DMESG-WARN][30]
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl1/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl4/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>     - shard-glk:          [SKIP][31] ([fdo#109271]) -> [DMESG-WARN][32]
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk7/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk8/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>     - shard-skl:          [SKIP][33] ([fdo#109271]) -> [DMESG-WARN][34]
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl7/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>     - shard-tglb:         [SKIP][35] ([i915#1317]) -> [DMESG-WARN][36]
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb5/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb2/igt@gem_userptr_blits@mmap-offset-invalidate@wb.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_8063_full and Trybot_5722_full:
> 
> ### New IGT tests (4) ###
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@gtt:
>     - Statuses : 7 skip(s)
>     - Exec time: [0.0, 0.01] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb:
>     - Statuses : 6 dmesg-fail(s) 1 incomplete(s)
>     - Exec time: [0.0, 3.02] s
> 
>   * igt@gem_userptr_blits@mmap-offset-invalidate-active@wc:
>     - Statuses : 5 incomplete(s)
>     - Exec time: [0.0] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in Trybot_5722_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_isolation@vcs1-dirty-create:
>     - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#112080]) +9 similar issues
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb4/igt@gem_ctx_isolation@vcs1-dirty-create.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb8/igt@gem_ctx_isolation@vcs1-dirty-create.html
> 
>   * igt@gem_exec_balancer@smoke:
>     - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#110854])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb1/igt@gem_exec_balancer@smoke.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@gem_exec_balancer@smoke.html
> 
>   * igt@gem_exec_schedule@implicit-both-bsd:
>     - shard-iclb:         [PASS][41] -> [SKIP][42] ([i915#677])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb6/igt@gem_exec_schedule@implicit-both-bsd.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd.html
> 
>   * igt@gem_exec_schedule@implicit-write-read-bsd1:
>     - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#109276] / [i915#677]) +2 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb1/igt@gem_exec_schedule@implicit-write-read-bsd1.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb6/igt@gem_exec_schedule@implicit-write-read-bsd1.html
> 
>   * igt@gem_exec_schedule@promotion-bsd:
>     - shard-iclb:         [PASS][45] -> [SKIP][46] ([fdo#112146]) +3 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb5/igt@gem_exec_schedule@promotion-bsd.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb4/igt@gem_exec_schedule@promotion-bsd.html
> 
>   * igt@gem_ppgtt@flink-and-close-vma-leak:
>     - shard-glk:          [PASS][47] -> [FAIL][48] ([i915#644])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk1/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
>     - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#644])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl7/igt@gem_ppgtt@flink-and-close-vma-leak.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-snb:          [PASS][51] -> [DMESG-WARN][52] ([i915#478] / [i915#793])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-snb:          [PASS][53] -> [DMESG-WARN][54] ([fdo#111870] / [i915#478])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-tglb:         [PASS][55] -> [SKIP][56] ([i915#1311])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb5/igt@i915_pm_backlight@fade_with_dpms.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@kms_color@pipe-a-ctm-max:
>     - shard-skl:          [PASS][57] -> [FAIL][58] ([i915#168])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl8/igt@kms_color@pipe-a-ctm-max.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl5/igt@kms_color@pipe-a-ctm-max.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
>     - shard-skl:          [PASS][59] -> [FAIL][60] ([i915#54]) +1 similar issue
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl5/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen:
>     - shard-kbl:          [PASS][61] -> [FAIL][62] ([i915#54])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>     - shard-apl:          [PASS][63] -> [FAIL][64] ([i915#54])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-onscreen.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled:
>     - shard-snb:          [PASS][65] -> [DMESG-WARN][66] ([i915#478])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-apl:          [PASS][67] -> [INCOMPLETE][68] ([fdo#103927])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl3/igt@kms_flip@flip-vs-suspend.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl4/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-kbl:          [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +2 similar issues
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_hdr@bpc-switch-suspend:
>     - shard-skl:          [PASS][71] -> [FAIL][72] ([i915#1188])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl7/igt@kms_hdr@bpc-switch-suspend.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>     - shard-apl:          [PASS][73] -> [DMESG-WARN][74] ([i915#180]) +4 similar issues
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
>     - shard-skl:          [PASS][75] -> [FAIL][76] ([fdo#108145]) +1 similar issue
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-iclb:         [PASS][77] -> [SKIP][78] ([fdo#109642] / [fdo#111068])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb8/igt@kms_psr2_su@frontbuffer.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [PASS][79] -> [SKIP][80] ([fdo#109441]) +2 similar issues
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
>     - shard-skl:          [PASS][81] -> [SKIP][82] ([fdo#109271]) +1 similar issue
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl6/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl10/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-tglb:         [PASS][83] -> [SKIP][84] ([fdo#112015])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-iclb:         [PASS][85] -> [SKIP][86] ([fdo#109278])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb2/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>     - shard-glk:          [PASS][87] -> [SKIP][88] ([fdo#109271])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk1/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm.html
> 
>   * igt@prime_busy@hang-bsd2:
>     - shard-iclb:         [PASS][89] -> [SKIP][90] ([fdo#109276]) +21 similar issues
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb4/igt@prime_busy@hang-bsd2.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@prime_busy@hang-bsd2.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_schedule@fifo-bsd1:
>     - shard-iclb:         [SKIP][91] ([fdo#109276]) -> [PASS][92] +11 similar issues
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb5/igt@gem_exec_schedule@fifo-bsd1.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb4/igt@gem_exec_schedule@fifo-bsd1.html
> 
>   * igt@gem_exec_schedule@in-order-bsd:
>     - shard-iclb:         [SKIP][93] ([fdo#112146]) -> [PASS][94] +8 similar issues
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb4/igt@gem_exec_schedule@in-order-bsd.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb5/igt@gem_exec_schedule@in-order-bsd.html
> 
>   * igt@gem_exec_schedule@pi-shared-iova-bsd:
>     - shard-iclb:         [SKIP][95] ([i915#677]) -> [PASS][96]
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb2/igt@gem_exec_schedule@pi-shared-iova-bsd.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@gem_exec_schedule@pi-shared-iova-bsd.html
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - shard-kbl:          [DMESG-WARN][97] ([i915#180]) -> [PASS][98] +4 similar issues
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl6/igt@gem_exec_suspend@basic-s3.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl1/igt@gem_exec_suspend@basic-s3.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@uc}:
>     - shard-iclb:         [SKIP][99] ([i915#1317]) -> [PASS][100] +1 similar issue
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb8/igt@gem_userptr_blits@mmap-offset-invalidate@uc.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb3/igt@gem_userptr_blits@mmap-offset-invalidate@uc.html
> 
>   * {igt@gem_userptr_blits@mmap-offset-invalidate@wc}:
>     - shard-apl:          [SKIP][101] ([fdo#109271]) -> [PASS][102] +1 similar issue
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl8/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl2/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>     - shard-glk:          [SKIP][103] ([fdo#109271]) -> [PASS][104] +1 similar issue
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk7/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk8/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>     - shard-tglb:         [SKIP][105] ([i915#1317]) -> [PASS][106] +1 similar issue
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb5/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb2/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>     - shard-kbl:          [SKIP][107] ([fdo#109271]) -> [PASS][108] +1 similar issue
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl1/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl4/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>     - shard-skl:          [SKIP][109] ([fdo#109271]) -> [PASS][110] +1 similar issue
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl7/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>     - shard-snb:          [SKIP][111] ([fdo#109271]) -> [PASS][112] +1 similar issue
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb2/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@gem_userptr_blits@mmap-offset-invalidate@wc.html
> 
>   * igt@gem_userptr_blits@sync-unmap:
>     - shard-snb:          [DMESG-WARN][113] ([fdo#111870] / [i915#478]) -> [PASS][114] +1 similar issue
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb5/igt@gem_userptr_blits@sync-unmap.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb5/igt@gem_userptr_blits@sync-unmap.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-skl:          [INCOMPLETE][115] ([i915#716]) -> [PASS][116]
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl10/igt@gen9_exec_parse@allowed-single.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl7/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@i915_pm_rps@reset:
>     - shard-iclb:         [FAIL][117] ([i915#413]) -> [PASS][118]
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb1/igt@i915_pm_rps@reset.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb4/igt@i915_pm_rps@reset.html
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-apl:          [DMESG-WARN][119] ([i915#180]) -> [PASS][120] +3 similar issues
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl1/igt@i915_suspend@sysfs-reader.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl8/igt@i915_suspend@sysfs-reader.html
> 
>   * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>     - shard-glk:          [FAIL][121] ([i915#72]) -> [PASS][122]
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
> 
>   * igt@kms_draw_crc@draw-method-rgb565-blt-xtiled:
>     - shard-skl:          [FAIL][123] ([i915#52] / [i915#54]) -> [PASS][124]
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl3/igt@kms_draw_crc@draw-method-rgb565-blt-xtiled.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl8/igt@kms_draw_crc@draw-method-rgb565-blt-xtiled.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank:
>     - shard-glk:          [FAIL][125] ([i915#79]) -> [PASS][126]
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-glk4/igt@kms_flip@flip-vs-expired-vblank.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-glk9/igt@kms_flip@flip-vs-expired-vblank.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-skl:          [INCOMPLETE][127] ([i915#221]) -> [PASS][128]
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl8/igt@kms_flip@flip-vs-suspend.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl3/igt@kms_flip@flip-vs-suspend.html
>     - shard-snb:          [DMESG-WARN][129] ([i915#42]) -> [PASS][130]
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@kms_flip@flip-vs-suspend.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb5/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
>     - shard-snb:          [DMESG-WARN][131] ([i915#478]) -> [PASS][132]
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>     - shard-skl:          [FAIL][133] ([fdo#108145]) -> [PASS][134]
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl9/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
> 
>   * igt@kms_plane_multiple@atomic-pipe-b-tiling-y:
>     - shard-skl:          [DMESG-WARN][135] ([IGT#6]) -> [PASS][136]
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-skl10/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-skl1/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html
> 
>   * igt@kms_psr@psr2_primary_blt:
>     - shard-iclb:         [SKIP][137] ([fdo#109441]) -> [PASS][138]
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb6/igt@kms_psr@psr2_primary_blt.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [FAIL][139] ([i915#31]) -> [PASS][140]
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl2/igt@kms_setmode@basic.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl7/igt@kms_setmode@basic.html
> 
>   * igt@perf_pmu@busy-no-semaphores-vcs1:
>     - shard-iclb:         [SKIP][141] ([fdo#112080]) -> [PASS][142] +10 similar issues
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb6/igt@perf_pmu@busy-no-semaphores-vcs1.html
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_schedule@pi-userfault-bsd:
>     - shard-iclb:         [INCOMPLETE][143] -> [SKIP][144] ([i915#677])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-iclb6/igt@gem_exec_schedule@pi-userfault-bsd.html
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][145] -> [SKIP][146] ([i915#468])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-tglb2/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-kbl:          [DMESG-WARN][147] ([i915#180]) -> [INCOMPLETE][148] ([fdo#103665] / [i915#600])
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl6/igt@kms_flip@flip-vs-suspend.html
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl2/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          [FAIL][149] ([i915#92]) -> ([FAIL][150], [FAIL][151], [FAIL][152]) ([fdo#111870] / [i915#92])
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-kbl2/igt@runner@aborted.html
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl4/igt@runner@aborted.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl3/igt@runner@aborted.html
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-kbl6/igt@runner@aborted.html
>     - shard-apl:          [FAIL][153] ([fdo#103927]) -> ([FAIL][154], [FAIL][155]) ([fdo#103927] / [fdo#111870] / [i915#211])
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-apl4/igt@runner@aborted.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl3/igt@runner@aborted.html
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-apl2/igt@runner@aborted.html
>     - shard-snb:          ([FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160], [FAIL][161]) ([fdo#111870] / [i915#1077] / [i915#698]) -> ([FAIL][162], [FAIL][163], [FAIL][164], [FAIL][165], [FAIL][166], [FAIL][167], [FAIL][168], [FAIL][169], [FAIL][170], [FAIL][171], [FAIL][172]) ([fdo#111870] / [i915#1077])
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb2/igt@runner@aborted.html
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb4/igt@runner@aborted.html
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb5/igt@runner@aborted.html
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@runner@aborted.html
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb5/igt@runner@aborted.html
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8063/shard-snb6/igt@runner@aborted.html
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb6/igt@runner@aborted.html
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb6/igt@runner@aborted.html
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb5/igt@runner@aborted.html
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb5/igt@runner@aborted.html
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/shard-snb4/igt@runner@aborted.html
>    [167]: https://intel-g
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Trybot_5722/index.html

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

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

end of thread, other threads:[~2020-03-05 11:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-04  9:58 [igt-dev] [PATCH i-g-t 0/3] tests/gem_userptr_blits: mmap-offset-invalidate enhancements Janusz Krzysztofik
2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 1/3] tests/gem_userptr_blits: More effectively set pages before invalidation Janusz Krzysztofik
2020-03-04  9:58 ` [igt-dev] [PATCH i-g-t 2/3] tests/gem_userptr_blits: More exact detection of lockdep loop prevention Janusz Krzysztofik
2020-03-04  9:58 ` [igt-dev] [RFC PATCH i-g-t 3/3] tests/gem_userptr_blits: Add active variant of mmap-offset-invalidate Janusz Krzysztofik
2020-03-04 10:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_userptr_blits: mmap-offset-invalidate enhancements Patchwork
2020-03-05  3:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-03-05 11:01   ` Janusz Krzysztofik
2020-03-05 11:19 ` [igt-dev] ✗ Fi.CI.IGT: failure for gem_userptr_blits: " Janusz Krzysztofik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox