All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] i915/gem_exec_schedule: Replace vgem fence with sync_file
@ 2019-10-02 11:41 Chris Wilson
  2019-10-02 13:15 ` ✓ Fi.CI.BAT: success for " Patchwork
  2019-10-02 19:56 ` ✗ Fi.CI.IGT: failure " Patchwork
  0 siblings, 2 replies; 3+ messages in thread
From: Chris Wilson @ 2019-10-02 11:41 UTC (permalink / raw)
  To: intel-gfx

Slightly more complicated conversion than the earlier mass conversion as
deep() open-codes the execbuf loop, but still pretty simple replacement
of the plug object with the in-fence.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111646
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
 tests/i915/gem_exec_schedule.c | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/tests/i915/gem_exec_schedule.c b/tests/i915/gem_exec_schedule.c
index ddcb1f21a..f99e5e15d 100644
--- a/tests/i915/gem_exec_schedule.c
+++ b/tests/i915/gem_exec_schedule.c
@@ -1159,12 +1159,12 @@ static void deep(int fd, unsigned ring)
 	struct timespec tv = {};
 	IGT_CORK_HANDLE(cork);
 	unsigned int nreq;
-	uint32_t plug;
 	uint32_t result, dep[XS];
 	uint32_t read_buf[size / sizeof(uint32_t)];
 	uint32_t expected = 0;
 	uint32_t *ctx;
 	int dep_nreq;
+	int fence;
 	int n;
 
 	ctx = malloc(sizeof(*ctx) * MAX_CONTEXTS);
@@ -1206,34 +1206,35 @@ static void deep(int fd, unsigned ring)
 		gem_sync(fd, result);
 	}
 
-	plug = igt_cork_plug(&cork, fd);
+	fence = igt_cork_plug(&cork, fd);
 
 	/* Create a deep dependency chain, with a few branches */
 	for (n = 0; n < nreq && igt_seconds_elapsed(&tv) < 2; n++) {
 		const int gen = intel_gen(intel_get_drm_devid(fd));
-		struct drm_i915_gem_exec_object2 obj[3];
+		struct drm_i915_gem_exec_object2 obj[2];
 		struct drm_i915_gem_relocation_entry reloc;
 		struct drm_i915_gem_execbuffer2 eb = {
 			.buffers_ptr = to_user_pointer(obj),
-			.buffer_count = 3,
-			.flags = ring | (gen < 6 ? I915_EXEC_SECURE : 0),
+			.buffer_count = ARRAY_SIZE(obj),
+			.flags = ring |
+				(gen < 6 ? I915_EXEC_SECURE : 0) |
+				I915_EXEC_FENCE_IN,
 			.rsvd1 = ctx[n % MAX_CONTEXTS],
+			.rsvd2 = fence,
 		};
 		uint32_t batch[16];
 		int i;
 
 		memset(obj, 0, sizeof(obj));
-		obj[0].handle = plug;
-
 		memset(&reloc, 0, sizeof(reloc));
 		reloc.presumed_offset = 0;
 		reloc.offset = sizeof(uint32_t);
 		reloc.delta = sizeof(uint32_t) * n;
 		reloc.read_domains = I915_GEM_DOMAIN_RENDER;
 		reloc.write_domain = I915_GEM_DOMAIN_RENDER;
-		obj[2].handle = gem_create(fd, 4096);
-		obj[2].relocs_ptr = to_user_pointer(&reloc);
-		obj[2].relocation_count = 1;
+		obj[1].handle = gem_create(fd, 4096);
+		obj[1].relocs_ptr = to_user_pointer(&reloc);
+		obj[1].relocation_count = 1;
 
 		i = 0;
 		batch[i] = MI_STORE_DWORD_IMM | (gen < 6 ? 1 << 22 : 0);
@@ -1250,15 +1251,15 @@ static void deep(int fd, unsigned ring)
 		}
 		batch[++i] = eb.rsvd1;
 		batch[++i] = MI_BATCH_BUFFER_END;
