All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v3] tests/prime_vgem: Skip basic-read/write subtests if not supported
@ 2019-11-26 14:45 ` Janusz Krzysztofik
  0 siblings, 0 replies; 6+ messages in thread
From: Janusz Krzysztofik @ 2019-11-26 14:45 UTC (permalink / raw)
  To: Daniel Vetter, Joonas Lahtinen; +Cc: igt-dev, intel-gfx

As we've agreed that using I915_GEM_PREAD/PWRITE IOCTLs on dma-buf
objects doesn't make much sense, we are not going to extend their
handlers in the i915 driver with new processing paths required for them
to work correctly with dma-buf objects on future hardware with no
mappable aperture.  When running on that kind of hardware, just skip
subtests which use those IOCTLs.

v2: Examine pread/pwrite ABI, not mmap ABI (Chris)
v3: Don't use "no mappable GGTT" wording in commit message (Chris)

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/ioctl_wrappers.c | 2 +-
 lib/ioctl_wrappers.h | 1 +
 tests/prime_vgem.c   | 6 ++++++
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 628f8b83..78b92bd2 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -356,7 +356,7 @@ void gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64
 	igt_assert_eq(__gem_write(fd, handle, offset, buf, length), 0);
 }
 
-static int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
 {
 	struct drm_i915_gem_pread gem_pread;
 	int err;
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index f2412d78..97f278ed 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -69,6 +69,7 @@ uint32_t gem_open(int fd, uint32_t name);
 void gem_close(int fd, uint32_t handle);
 int __gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64_t length);
 void gem_write(int fd, uint32_t handle, uint64_t offset,  const void *buf, uint64_t length);
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 void gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 int __gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
 void gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
index 04cc913d..6595818c 100644
--- a/tests/prime_vgem.c
+++ b/tests/prime_vgem.c
@@ -46,6 +46,8 @@ static void test_read(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_WRITE);
 	for (i = 0; i < 1024; i++)
 		ptr[1024*i] = i;
@@ -81,6 +83,8 @@ static void test_fence_read(int i915, int vgem)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	igt_fork(child, 1) {
 		close(master[0]);
 		close(slave[1]);
@@ -191,6 +195,8 @@ static void test_write(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_write(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_READ);
 	gem_close(vgem, scratch.handle);
 
-- 
2.21.0

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

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

* [Intel-gfx] [PATCH i-g-t v3] tests/prime_vgem: Skip basic-read/write subtests if not supported
@ 2019-11-26 14:45 ` Janusz Krzysztofik
  0 siblings, 0 replies; 6+ messages in thread
From: Janusz Krzysztofik @ 2019-11-26 14:45 UTC (permalink / raw)
  To: Daniel Vetter, Joonas Lahtinen; +Cc: igt-dev, intel-gfx

As we've agreed that using I915_GEM_PREAD/PWRITE IOCTLs on dma-buf
objects doesn't make much sense, we are not going to extend their
handlers in the i915 driver with new processing paths required for them
to work correctly with dma-buf objects on future hardware with no
mappable aperture.  When running on that kind of hardware, just skip
subtests which use those IOCTLs.

v2: Examine pread/pwrite ABI, not mmap ABI (Chris)
v3: Don't use "no mappable GGTT" wording in commit message (Chris)

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/ioctl_wrappers.c | 2 +-
 lib/ioctl_wrappers.h | 1 +
 tests/prime_vgem.c   | 6 ++++++
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 628f8b83..78b92bd2 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -356,7 +356,7 @@ void gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64
 	igt_assert_eq(__gem_write(fd, handle, offset, buf, length), 0);
 }
 
-static int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
 {
 	struct drm_i915_gem_pread gem_pread;
 	int err;
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index f2412d78..97f278ed 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -69,6 +69,7 @@ uint32_t gem_open(int fd, uint32_t name);
 void gem_close(int fd, uint32_t handle);
 int __gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64_t length);
 void gem_write(int fd, uint32_t handle, uint64_t offset,  const void *buf, uint64_t length);
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 void gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 int __gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
 void gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
index 04cc913d..6595818c 100644
--- a/tests/prime_vgem.c
+++ b/tests/prime_vgem.c
@@ -46,6 +46,8 @@ static void test_read(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_WRITE);
 	for (i = 0; i < 1024; i++)
 		ptr[1024*i] = i;
