All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:26 ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2019-11-19 14:26 UTC (permalink / raw)
  To: intel-gfx

Fork and remap the same object into a new process space under a new file
descriptor. Principally to check list management and find scaling issues
in using such lists.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
---
 tests/i915/gem_mmap_gtt.c | 72 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 71 insertions(+), 1 deletion(-)

diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index a5f9d934e..756940ca4 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -34,8 +34,9 @@
 #include <inttypes.h>
 #include <pthread.h>
 #include <errno.h>
-#include <sys/stat.h>
 #include <sys/ioctl.h>
+#include <sys/stat.h>
+#include <sys/wait.h>
 #include "drm.h"
 
 #include "igt.h"
@@ -323,6 +324,73 @@ test_pf_nonblock(int i915)
 	igt_spin_free(i915, spin);
 }
 
+static void
+test_fork_bomb(int i915)
+{
+	uint32_t *control;
+	uint32_t handle;
+	int dmabuf;
+
+	/* Rebind the same object into many different process adress spaces. */
+
+	control = mmap(NULL, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+	igt_assert(control != MAP_FAILED);
+
+	handle = gem_create(i915, 4096);
+	dmabuf = prime_handle_to_fd(i915, handle);
+	gem_close(i915, handle);
+
+	igt_fork(child, 1) {
+		int fd[512];
+
+		atomic_fetch_add(&control[1], 1);
+		while (!READ_ONCE(control[0])) {
+			int children;
+
+			atomic_fetch_add(&control[2], 1);
+
+			for (int i = 0; i < ARRAY_SIZE(fd); i++) {
+				fd[i] = gem_reopen_driver(i915);
+
+				handle = prime_fd_to_handle(fd[i], dmabuf);
+				gem_mmap__gtt(fd[i], handle, 4096, PROT_WRITE);
+				gem_close(fd[i], handle);
+
+				/* leave the fd + mmap for process cleanup */
+			}
+
+			for (children = 0; children < 2; children++) {
+				if (fork() > 0) { /* child */
+					atomic_fetch_add(&control[1], 1);
+					for (int i = 0; i < ARRAY_SIZE(fd); i++)
+						close(fd[i]);
+					break;
+				}
+			}
+			if (children == 2) { /* parent */
+				sched_yield();
+				break;
+			}
+		}
+		atomic_fetch_add(&control[1], -1);
+	}
+
+	sleep(30);
+
+	*control = 1;
+	igt_waitchildren();
+
+	while (READ_ONCE(control[1])) {
+		int status = 0;
+		wait(&status);
+	}
+
+	igt_info("Spawned %d children\n", control[2]);
+
+	close(dmabuf);
+	munmap(control, 4096);
+}
+
 static void
 test_isolation(int i915)
 {
@@ -1097,6 +1165,8 @@ igt_main
 		test_flink_race(fd);
 	igt_subtest("pf-nonblock")
 		test_pf_nonblock(fd);
+	igt_subtest("fork-bomb")
+		test_fork_bomb(fd);
 
 	igt_subtest("basic-small-bo")
 		test_huge_bo(fd, -1, I915_TILING_NONE);
-- 
2.24.0

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

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

* [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:26 ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2019-11-19 14:26 UTC (permalink / raw)
  To: intel-gfx

Fork and remap the same object into a new process space under a new file
descriptor. Principally to check list management and find scaling issues
in using such lists.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
---
 tests/i915/gem_mmap_gtt.c | 72 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 71 insertions(+), 1 deletion(-)

diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index a5f9d934e..756940ca4 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -34,8 +34,9 @@
 #include <inttypes.h>
 #include <pthread.h>
 #include <errno.h>
-#include <sys/stat.h>
 #include <sys/ioctl.h>
+#include <sys/stat.h>
+#include <sys/wait.h>
 #include "drm.h"
 
 #include "igt.h"
@@ -323,6 +324,73 @@ test_pf_nonblock(int i915)
 	igt_spin_free(i915, spin);
 }
 
+static void
+test_fork_bomb(int i915)
+{
+	uint32_t *control;
+	uint32_t handle;
+	int dmabuf;
+
+	/* Rebind the same object into many different process adress spaces. */
+
+	control = mmap(NULL, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+	igt_assert(control != MAP_FAILED);
+
+	handle = gem_create(i915, 4096);
+	dmabuf = prime_handle_to_fd(i915, handle);
+	gem_close(i915, handle);
+
+	igt_fork(child, 1) {
+		int fd[512];
+
+		atomic_fetch_add(&control[1], 1);
+		while (!READ_ONCE(control[0])) {
+			int children;
+
+			atomic_fetch_add(&control[2], 1);
+
+			for (int i = 0; i < ARRAY_SIZE(fd); i++) {
+				fd[i] = gem_reopen_driver(i915);
+
+				handle = prime_fd_to_handle(fd[i], dmabuf);
+				gem_mmap__gtt(fd[i], handle, 4096, PROT_WRITE);
+				gem_close(fd[i], handle);
+
+				/* leave the fd + mmap for process cleanup */
+			}
+
+			for (children = 0; children < 2; children++) {
+				if (fork() > 0) { /* child */
+					atomic_fetch_add(&control[1], 1);
+					for (int i = 0; i < ARRAY_SIZE(fd); i++)
+						close(fd[i]);
+					break;
+				}
+			}
+			if (children == 2) { /* parent */
+				sched_yield();
+				break;
+			}
+		}
+		atomic_fetch_add(&control[1], -1);
+	}
+
+	sleep(30);
+
+	*control = 1;
+	igt_waitchildren();
+
+	while (READ_ONCE(control[1])) {
+		int status = 0;
+		wait(&status);
+	}
+
+	igt_info("Spawned %d children\n", control[2]);
+
+	close(dmabuf);
+	munmap(control, 4096);
+}
+
 static void
 test_isolation(int i915)
 {
@@ -1097,6 +1165,8 @@ igt_main
 		test_flink_race(fd);
 	igt_subtest("pf-nonblock")
 		test_pf_nonblock(fd);
+	igt_subtest("fork-bomb")
+		test_fork_bomb(fd);
 
 	igt_subtest("basic-small-bo")
 		test_huge_bo(fd, -1, I915_TILING_NONE);
-- 
2.24.0

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

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

* ✗ GitLab.Pipeline: warning for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:47   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 14:47 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : warning

== Summary ==

Did not get list of undocumented tests for this run, something is wrong!

Other than that, pipeline status: FAILED.

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

build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/975524):
                                          atomic_fetch_add(&control[1], 1);
                                          ^                ~~~~~~~~~~~
  /usr/lib64/clang/9.0.0/include/stdatomic.h:132:43: note: expanded from macro 'atomic_fetch_add'
  #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST)
                                            ^                      ~~~~~~
  ../tests/i915/gem_mmap_gtt.c:375:3: error: address argument to atomic operation must be a pointer to _Atomic type ('uint32_t *' (aka 'unsigned int *') invalid)
                  atomic_fetch_add(&control[1], -1);
                  ^                ~~~~~~~~~~~
  /usr/lib64/clang/9.0.0/include/stdatomic.h:132:43: note: expanded from macro 'atomic_fetch_add'
  #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST)
                                            ^                      ~~~~~~
  4 errors generated.
  ninja: build stopped: subcommand failed.
  section_end:1574174572:build_script
  ^[[0Ksection_start:1574174572:after_script
  ^[[0Ksection_end:1574174574:after_script
  ^[[0Ksection_start:1574174574:upload_artifacts_on_failure
  ^[[0Ksection_end:1574174575:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

== Logs ==

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

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

* [Intel-gfx] ✗ GitLab.Pipeline: warning for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:47   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 14:47 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : warning

== Summary ==

Did not get list of undocumented tests for this run, something is wrong!

Other than that, pipeline status: FAILED.

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

build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/975524):
                                          atomic_fetch_add(&control[1], 1);
                                          ^                ~~~~~~~~~~~
  /usr/lib64/clang/9.0.0/include/stdatomic.h:132:43: note: expanded from macro 'atomic_fetch_add'
  #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST)
                                            ^                      ~~~~~~
  ../tests/i915/gem_mmap_gtt.c:375:3: error: address argument to atomic operation must be a pointer to _Atomic type ('uint32_t *' (aka 'unsigned int *') invalid)
                  atomic_fetch_add(&control[1], -1);
                  ^                ~~~~~~~~~~~
  /usr/lib64/clang/9.0.0/include/stdatomic.h:132:43: note: expanded from macro 'atomic_fetch_add'
  #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST)
                                            ^                      ~~~~~~
  4 errors generated.
  ninja: build stopped: subcommand failed.
  section_end:1574174572:build_script
  ^[[0Ksection_start:1574174572:after_script
  ^[[0Ksection_end:1574174574:after_script
  ^[[0Ksection_start:1574174574:upload_artifacts_on_failure
  ^[[0Ksection_end:1574174575:upload_artifacts_on_failure
  ^[[0K^[[31;1mERROR: Job failed: exit code 1
  ^[[0;m

== Logs ==

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

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

* ✓ Fi.CI.BAT: success for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:56   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 14:56 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7371 -> IGTPW_3727
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [PASS][1] -> [DMESG-WARN][2] ([fdo#112261])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-lmem:        [DMESG-WARN][3] ([fdo#112261]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_blt:
    - fi-hsw-peppy:       [DMESG-FAIL][5] ([fdo#112147]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-hsw-peppy/igt@i915_selftest@live_blt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-hsw-peppy/igt@i915_selftest@live_blt.html

  * igt@kms_busy@basic-flip-pipe-a:
    - fi-icl-u2:          [TIMEOUT][7] ([fdo#111800]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-icl-u2/igt@kms_busy@basic-flip-pipe-a.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-icl-u2/igt@kms_busy@basic-flip-pipe-a.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][9] ([fdo#111407]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111800]: https://bugs.freedesktop.org/show_bug.cgi?id=111800
  [fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261


Participating hosts (50 -> 44)
------------------------------

  Missing    (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5295 -> IGTPW_3727

  CI-20190529: 20190529
  CI_DRM_7371: 4a9a6d1fade97c450a0eabbc3436f1dc5518b15e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3727: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/index.html
  IGT_5295: 9211e4794e40135d797e6d056d6d8d40076acb92 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_mmap_gtt@fork-bomb

== Logs ==

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 14:56   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 14:56 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7371 -> IGTPW_3727
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [PASS][1] -> [DMESG-WARN][2] ([fdo#112261])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-lmem:        [DMESG-WARN][3] ([fdo#112261]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_blt:
    - fi-hsw-peppy:       [DMESG-FAIL][5] ([fdo#112147]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-hsw-peppy/igt@i915_selftest@live_blt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-hsw-peppy/igt@i915_selftest@live_blt.html

  * igt@kms_busy@basic-flip-pipe-a:
    - fi-icl-u2:          [TIMEOUT][7] ([fdo#111800]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-icl-u2/igt@kms_busy@basic-flip-pipe-a.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-icl-u2/igt@kms_busy@basic-flip-pipe-a.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][9] ([fdo#111407]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111800]: https://bugs.freedesktop.org/show_bug.cgi?id=111800
  [fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261


Participating hosts (50 -> 44)
------------------------------

  Missing    (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5295 -> IGTPW_3727

  CI-20190529: 20190529
  CI_DRM_7371: 4a9a6d1fade97c450a0eabbc3436f1dc5518b15e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3727: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/index.html
  IGT_5295: 9211e4794e40135d797e6d056d6d8d40076acb92 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_mmap_gtt@fork-bomb

== Logs ==

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

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

* ✗ Fi.CI.IGT: failure for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 23:08   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 23:08 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7371_full -> IGTPW_3727_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@gem_mmap_gtt@fork-bomb} (NEW):
    - shard-iclb:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_mmap_gtt@fork-bomb.html
    - shard-snb:          NOTRUN -> [DMESG-FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb6/igt@gem_mmap_gtt@fork-bomb.html
    - shard-kbl:          NOTRUN -> [DMESG-FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@gem_mmap_gtt@fork-bomb.html
    - shard-glk:          NOTRUN -> [TIMEOUT][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk8/igt@gem_mmap_gtt@fork-bomb.html
    - shard-apl:          NOTRUN -> [DMESG-FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl4/igt@gem_mmap_gtt@fork-bomb.html

  * igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive:
    - shard-glk:          [PASS][6] -> [TIMEOUT][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk1/igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk7/igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive.html

  
New tests
---------

  New tests have been introduced between CI_DRM_7371_full and IGTPW_3727_full:

### New IGT tests (1) ###

  * igt@gem_mmap_gtt@fork-bomb:
    - Statuses : 3 dmesg-fail(s) 1 fail(s) 1 timeout(s)
    - Exec time: [44.67, 439.96] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@bcs0-s3:
    - shard-tglb:         [PASS][8] -> [INCOMPLETE][9] ([fdo#111832])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@gem_ctx_isolation@bcs0-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@gem_ctx_isolation@bcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#109276] / [fdo#112080]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#110841])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb8/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_shared@q-smoketest-bsd2:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([fdo#109276]) +8 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@gem_ctx_shared@q-smoketest-bsd2.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb8/igt@gem_ctx_shared@q-smoketest-bsd2.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([fdo#112146]) +4 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_pipe_control_store_loop@reused-buffer:
    - shard-tglb:         [PASS][18] -> [INCOMPLETE][19] ([fdo#111998])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb8/igt@gem_pipe_control_store_loop@reused-buffer.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@gem_pipe_control_store_loop@reused-buffer.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-snb1/igt@gem_userptr_blits@sync-unmap.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb7/igt@gem_userptr_blits@sync-unmap.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-kbl:          [PASS][22] -> [SKIP][23] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl6/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-tglb:         [PASS][24] -> [INCOMPLETE][25] ([fdo#111832] / [fdo#111850]) +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@i915_pm_rpm@system-suspend-execbuf.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb1/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x42-random:
    - shard-apl:          [PASS][26] -> [FAIL][27] ([fdo#103232])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
    - shard-kbl:          [PASS][28] -> [FAIL][29] ([fdo#103232])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
    - shard-glk:          [PASS][30] -> [FAIL][31] ([fdo#103232])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk5/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk5/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          [PASS][32] -> [DMESG-WARN][33] ([fdo#108566]) +4 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-apl:          [PASS][34] -> [DMESG-WARN][35] ([fdo#108566])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl3/igt@kms_flip@flip-vs-suspend.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-tglb:         [PASS][36] -> [FAIL][37] ([fdo#103167]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-tglb:         [PASS][38] -> [INCOMPLETE][39] ([fdo#111832] / [fdo#111850] / [fdo#111884])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-iclb:         [PASS][40] -> [FAIL][41] ([fdo#103167]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [PASS][42] -> [SKIP][43] ([fdo#109441]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@kms_psr@psr2_basic.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@kms_psr@psr2_basic.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][44] -> [FAIL][45] ([fdo#99912])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl1/igt@kms_setmode@basic.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-kbl:          [PASS][46] -> [INCOMPLETE][47] ([fdo#103665])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
    - shard-iclb:         [PASS][48] -> [DMESG-WARN][49] ([fdo#111764])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
    - shard-tglb:         [PASS][50] -> [INCOMPLETE][51] ([fdo#111850])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@perf_pmu@busy-check-all-vcs1:
    - shard-iclb:         [PASS][52] -> [SKIP][53] ([fdo#112080]) +8 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@perf_pmu@busy-check-all-vcs1.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb6/igt@perf_pmu@busy-check-all-vcs1.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@vcs1-mixed-process:
    - shard-iclb:         [SKIP][54] ([fdo#109276] / [fdo#112080]) -> [PASS][55] +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@gem_ctx_persistence@vcs1-mixed-process.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@gem_ctx_persistence@vcs1-mixed-process.html

  * igt@gem_eio@hibernate:
    - shard-tglb:         [INCOMPLETE][56] ([fdo#111832]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb2/igt@gem_eio@hibernate.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@gem_eio@hibernate.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][58] ([fdo#110854]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb5/igt@gem_exec_balancer@smoke.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][60] ([fdo#112080]) -> [PASS][61] +8 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][62] ([fdo#112146]) -> [PASS][63] +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb6/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [DMESG-WARN][64] ([fdo#111870]) -> [PASS][65] +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][66] ([fdo#111870]) -> [PASS][67] +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-hsw4/igt@gem_userptr_blits@sync-unmap-after-close.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-hsw4/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
    - shard-apl:          [FAIL][68] ([fdo#103232]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
    - shard-kbl:          [FAIL][70] ([fdo#103232]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          [FAIL][72] ([fdo#105363]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-tglb:         [INCOMPLETE][74] ([fdo#111832] / [fdo#111850] / [fdo#112031]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
    - shard-iclb:         [FAIL][76] ([fdo#103167]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-tglb:         [FAIL][78] ([fdo#103167]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-tglb:         [FAIL][80] -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb5/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
    - shard-iclb:         [FAIL][82] ([fdo#112213]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb1/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +4 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [DMESG-WARN][86] ([fdo#108566]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [SKIP][88] ([fdo#109441]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][90] ([fdo#109276]) -> [PASS][91] +17 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@prime_busy@hang-bsd2.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb1/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_exec_schedule@deep-bsd2:
    - shard-tglb:         [INCOMPLETE][92] ([fdo#111671]) -> [FAIL][93] ([fdo#111646])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb6/igt@gem_exec_schedule@deep-bsd2.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html

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

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#111998]: https://bugs.freedesktop.org/show_bug.cgi?id=111998
  [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#112213]: https://bugs.freedesktop.org/show_bug.cgi?id=112213
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 8)
------------------------------

  Missing    (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5295 -> IGTPW_3727
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7371: 4a9a6d1fade97c450a0eabbc3436f1dc5518b15e

== Logs ==

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

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
@ 2019-11-19 23:08   ` Patchwork
  0 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-19 23:08 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_mmap_gtt: Exercise many, many mappings of the same objects
URL   : https://patchwork.freedesktop.org/series/69678/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7371_full -> IGTPW_3727_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@gem_mmap_gtt@fork-bomb} (NEW):
    - shard-iclb:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_mmap_gtt@fork-bomb.html
    - shard-snb:          NOTRUN -> [DMESG-FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb6/igt@gem_mmap_gtt@fork-bomb.html
    - shard-kbl:          NOTRUN -> [DMESG-FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@gem_mmap_gtt@fork-bomb.html
    - shard-glk:          NOTRUN -> [TIMEOUT][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk8/igt@gem_mmap_gtt@fork-bomb.html
    - shard-apl:          NOTRUN -> [DMESG-FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl4/igt@gem_mmap_gtt@fork-bomb.html

  * igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive:
    - shard-glk:          [PASS][6] -> [TIMEOUT][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk1/igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk7/igt@gem_persistent_relocs@forked-faulting-reloc-thrash-inactive.html

  
New tests
---------

  New tests have been introduced between CI_DRM_7371_full and IGTPW_3727_full:

### New IGT tests (1) ###

  * igt@gem_mmap_gtt@fork-bomb:
    - Statuses : 3 dmesg-fail(s) 1 fail(s) 1 timeout(s)
    - Exec time: [44.67, 439.96] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@bcs0-s3:
    - shard-tglb:         [PASS][8] -> [INCOMPLETE][9] ([fdo#111832])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@gem_ctx_isolation@bcs0-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@gem_ctx_isolation@bcs0-s3.html

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#109276] / [fdo#112080]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#110841])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb8/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_shared@q-smoketest-bsd2:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([fdo#109276]) +8 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@gem_ctx_shared@q-smoketest-bsd2.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb8/igt@gem_ctx_shared@q-smoketest-bsd2.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([fdo#112146]) +4 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_pipe_control_store_loop@reused-buffer:
    - shard-tglb:         [PASS][18] -> [INCOMPLETE][19] ([fdo#111998])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb8/igt@gem_pipe_control_store_loop@reused-buffer.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@gem_pipe_control_store_loop@reused-buffer.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-snb1/igt@gem_userptr_blits@sync-unmap.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb7/igt@gem_userptr_blits@sync-unmap.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-kbl:          [PASS][22] -> [SKIP][23] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl6/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-tglb:         [PASS][24] -> [INCOMPLETE][25] ([fdo#111832] / [fdo#111850]) +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@i915_pm_rpm@system-suspend-execbuf.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb1/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x42-random:
    - shard-apl:          [PASS][26] -> [FAIL][27] ([fdo#103232])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
    - shard-kbl:          [PASS][28] -> [FAIL][29] ([fdo#103232])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
    - shard-glk:          [PASS][30] -> [FAIL][31] ([fdo#103232])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk5/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk5/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          [PASS][32] -> [DMESG-WARN][33] ([fdo#108566]) +4 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-apl:          [PASS][34] -> [DMESG-WARN][35] ([fdo#108566])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl3/igt@kms_flip@flip-vs-suspend.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-tglb:         [PASS][36] -> [FAIL][37] ([fdo#103167]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-tglb:         [PASS][38] -> [INCOMPLETE][39] ([fdo#111832] / [fdo#111850] / [fdo#111884])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-iclb:         [PASS][40] -> [FAIL][41] ([fdo#103167]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [PASS][42] -> [SKIP][43] ([fdo#109441]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb2/igt@kms_psr@psr2_basic.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb3/igt@kms_psr@psr2_basic.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][44] -> [FAIL][45] ([fdo#99912])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl1/igt@kms_setmode@basic.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-kbl:          [PASS][46] -> [INCOMPLETE][47] ([fdo#103665])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
    - shard-iclb:         [PASS][48] -> [DMESG-WARN][49] ([fdo#111764])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
    - shard-tglb:         [PASS][50] -> [INCOMPLETE][51] ([fdo#111850])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@perf_pmu@busy-check-all-vcs1:
    - shard-iclb:         [PASS][52] -> [SKIP][53] ([fdo#112080]) +8 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@perf_pmu@busy-check-all-vcs1.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb6/igt@perf_pmu@busy-check-all-vcs1.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@vcs1-mixed-process:
    - shard-iclb:         [SKIP][54] ([fdo#109276] / [fdo#112080]) -> [PASS][55] +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@gem_ctx_persistence@vcs1-mixed-process.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@gem_ctx_persistence@vcs1-mixed-process.html

  * igt@gem_eio@hibernate:
    - shard-tglb:         [INCOMPLETE][56] ([fdo#111832]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb2/igt@gem_eio@hibernate.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb5/igt@gem_eio@hibernate.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][58] ([fdo#110854]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb5/igt@gem_exec_balancer@smoke.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb4/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][60] ([fdo#112080]) -> [PASS][61] +8 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][62] ([fdo#112146]) -> [PASS][63] +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb6/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [DMESG-WARN][64] ([fdo#111870]) -> [PASS][65] +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][66] ([fdo#111870]) -> [PASS][67] +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-hsw4/igt@gem_userptr_blits@sync-unmap-after-close.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-hsw4/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen:
    - shard-apl:          [FAIL][68] ([fdo#103232]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
    - shard-kbl:          [FAIL][70] ([fdo#103232]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          [FAIL][72] ([fdo#105363]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-tglb:         [INCOMPLETE][74] ([fdo#111832] / [fdo#111850] / [fdo#112031]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
    - shard-iclb:         [FAIL][76] ([fdo#103167]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-tglb:         [FAIL][78] ([fdo#103167]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-tglb:         [FAIL][80] -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb5/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb7/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
    - shard-iclb:         [FAIL][82] ([fdo#112213]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb4/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb1/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +4 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [DMESG-WARN][86] ([fdo#108566]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [SKIP][88] ([fdo#109441]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb7/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][90] ([fdo#109276]) -> [PASS][91] +17 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-iclb6/igt@prime_busy@hang-bsd2.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-iclb1/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_exec_schedule@deep-bsd2:
    - shard-tglb:         [INCOMPLETE][92] ([fdo#111671]) -> [FAIL][93] ([fdo#111646])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7371/shard-tglb6/igt@gem_exec_schedule@deep-bsd2.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3727/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html

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

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#111998]: https://bugs.freedesktop.org/show_bug.cgi?id=111998
  [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#112213]: https://bugs.freedesktop.org/show_bug.cgi?id=112213
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 8)
------------------------------

  Missing    (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5295 -> IGTPW_3727
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7371: 4a9a6d1fade97c450a0eabbc3436f1dc5518b15e

== Logs ==

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

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

end of thread, other threads:[~2019-11-19 23:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-19 14:26 [PATCH i-g-t] i915/gem_mmap_gtt: Exercise many, many mappings of the same objects Chris Wilson
2019-11-19 14:26 ` [Intel-gfx] " Chris Wilson
2019-11-19 14:47 ` ✗ GitLab.Pipeline: warning for " Patchwork
2019-11-19 14:47   ` [Intel-gfx] " Patchwork
2019-11-19 14:56 ` ✓ Fi.CI.BAT: success " Patchwork
2019-11-19 14:56   ` [Intel-gfx] " Patchwork
2019-11-19 23:08 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-11-19 23:08   ` [Intel-gfx] " Patchwork

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