-		gem_write(fd, obj[2].handle, 0, batch, sizeof(batch));
+		gem_write(fd, obj[1].handle, 0, batch, sizeof(batch));
 
 		gem_context_set_priority(fd, eb.rsvd1, MAX_PRIO - nreq + n);
 		for (int m = 0; m < XS; m++) {
-			obj[1].handle = dep[m];
-			reloc.target_handle = obj[1].handle;
+			obj[0].handle = dep[m];
+			reloc.target_handle = obj[0].handle;
 			gem_execbuf(fd, &eb);
 		}
-		gem_close(fd, obj[2].handle);
+		gem_close(fd, obj[1].handle);
 	}
 	igt_info("First deptree: %d requests [%.3fs]\n",
 		 n * XS, 1e-9*igt_nsec_elapsed(&tv));
@@ -1278,7 +1279,7 @@ static void deep(int fd, unsigned ring)
 		 n * XS, 1e-9*igt_nsec_elapsed(&tv));
 
 	unplug_show_queue(fd, &cork, ring);
-	gem_close(fd, plug);
+	close(fence);
 	igt_require(expected); /* too slow */
 
 	for (n = 0; n < MAX_CONTEXTS; n++)
-- 
2.23.0

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

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

* ✓ Fi.CI.BAT: success for i915/gem_exec_schedule: Replace vgem fence with sync_file
  2019-10-02 11:41 [PATCH i-g-t] i915/gem_exec_schedule: Replace vgem fence with sync_file Chris Wilson
@ 2019-10-02 13:15 ` Patchwork
  2019-10-02 19:56 ` ✗ Fi.CI.IGT: failure " Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-10-02 13:15 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_exec_schedule: Replace vgem fence with sync_file