@@ -81,6 +83,8 @@ static void test_fence_read(int i915, int vgem)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	igt_fork(child, 1) {
 		close(master[0]);
 		close(slave[1]);
@@ -191,6 +195,8 @@ static void test_write(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_write(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_READ);
 	gem_close(vgem, scratch.handle);
 
-- 
2.21.0

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

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

* [igt-dev] [PATCH i-g-t v3] tests/prime_vgem: Skip basic-read/write subtests if not supported
@ 2019-11-26 14:45 ` Janusz Krzysztofik
  0 siblings, 0 replies; 6+ messages in thread
From: Janusz Krzysztofik @ 2019-11-26 14:45 UTC (permalink / raw)
  To: Daniel Vetter, Joonas Lahtinen; +Cc: igt-dev, intel-gfx

As we've agreed that using I915_GEM_PREAD/PWRITE IOCTLs on dma-buf
objects doesn't make much sense, we are not going to extend their
handlers in the i915 driver with new processing paths required for them
to work correctly with dma-buf objects on future hardware with no
mappable aperture.  When running on that kind of hardware, just skip
subtests which use those IOCTLs.

v2: Examine pread/pwrite ABI, not mmap ABI (Chris)
v3: Don't use "no mappable GGTT" wording in commit message (Chris)

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/ioctl_wrappers.c | 2 +-
 lib/ioctl_wrappers.h | 1 +
 tests/prime_vgem.c   | 6 ++++++
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 628f8b83..78b92bd2 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -356,7 +356,7 @@ void gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64
 	igt_assert_eq(__gem_write(fd, handle, offset, buf, length), 0);
 }
 
-static int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length)
 {
 	struct drm_i915_gem_pread gem_pread;
 	int err;
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index f2412d78..97f278ed 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -69,6 +69,7 @@ uint32_t gem_open(int fd, uint32_t name);
 void gem_close(int fd, uint32_t handle);
 int __gem_write(int fd, uint32_t handle, uint64_t offset, const void *buf, uint64_t length);
 void gem_write(int fd, uint32_t handle, uint64_t offset,  const void *buf, uint64_t length);
+int __gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 void gem_read(int fd, uint32_t handle, uint64_t offset, void *buf, uint64_t length);
 int __gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
 void gem_set_domain(int fd, uint32_t handle, uint32_t read, uint32_t write);
diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
index 04cc913d..6595818c 100644
--- a/tests/prime_vgem.c
+++ b/tests/prime_vgem.c
@@ -46,6 +46,8 @@ static void test_read(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_WRITE);
 	for (i = 0; i < 1024; i++)
 		ptr[1024*i] = i;
@@ -81,6 +83,8 @@ static void test_fence_read(int i915, int vgem)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_read(i915, handle, 0, &i, sizeof(i)));
+
 	igt_fork(child, 1) {
 		close(master[0]);
 		close(slave[1]);
@@ -191,6 +195,8 @@ static void test_write(int vgem, int i915)
 	handle = prime_fd_to_handle(i915, dmabuf);
 	close(dmabuf);
 
+	igt_skip_on(__gem_write(i915, handle, 0, &i, sizeof(i)));
+
 	ptr = vgem_mmap(vgem, &scratch, PROT_READ);
 	gem_close(vgem, scratch.handle);
 
-- 
2.21.0

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/prime_vgem: Skip basic-read/write subtests if not supported
  2019-11-26 14:45 ` [Intel-gfx] " Janusz Krzysztofik
  (?)
  (?)
@ 2019-11-26 16:00 ` Patchwork
  -1 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-11-26 16:00 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/prime_vgem: Skip basic-read/write subtests if not supported
URL   : https://patchwork.freedesktop.org/series/70051/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7425 -> IGTPW_3759
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_blt:
    - fi-hsw-peppy:       [PASS][1] -> [DMESG-FAIL][2] ([fdo#112147])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/fi-hsw-peppy/igt@i915_selftest@live_blt.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/fi-hsw-peppy/igt@i915_selftest@live_blt.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_7425/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s0:
    - fi-kbl-x1275:       [DMESG-WARN][5] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][6] ([fdo#103558] / [fdo#105602]) +5 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/fi-kbl-x1275/igt@gem_exec_suspend@basic-s0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/fi-kbl-x1275/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-kbl-x1275:       [DMESG-WARN][7] ([fdo#103558] / [fdo#105602] / [fdo#107139]) -> [DMESG-WARN][8] ([fdo#103558] / [fdo#105602] / [fdo#105763] / [fdo#107139])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][11] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][12] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +8 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

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

  [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
  [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
  [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
  [fdo#107139]: https://bugs.freedesktop.org/show_bug.cgi?id=107139
  [fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
  [fdo#112298]: https://bugs.freedesktop.org/show_bug.cgi?id=112298


Participating hosts (51 -> 45)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5309 -> IGTPW_3759

  CI-20190529: 20190529
  CI_DRM_7425: 96b1a78fd763d6d3f07e7dbae11b094bf6b31936 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3759: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/index.html
  IGT_5309: f06d36dc6ba3e60088000f81dc4ab4754cd639ad @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/prime_vgem: Skip basic-read/write subtests if not supported
  2019-11-26 14:45 ` [Intel-gfx] " Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  (?)
@ 2019-11-27  2:14 ` Patchwork
  2019-11-28  8:50   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2019-11-27  2:14 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests/prime_vgem: Skip basic-read/write subtests if not supported
URL   : https://patchwork.freedesktop.org/series/70051/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7425_full -> IGTPW_3759_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_persistence@rcs0-hostile-preempt:
    - shard-tglb:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb5/igt@gem_ctx_persistence@rcs0-hostile-preempt.html

  * igt@gem_ctx_persistence@vcs1-hostile-preempt:
    - shard-iclb:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/igt@gem_ctx_persistence@vcs1-hostile-preempt.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-suspend:
    - shard-tglb:         [PASS][3] -> [INCOMPLETE][4] ([fdo#111832] / [fdo#111850] / [fdo#112081])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb8/igt@gem_eio@in-flight-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@smoke:
    - shard-tglb:         [PASS][5] -> [INCOMPLETE][6] ([fdo#111593])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/igt@gem_exec_balancer@smoke.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb1/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@independent-bsd1:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/igt@gem_exec_schedule@independent-bsd1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/igt@gem_exec_schedule@independent-bsd1.html

  * igt@gem_persistent_relocs@forked-thrash-inactive:
    - shard-tglb:         [PASS][9] -> [TIMEOUT][10] ([fdo#112068 ] / [fdo#112126])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb1/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb3/igt@gem_persistent_relocs@forked-thrash-inactive.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-hsw:          [PASS][11] -> [DMESG-WARN][12] ([fdo#111870])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-hsw8/igt@gem_userptr_blits@dmabuf-unsync.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-hsw6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-snb:          [PASS][13] -> [DMESG-WARN][14] ([fdo#111870])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl4/igt@gem_workarounds@suspend-resume.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl1/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([fdo#108566]) +3 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-snb:          [PASS][19] -> [SKIP][20] ([fdo#109271])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_selftest@live_execlists:
    - shard-glk:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103359] / [fdo#112067] / [k.org#198133])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-glk7/igt@i915_selftest@live_execlists.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-glk4/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gt_heartbeat:
    - shard-apl:          [PASS][23] -> [DMESG-FAIL][24] ([fdo#112096])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl4/igt@i915_selftest@live_gt_heartbeat.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl1/igt@i915_selftest@live_gt_heartbeat.html

  * igt@kms_color@pipe-invalid-ctm-matrix-sizes:
    - shard-kbl:          [PASS][25] -> [INCOMPLETE][26] ([fdo#103665])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl2/igt@kms_color@pipe-invalid-ctm-matrix-sizes.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl2/igt@kms_color@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack:
    - shard-tglb:         [PASS][27] -> [FAIL][28] ([fdo#103167]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
    - shard-iclb:         [PASS][29] -> [INCOMPLETE][30] ([fdo#106978] / [fdo#107713])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-tglb:         [PASS][31] -> [INCOMPLETE][32] ([fdo#111884])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][33] -> [SKIP][34] ([fdo#109441])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb5/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl7/igt@kms_setmode@basic.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl7/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-tglb:         [PASS][37] -> [INCOMPLETE][38] ([fdo#111850])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-snb:          [PASS][39] -> [DMESG-WARN][40] ([fdo#102365])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          [FAIL][41] ([fdo#109661]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb1/igt@gem_eio@unwedge-stress.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_parallel@vcs1-contexts:
    - shard-iclb:         [SKIP][43] ([fdo#112080]) -> [PASS][44] +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb8/igt@gem_exec_parallel@vcs1-contexts.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/igt@gem_exec_parallel@vcs1-contexts.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [SKIP][45] ([fdo#109276]) -> [PASS][46] +4 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_exec_schedule@preempt-self-bsd:
    - shard-iclb:         [SKIP][47] ([fdo#112146]) -> [PASS][48] +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/igt@gem_exec_schedule@preempt-self-bsd.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/igt@gem_exec_schedule@preempt-self-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][51] ([fdo#111870]) -> [PASS][52] +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html

  * {igt@i915_pm_dc@dc3co-vpb-simulation}:
    - shard-tglb:         [SKIP][53] -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb1/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-tglb:         [INCOMPLETE][55] ([fdo#111832] / [fdo#111850]) -> [PASS][56] +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/igt@i915_suspend@fence-restore-tiled2untiled.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb5/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][57] ([fdo#108566]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl1/igt@i915_suspend@sysfs-reader.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl6/igt@i915_suspend@sysfs-reader.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
    - shard-iclb:         [INCOMPLETE][59] ([fdo#107713]) -> [PASS][60] +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-iclb:         [FAIL][61] ([fdo#103167]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-tglb:         [INCOMPLETE][63] ([fdo#111884]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
    - shard-kbl:          [INCOMPLETE][65] ([fdo#103665]) -> [PASS][66] +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-tglb:         [FAIL][67] ([fdo#103167]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-glk:          [FAIL][69] ([fdo#103167]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [DMESG-WARN][71] ([fdo#108566]) -> [PASS][72] +3 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv-switch:
    - shard-iclb:         [FAIL][73] ([fdo#111329]) -> [SKIP][74] ([fdo#109276] / [fdo#112080])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][75] ([fdo#111870]) -> [DMESG-WARN][76] ([fdo#110789] / [fdo#111870])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html

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

  [fdo#102365]: https://bugs.freedesktop.org/show_bug.cgi?id=102365
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [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#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
  [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
  [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#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
  [fdo#112068 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112068 
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112081]: https://bugs.freedesktop.org/show_bug.cgi?id=112081
  [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096
  [fdo#112126]: https://bugs.freedesktop.org/show_bug.cgi?id=112126
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5309 -> IGTPW_3759
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7425: 96b1a78fd763d6d3f07e7dbae11b094bf6b31936 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3759: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/index.html
  IGT_5309: f06d36dc6ba3e60088000f81dc4ab4754cd639ad @ 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_3759/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/prime_vgem: Skip basic-read/write subtests if not supported
  2019-11-27  2:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-11-28  8:50   ` Janusz Krzysztofik
  0 siblings, 0 replies; 6+ messages in thread
From: Janusz Krzysztofik @ 2019-11-28  8:50 UTC (permalink / raw)
  To: igt-dev

On Wednesday, November 27, 2019 3:14:17 AM CET Patchwork wrote:
> == Series Details ==
> 
> Series: tests/prime_vgem: Skip basic-read/write subtests if not supported
> URL   : https://patchwork.freedesktop.org/series/70051/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7425_full -> IGTPW_3759_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_3759_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_3759_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_3759/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in 
IGTPW_3759_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ctx_persistence@rcs0-hostile-preempt:
>     - shard-tglb:         NOTRUN -> [FAIL][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb5/
igt@gem_ctx_persistence@rcs0-hostile-preempt.html
> 
>   * igt@gem_ctx_persistence@vcs1-hostile-preempt:
>     - shard-iclb:         NOTRUN -> [FAIL][2]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/
igt@gem_ctx_persistence@vcs1-hostile-preempt.html

These are evidently false positives, I believe.  The patch doesn't touch 
gem_ctx_persistence, and conversion of __gem_read() from static to external 
can't be the source of these "regressions".

Thanks,
Janusz


> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3759_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-tglb:         [PASS][3] -> [INCOMPLETE][4] ([fdo#111832] / 
[fdo#111850] / [fdo#112081])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb8/
igt@gem_eio@in-flight-suspend.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/
igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_balancer@smoke:
>     - shard-tglb:         [PASS][5] -> [INCOMPLETE][6] ([fdo#111593])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/
igt@gem_exec_balancer@smoke.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb1/
igt@gem_exec_balancer@smoke.html
> 
>   * igt@gem_exec_schedule@independent-bsd1:
>     - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#109276])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/
igt@gem_exec_schedule@independent-bsd1.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/
igt@gem_exec_schedule@independent-bsd1.html
> 
>   * igt@gem_persistent_relocs@forked-thrash-inactive:
>     - shard-tglb:         [PASS][9] -> [TIMEOUT][10] ([fdo#112068 ] / 
[fdo#112126])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb1/
igt@gem_persistent_relocs@forked-thrash-inactive.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb3/
igt@gem_persistent_relocs@forked-thrash-inactive.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-hsw:          [PASS][11] -> [DMESG-WARN][12] ([fdo#111870])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-hsw8/
igt@gem_userptr_blits@dmabuf-unsync.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-hsw6/
igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
>     - shard-snb:          [PASS][13] -> [DMESG-WARN][14] ([fdo#111870])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb5/
igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb1/
igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl4/
igt@gem_workarounds@suspend-resume.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl1/
igt@gem_workarounds@suspend-resume.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([fdo#108566]) +3 
similar issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl4/
igt@gem_workarounds@suspend-resume-fd.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl4/
igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_pm_rc6_residency@rc6-accuracy:
>     - shard-snb:          [PASS][19] -> [SKIP][20] ([fdo#109271])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb2/
igt@i915_pm_rc6_residency@rc6-accuracy.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb2/
igt@i915_pm_rc6_residency@rc6-accuracy.html
> 
>   * igt@i915_selftest@live_execlists:
>     - shard-glk:          [PASS][21] -> [INCOMPLETE][22] ([fdo#103359] / 
[fdo#112067] / [k.org#198133])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-glk7/
igt@i915_selftest@live_execlists.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-glk4/
igt@i915_selftest@live_execlists.html
> 
>   * igt@i915_selftest@live_gt_heartbeat:
>     - shard-apl:          [PASS][23] -> [DMESG-FAIL][24] ([fdo#112096])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl4/
igt@i915_selftest@live_gt_heartbeat.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl1/
igt@i915_selftest@live_gt_heartbeat.html
> 
>   * igt@kms_color@pipe-invalid-ctm-matrix-sizes:
>     - shard-kbl:          [PASS][25] -> [INCOMPLETE][26] ([fdo#103665])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl2/
igt@kms_color@pipe-invalid-ctm-matrix-sizes.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl2/
igt@kms_color@pipe-invalid-ctm-matrix-sizes.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack:
>     - shard-tglb:         [PASS][27] -> [FAIL][28] ([fdo#103167]) +2 similar 
issues
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/
igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/
igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
>     - shard-iclb:         [PASS][29] -> [INCOMPLETE][30] ([fdo#106978] / 
[fdo#107713])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb8/
igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb5/
igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
>     - shard-tglb:         [PASS][31] -> [INCOMPLETE][32] ([fdo#111884])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb4/
igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb4/
igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_psr@psr2_sprite_mmap_gtt:
>     - shard-iclb:         [PASS][33] -> [SKIP][34] ([fdo#109441])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb2/
igt@kms_psr@psr2_sprite_mmap_gtt.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb5/
igt@kms_psr@psr2_sprite_mmap_gtt.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl7/
igt@kms_setmode@basic.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl7/
igt@kms_setmode@basic.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
>     - shard-tglb:         [PASS][37] -> [INCOMPLETE][38] ([fdo#111850])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb5/
igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb4/
igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-suspend:
>     - shard-snb:          [PASS][39] -> [DMESG-WARN][40] ([fdo#102365])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb6/
igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb5/
igt@kms_vblank@pipe-b-ts-continuation-suspend.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-snb:          [FAIL][41] ([fdo#109661]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb1/
igt@gem_eio@unwedge-stress.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb4/
igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_parallel@vcs1-contexts:
>     - shard-iclb:         [SKIP][43] ([fdo#112080]) -> [PASS][44] +1 similar 
issue
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb8/
igt@gem_exec_parallel@vcs1-contexts.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/
igt@gem_exec_parallel@vcs1-contexts.html
> 
>   * igt@gem_exec_schedule@preempt-queue-bsd1:
>     - shard-iclb:         [SKIP][45] ([fdo#109276]) -> [PASS][46] +4 similar 
issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb5/
igt@gem_exec_schedule@preempt-queue-bsd1.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/
igt@gem_exec_schedule@preempt-queue-bsd1.html
> 
>   * igt@gem_exec_schedule@preempt-self-bsd:
>     - shard-iclb:         [SKIP][47] ([fdo#112146]) -> [PASS][48] +1 similar 
issue
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/
igt@gem_exec_schedule@preempt-self-bsd.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/
igt@gem_exec_schedule@preempt-self-bsd.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy:
>     - shard-snb:          [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50]
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb2/
igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb4/
igt@gem_userptr_blits@map-fixed-invalidate-busy.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-hsw:          [DMESG-WARN][51] ([fdo#111870]) -> [PASS][52] +4 
similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-hsw5/
igt@gem_userptr_blits@sync-unmap-after-close.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-hsw5/
igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * {igt@i915_pm_dc@dc3co-vpb-simulation}:
>     - shard-tglb:         [SKIP][53] -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb7/
igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb1/
igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_suspend@fence-restore-tiled2untiled:
>     - shard-tglb:         [INCOMPLETE][55] ([fdo#111832] / [fdo#111850]) -> 
[PASS][56] +2 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb2/
igt@i915_suspend@fence-restore-tiled2untiled.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb5/
igt@i915_suspend@fence-restore-tiled2untiled.html
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-apl:          [DMESG-WARN][57] ([fdo#108566]) -> [PASS][58]
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-apl1/
igt@i915_suspend@sysfs-reader.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-apl6/
igt@i915_suspend@sysfs-reader.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
>     - shard-iclb:         [INCOMPLETE][59] ([fdo#107713]) -> [PASS][60] +1 
similar issue
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb2/
igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/
igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
>     - shard-iclb:         [FAIL][61] ([fdo#103167]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb5/
igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb4/
igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
>     - shard-tglb:         [INCOMPLETE][63] ([fdo#111884]) -> [PASS][64]
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb1/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb7/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
>     - shard-kbl:          [INCOMPLETE][65] ([fdo#103665]) -> [PASS][66] +1 
similar issue
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl1/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl7/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-tglb:         [FAIL][67] ([fdo#103167]) -> [PASS][68]
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-tglb8/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-tglb3/
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
>     - shard-glk:          [FAIL][69] ([fdo#103167]) -> [PASS][70]
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-glk5/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-glk7/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-kbl:          [DMESG-WARN][71] ([fdo#108566]) -> [PASS][72] +3 
similar issues
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-kbl1/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-kbl2/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_ctx_isolation@vcs1-nonpriv-switch:
>     - shard-iclb:         [FAIL][73] ([fdo#111329]) -> [SKIP][74] 
([fdo#109276] / [fdo#112080])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-iclb4/
igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-iclb3/
igt@gem_ctx_isolation@vcs1-nonpriv-switch.html
> 
>   * igt@gem_userptr_blits@sync-unmap-cycles:
>     - shard-snb:          [DMESG-WARN][75] ([fdo#111870]) -> [DMESG-WARN]
[76] ([fdo#110789] / [fdo#111870])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7425/shard-snb5/
igt@gem_userptr_blits@sync-unmap-cycles.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/shard-snb5/
igt@gem_userptr_blits@sync-unmap-cycles.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when 
computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#102365]: https://bugs.freedesktop.org/show_bug.cgi?id=102365
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
>   [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>   [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#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
>   [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
>   [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
>   [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
>   [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#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
>   [fdo#112068 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112068 
>   [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
>   [fdo#112081]: https://bugs.freedesktop.org/show_bug.cgi?id=112081
>   [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096
>   [fdo#112126]: https://bugs.freedesktop.org/show_bug.cgi?id=112126
>   [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
>   [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
>   [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
> 
> 
> Participating hosts (11 -> 8)
> ------------------------------
> 
>   Missing    (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5309 -> IGTPW_3759
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_7425: 96b1a78fd763d6d3f07e7dbae11b094bf6b31936 @ git://
anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_3759: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3759/index.html
>   IGT_5309: f06d36dc6ba3e60088000f81dc4ab4754cd639ad @ 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_3759/
index.html
> 




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

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

end of thread, other threads:[~2019-11-28  8:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-26 14:45 [PATCH i-g-t v3] tests/prime_vgem: Skip basic-read/write subtests if not supported Janusz Krzysztofik
2019-11-26 14:45 ` [igt-dev] " Janusz Krzysztofik
2019-11-26 14:45 ` [Intel-gfx] " Janusz Krzysztofik
2019-11-26 16:00 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-11-27  2:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2019-11-28  8:50   ` Janusz Krzysztofik

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.