URL   : https://patchwork.freedesktop.org/series/67486/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6988 -> IGTPW_3528
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@i915_selftest@live_gem_contexts:
    - {fi-tgl-u}:         NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-tgl-u/igt@i915_selftest@live_gem_contexts.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_mmap@basic:
    - fi-icl-u3:          [PASS][2] -> [DMESG-WARN][3] ([fdo#107724]) +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u3/igt@gem_mmap@basic.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u3/igt@gem_mmap@basic.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-icl-u2:          [PASS][4] -> [FAIL][5] ([fdo#109483] / [fdo#109635 ])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [PASS][6] -> [DMESG-WARN][7] ([fdo#102614])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@i915_module_load@reload-with-fault-injection:
    - {fi-icl-guc}:       [DMESG-WARN][8] ([fdo#106107]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-guc/igt@i915_module_load@reload-with-fault-injection.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-guc/igt@i915_module_load@reload-with-fault-injection.html

  * igt@kms_chamelium@hdmi-edid-read:
    - {fi-icl-u4}:        [FAIL][10] ([fdo#111045]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          [FAIL][12] ([fdo#109483]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
    - {fi-icl-u4}:        [FAIL][14] ([fdo#111045] / [fdo#111096]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - {fi-icl-dsi}:       [DMESG-WARN][16] ([fdo#106107]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-dsi/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-dsi/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@prime_self_import@basic-llseek-size:
    - fi-icl-u3:          [DMESG-WARN][18] ([fdo#107724]) -> [PASS][19] +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/fi-icl-u3/igt@prime_self_import@basic-llseek-size.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/fi-icl-u3/igt@prime_self_import@basic-llseek-size.html

  
#### Warnings ####

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

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

  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
  [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 
  [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#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600


Participating hosts (49 -> 46)
------------------------------

  Additional (4): fi-bdw-gvtdvm fi-tgl-u fi-skl-6260u fi-skl-6600u 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5209 -> IGTPW_3528

  CI-20190529: 20190529
  CI_DRM_6988: a41f194b3d8797220fd614bfd13df8752507bb27 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3528: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/index.html
  IGT_5209: ec639c89860b859fdf4b038c2fa8ad593bd6909e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* ✗ Fi.CI.IGT: failure for i915/gem_exec_schedule: Replace vgem fence with sync_file
  2019-10-02 11:41 [PATCH i-g-t] i915/gem_exec_schedule: Replace vgem fence with sync_file Chris Wilson
  2019-10-02 13:15 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-10-02 19:56 ` Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-10-02 19:56 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: i915/gem_exec_schedule: Replace vgem fence with sync_file
URL   : https://patchwork.freedesktop.org/series/67486/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6988_full -> IGTPW_3528_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_schedule@deep-blt:
    - shard-apl:          [PASS][1] -> [FAIL][2] +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl6/igt@gem_exec_schedule@deep-blt.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl4/igt@gem_exec_schedule@deep-blt.html
    - shard-kbl:          [PASS][3] -> [FAIL][4] +4 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-kbl2/igt@gem_exec_schedule@deep-blt.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-kbl4/igt@gem_exec_schedule@deep-blt.html

  * igt@gem_exec_schedule@deep-bsd:
    - shard-glk:          [PASS][5] -> [FAIL][6] +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-glk4/igt@gem_exec_schedule@deep-bsd.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-glk2/igt@gem_exec_schedule@deep-bsd.html

  * igt@gem_exec_schedule@deep-render:
    - shard-iclb:         [PASS][7] -> [FAIL][8] +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb1/igt@gem_exec_schedule@deep-render.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb7/igt@gem_exec_schedule@deep-render.html

  * igt@gem_userptr_blits@process-exit-gtt-busy:
    - shard-iclb:         NOTRUN -> [SKIP][9] +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb1/igt@gem_userptr_blits@process-exit-gtt-busy.html

  
#### Warnings ####

  * igt@gem_exec_schedule@deep-bsd:
    - shard-iclb:         [SKIP][10] ([fdo#111325]) -> [FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb4/igt@gem_exec_schedule@deep-bsd.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb7/igt@gem_exec_schedule@deep-bsd.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@independent-bsd2:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#109276]) +11 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb1/igt@gem_exec_schedule@independent-bsd2.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb3/igt@gem_exec_schedule@independent-bsd2.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([fdo#111325]) +6 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb3/igt@gem_exec_schedule@reorder-wide-bsd.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-snb:          [PASS][16] -> [DMESG-WARN][17] ([fdo#110789] / [fdo#111870])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-iclb:         [PASS][18] -> [DMESG-WARN][19] ([fdo#111870])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb6/igt@gem_userptr_blits@sync-unmap.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb7/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-apl:          [PASS][20] -> [DMESG-WARN][21] ([fdo#109385] / [fdo#111870])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl3/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [PASS][22] -> [INCOMPLETE][23] ([fdo#103540]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-hsw1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#103167]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [PASS][26] -> [DMESG-WARN][27] ([fdo#108566]) +4 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         [PASS][28] -> [FAIL][29] ([fdo#103166])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109441]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb2/igt@kms_psr@psr2_basic.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb1/igt@kms_psr@psr2_basic.html

  
#### Possible fixes ####

  * igt@gem_bad_reloc@negative-reloc-default:
    - shard-hsw:          [INCOMPLETE][32] ([fdo#103540]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-hsw1/igt@gem_bad_reloc@negative-reloc-default.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-hsw7/igt@gem_bad_reloc@negative-reloc-default.html

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          [FAIL][34] ([fdo#109661]) -> [PASS][35] +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-snb1/igt@gem_eio@unwedge-stress.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-snb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_basic@gtt-rcs0:
    - shard-snb:          [DMESG-WARN][36] -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-snb6/igt@gem_exec_basic@gtt-rcs0.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-snb1/igt@gem_exec_basic@gtt-rcs0.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [SKIP][38] ([fdo#111325]) -> [PASS][39] +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [SKIP][40] ([fdo#109276]) -> [PASS][41] +17 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb3/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-snb:          [DMESG-WARN][42] ([fdo#110789] / [fdo#111870]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-snb2/igt@gem_userptr_blits@coherency-sync.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-snb4/igt@gem_userptr_blits@coherency-sync.html

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

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-glk:          [DMESG-WARN][46] ([fdo#111870]) -> [PASS][47] +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-glk6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-glk6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
    - shard-iclb:         [DMESG-WARN][48] ([fdo#111870]) -> [PASS][49] +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-hsw:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51] +3 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-hsw2/igt@gem_userptr_blits@sync-unmap.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-hsw4/igt@gem_userptr_blits@sync-unmap.html

  * {igt@i915_pm_dc@dc5-dpms}:
    - shard-iclb:         [FAIL][52] ([fdo#111795 ]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb2/igt@i915_pm_dc@dc5-dpms.html

  * igt@kms_busy@extended-modeset-hang-newfb-render-c:
    - shard-iclb:         [INCOMPLETE][54] ([fdo#107713]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb7/igt@kms_busy@extended-modeset-hang-newfb-render-c.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb2/igt@kms_busy@extended-modeset-hang-newfb-render-c.html

  * igt@kms_cursor_crc@pipe-a-cursor-dpms:
    - shard-kbl:          [FAIL][56] ([fdo#103232]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-dpms.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-dpms.html
    - shard-apl:          [FAIL][58] ([fdo#103232]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-dpms.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-dpms.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-apl:          [DMESG-WARN][60] ([fdo#108566]) -> [PASS][61] +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_cursor_legacy@all-pipes-single-bo:
    - shard-apl:          [INCOMPLETE][62] ([fdo#103927]) -> [PASS][63] +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl3/igt@kms_cursor_legacy@all-pipes-single-bo.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl6/igt@kms_cursor_legacy@all-pipes-single-bo.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-hsw:          [DMESG-WARN][64] -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-hsw8/igt@kms_flip@2x-flip-vs-panning.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-hsw7/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@modeset-vs-vblank-race:
    - shard-apl:          [FAIL][66] ([fdo#111609]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-apl7/igt@kms_flip@modeset-vs-vblank-race.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-apl1/igt@kms_flip@modeset-vs-vblank-race.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [FAIL][68] ([fdo#103167]) -> [PASS][69] +7 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_psr@no_drrs:
    - shard-iclb:         [FAIL][70] ([fdo#108341]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb1/igt@kms_psr@no_drrs.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb6/igt@kms_psr@no_drrs.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][72] ([fdo#109441]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb8/igt@kms_psr@psr2_suspend.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb2/igt@kms_psr@psr2_suspend.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][74] ([fdo#111329]) -> [SKIP][75] ([fdo#109276])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_mocs_settings@mocs-isolation-bsd2:
    - shard-iclb:         [FAIL][76] ([fdo#111330]) -> [SKIP][77] ([fdo#109276])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb2/igt@gem_mocs_settings@mocs-isolation-bsd2.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb6/igt@gem_mocs_settings@mocs-isolation-bsd2.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [SKIP][78] ([fdo#109276]) -> [FAIL][79] ([fdo#111330])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6988/shard-iclb6/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/shard-iclb2/igt@gem_mocs_settings@mocs-settings-bsd2.html

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

  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385
  [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#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111609]: https://bugs.freedesktop.org/show_bug.cgi?id=111609
  [fdo#111795 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111795 
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870


Participating hosts (11 -> 6)
------------------------------

  Missing    (5): shard-skl pig-hsw-4770r pig-glk-j5005 shard-tglb pig-skl-6260u 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5209 -> IGTPW_3528
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_6988: a41f194b3d8797220fd614bfd13df8752507bb27 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3528: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3528/index.html
  IGT_5209: ec639c89860b859fdf4b038c2fa8ad593bd6909e @ 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_3528/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2019-10-02 19:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-02 11:41 [PATCH i-g-t] i915/gem_exec_schedule: Replace vgem fence with sync_file Chris Wilson
2019-10-02 13:15 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-10-02 19:56 ` ✗ Fi.CI.IGT: failure " 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.