* [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test
@ 2020-02-13 4:50 Sravan Kumar Nedunoori
2020-02-13 5:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Sravan Kumar Nedunoori @ 2020-02-13 4:50 UTC (permalink / raw)
To: sravan.kumar.nedunoori, igt-dev
Removal of this test, as it checks read/write syncpoints when switching rings
and doesnt add anything to other tests.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
Signed-off-by: Sravan Kumar Nedunoori <sravan.kumar.nedunoori@intel.com>
---
tests/Makefile.sources | 3 -
tests/i915/gem_write_read_ring_switch.c | 191 ------------------------
tests/meson.build | 1 -
3 files changed, 195 deletions(-)
delete mode 100644 tests/i915/gem_write_read_ring_switch.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 2cfad802..cacc2d2c 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -445,9 +445,6 @@ gem_wait_SOURCES = i915/gem_wait.c
TESTS_progs += gem_workarounds
gem_workarounds_SOURCES = i915/gem_workarounds.c
-TESTS_progs += gem_write_read_ring_switch
-gem_write_read_ring_switch_SOURCES = i915/gem_write_read_ring_switch.c
-
TESTS_progs += gen3_mixed_blits
gen3_mixed_blits_SOURCES = i915/gen3_mixed_blits.c
diff --git a/tests/i915/gem_write_read_ring_switch.c b/tests/i915/gem_write_read_ring_switch.c
deleted file mode 100644
index 55bfbeaf..00000000
--- a/tests/i915/gem_write_read_ring_switch.c
+++ /dev/null
@@ -1,191 +0,0 @@
-/*
- * Copyright © 2013 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- * Authors:
- * Daniel Vetter <daniel.vetter@ffwll.ch>
- *
- */
-
-#include "igt.h"
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <fcntl.h>
-#include <inttypes.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <sys/time.h>
-
-#include <drm.h>
-
-#include "i830_reg.h"
-
-IGT_TEST_DESCRIPTION("Check read/write syncpoints when switching rings.");
-
-#define LOCAL_I915_EXEC_VEBOX (4<<0)
-
-static drm_intel_bufmgr *bufmgr;
-struct intel_batchbuffer *batch;
-static drm_intel_bo *load_bo, *target_bo, *dummy_bo;
-int fd;
-
-/* Testcase: check read/write syncpoints when switching rings
- *
- * We've had a bug where the syncpoint for the last write was mangled after a
- * ring switch using semaphores. This resulted in cpu reads returning before the
- * write actually completed. This test exercises this.
- */
-
-#define COLOR 0xffffffff
-static void run_test(int ring)
-{
- uint32_t *ptr;
- int i;
-
- gem_require_ring(fd, ring);
- /* Testing render only makes sense with separate blt. */
- if (ring == I915_EXEC_RENDER)
- gem_require_ring(fd, I915_EXEC_BLT);
-
- target_bo = drm_intel_bo_alloc(bufmgr, "target bo", 4096, 4096);
- igt_assert(target_bo);
-
- /* Need to map first so that we can do our own domain mangement with
- * set_domain. */
- drm_intel_bo_map(target_bo, 0);
- ptr = target_bo->virtual;
- igt_assert(*ptr == 0);
-
- /* put some load onto the gpu to keep the light buffers active for long
- * enough */
- for (i = 0; i < 1000; i++) {
- BLIT_COPY_BATCH_START(0);
- OUT_BATCH((3 << 24) | /* 32 bits */
- (0xcc << 16) | /* copy ROP */
- 4096);
- OUT_BATCH(0); /* dst x1,y1 */
- OUT_BATCH((1024 << 16) | 512);
- OUT_RELOC_FENCED(load_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
- OUT_BATCH((0 << 16) | 512); /* src x1, y1 */
- OUT_BATCH(4096);
- OUT_RELOC_FENCED(load_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
- ADVANCE_BATCH();
- }
-
- COLOR_BLIT_COPY_BATCH_START(0);
- OUT_BATCH((3 << 24) | /* 32 bits */
- (0xff << 16) |
- 128);
- OUT_BATCH(0); /* dst x1,y1 */
- OUT_BATCH((1 << 16) | 1);
- OUT_RELOC_FENCED(target_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
- OUT_BATCH(COLOR);
- ADVANCE_BATCH();
-
- intel_batchbuffer_flush(batch);
-
- /* Emit an empty batch so that signalled seqno on the target ring >
- * signalled seqnoe on the blt ring. This is required to hit the bug. */
- BEGIN_BATCH(2, 0);
- OUT_BATCH(MI_NOOP);
- OUT_BATCH(MI_NOOP);
- ADVANCE_BATCH();
- intel_batchbuffer_flush_on_ring(batch, ring);
-
- /* For the ring->ring sync it's important to only emit a read reloc, for
- * otherwise the obj->last_write_seqno will be updated. */
- if (ring == I915_EXEC_RENDER) {
- BEGIN_BATCH(4, 1);
- OUT_BATCH(MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 1);
- OUT_BATCH(0xffffffff); /* compare dword */
- OUT_RELOC(target_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
- OUT_BATCH(MI_NOOP);
- ADVANCE_BATCH();
- } else {
- BEGIN_BATCH(4, 1);
- OUT_BATCH(MI_FLUSH_DW | 1);
- OUT_BATCH(0); /* reserved */
- OUT_RELOC(target_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
- OUT_BATCH(MI_NOOP | (1<<22) | (0xf));
- ADVANCE_BATCH();
- }
- intel_batchbuffer_flush_on_ring(batch, ring);
-
- gem_set_domain(fd, target_bo->handle, I915_GEM_DOMAIN_GTT, 0);
- igt_assert(*ptr == COLOR);
- drm_intel_bo_unmap(target_bo);
-
- drm_intel_bo_unreference(target_bo);
-}
-
-igt_main
-{
- static const struct {
- const char *name;
- int ring;
- } tests[] = {
- { "blt2render", I915_EXEC_RENDER },
- { "blt2bsd", I915_EXEC_BSD },
- { "blt2vebox", LOCAL_I915_EXEC_VEBOX },
- };
- int i;
-
- igt_fixture {
- fd = drm_open_driver(DRIVER_INTEL);
- igt_require_gem(fd);
-
- /* Test requires MI_FLUSH_DW and MI_COND_BATCH_BUFFER_END */
- igt_require(intel_gen(intel_get_drm_devid(fd)) >= 6);
-
- bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
- igt_assert(bufmgr);
- /* don't enable buffer reuse!! */
- //drm_intel_bufmgr_gem_enable_reuse(bufmgr);
-
- batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
- igt_assert(batch);
-
- dummy_bo = drm_intel_bo_alloc(bufmgr, "dummy bo", 4096, 4096);
- igt_assert(dummy_bo);
-
- load_bo = drm_intel_bo_alloc(bufmgr, "load bo", 1024*4096, 4096);
- igt_assert(load_bo);
- }
-
- for (i = 0; i < ARRAY_SIZE(tests); i++) {
- igt_subtest(tests[i].name)
- run_test(tests[i].ring);
- }
-
- igt_fork_signal_helper();
- for (i = 0; i < ARRAY_SIZE(tests); i++) {
- igt_subtest_f("%s-interruptible", tests[i].name)
- run_test(tests[i].ring);
- }
- igt_stop_signal_helper();
-
- igt_fixture {
- drm_intel_bufmgr_destroy(bufmgr);
-
- close(fd);
- }
-}
diff --git a/tests/meson.build b/tests/meson.build
index 6dc33a45..91674f4a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -215,7 +215,6 @@ i915_progs = [
'gem_vm_create',
'gem_wait',
'gem_workarounds',
- 'gem_write_read_ring_switch',
'i915_fb_tiling',
'i915_getparams_basic',
'i915_hangman',
--
2.25.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/i915/gem_write_read_ring_switch Removal of IGT Test
2020-02-13 4:50 [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test Sravan Kumar Nedunoori
@ 2020-02-13 5:37 ` Patchwork
2020-02-13 23:04 ` [igt-dev] [PATCH][PATCH i-g-t] " Chris Wilson
2020-02-16 20:32 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2020-02-13 5:37 UTC (permalink / raw)
To: Sravan Kumar Nedunoori; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_write_read_ring_switch Removal of IGT Test
URL : https://patchwork.freedesktop.org/series/73391/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7926 -> IGTPW_4142
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/index.html
Known issues
------------
Here are the changes found in IGTPW_4142 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_gem_contexts:
- fi-ivb-3770: [PASS][1] -> [DMESG-FAIL][2] ([i915#722])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/fi-ivb-3770/igt@i915_selftest@live_gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/fi-ivb-3770/igt@i915_selftest@live_gem_contexts.html
- fi-byt-n2820: [PASS][3] -> [DMESG-FAIL][4] ([i915#722])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html
- fi-cfl-guc: [PASS][5] -> [INCOMPLETE][6] ([CI#80] / [fdo#106070] / [i915#424])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
* igt@i915_selftest@live_hangcheck:
- fi-icl-u3: [PASS][7] -> [INCOMPLETE][8] ([fdo#108569])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [PASS][9] -> [FAIL][10] ([fdo#111407])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/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).
[CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80
[fdo#106070]: https://bugs.freedesktop.org/show_bug.cgi?id=106070
[fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
[i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424
[i915#722]: https://gitlab.freedesktop.org/drm/intel/issues/722
[i915#937]: https://gitlab.freedesktop.org/drm/intel/issues/937
Participating hosts (45 -> 46)
------------------------------
Additional (7): fi-hsw-peppy fi-skl-6770hq fi-bdw-gvtdvm fi-glk-dsi fi-gdg-551 fi-bsw-kefka fi-kbl-r
Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5437 -> IGTPW_4142
CI-20190529: 20190529
CI_DRM_7926: 6b2fe829d300abf285e9db8b252ffacd216df3ed @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4142: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/index.html
IGT_5437: ae42fedfd0c536c560e8e17b06d9c7b94a4e8f0c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
-igt@gem_write_read_ring_switch@blt2bsd
-igt@gem_write_read_ring_switch@blt2bsd-interruptible
-igt@gem_write_read_ring_switch@blt2render
-igt@gem_write_read_ring_switch@blt2render-interruptible
-igt@gem_write_read_ring_switch@blt2vebox
-igt@gem_write_read_ring_switch@blt2vebox-interruptible
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/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] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test
2020-02-13 4:50 [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test Sravan Kumar Nedunoori
2020-02-13 5:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-02-13 23:04 ` Chris Wilson
2020-02-14 13:26 ` Nedunoori, Sravan Kumar
2020-02-16 20:32 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 1 reply; 6+ messages in thread
From: Chris Wilson @ 2020-02-13 23:04 UTC (permalink / raw)
To: igt-dev, sravan.kumar.nedunoori
Quoting Sravan Kumar Nedunoori (2020-02-13 04:50:04)
> Removal of this test, as it checks read/write syncpoints when switching rings
> and doesnt add anything to other tests.
write/read sync. Ah, I was thinking about read/read and the only thing
that came to mind as proving that would be the gem_busy/extended
Ok, this is covered by the gem_exec_whisper brute, but do we have a
simple and clear test to show that writes are blocked by a reader?
for_each_physical_engine(writer)
dep = gem_create(4096);
for_each_physical_engine(reader) {
if (reader == write)
continue;
/* XXX with a few tweaks write a secret breadcrumb */
igt_spin_new(reader, .read = dep);
}
breadcrumb(write, dep); /* implicit fence -> queued after readers */
gem_quiescent_gpu(); /* cancels all spinners */
igt_assert_eq(breadcrumb == writers);
}
/* This can be reversed to test write->reader implicit fences */
that feels very, very much like a test we have somewhere. But I couldn't
put my finger on which one.
Given that outline, could we whip up a new pair of tests
(implicit-read-fence, implicit-write-fence) for gem_exec_schedule?
-Chris
_______________________________________________
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] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test
2020-02-13 23:04 ` [igt-dev] [PATCH][PATCH i-g-t] " Chris Wilson
@ 2020-02-14 13:26 ` Nedunoori, Sravan Kumar
2020-02-14 13:39 ` Chris Wilson
0 siblings, 1 reply; 6+ messages in thread
From: Nedunoori, Sravan Kumar @ 2020-02-14 13:26 UTC (permalink / raw)
To: Chris Wilson, igt-dev@lists.freedesktop.org
>Given that outline, could we whip up a new pair of tests (implicit-read-fence, implicit-write-fence) for gem_exec_schedule?
[Sravan] : Sure, will enhance the gem_exec_schedule with the Implicit-read/write-fence subtests.
Can we go ahead with the change/patch(gem_write_read_ring_switch)
-Sravan Kumar Nedunoori
-----Original Message-----
From: Chris Wilson <chris@chris-wilson.co.uk>
Sent: Friday, February 14, 2020 4:35 AM
To: igt-dev@lists.freedesktop.org; Nedunoori, Sravan Kumar <sravan.kumar.nedunoori@intel.com>
Subject: Re: [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test
Quoting Sravan Kumar Nedunoori (2020-02-13 04:50:04)
> Removal of this test, as it checks read/write syncpoints when
> switching rings and doesn't add anything to other tests.
write/read sync. Ah, I was thinking about read/read and the only thing that came to mind as proving that would be the gem_busy/extended
Ok, this is covered by the gem_exec_whisper brute, but do we have a simple and clear test to show that writes are blocked by a reader?
for_each_physical_engine(writer)
dep = gem_create(4096);
for_each_physical_engine(reader) {
if (reader == write)
continue;
/* XXX with a few tweaks write a secret breadcrumb */
igt_spin_new(reader, .read = dep);
}
breadcrumb(write, dep); /* implicit fence -> queued after readers */
gem_quiescent_gpu(); /* cancels all spinners */
igt_assert_eq(breadcrumb == writers);
}
/* This can be reversed to test write->reader implicit fences */
that feels very, very much like a test we have somewhere. But I couldn't put my finger on which one.
Given that outline, could we whip up a new pair of tests (implicit-read-fence, implicit-write-fence) for gem_exec_schedule?
-Chris
_______________________________________________
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: success for tests/i915/gem_write_read_ring_switch Removal of IGT Test
2020-02-13 4:50 [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test Sravan Kumar Nedunoori
2020-02-13 5:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-02-13 23:04 ` [igt-dev] [PATCH][PATCH i-g-t] " Chris Wilson
@ 2020-02-16 20:32 ` Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2020-02-16 20:32 UTC (permalink / raw)
To: Nedunoori, Sravan Kumar; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_write_read_ring_switch Removal of IGT Test
URL : https://patchwork.freedesktop.org/series/73391/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7926_full -> IGTPW_4142_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/index.html
Known issues
------------
Here are the changes found in IGTPW_4142_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_parallel@vcs1-fds:
- shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#112080]) +11 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb6/igt@gem_exec_parallel@vcs1-fds.html
* igt@gem_exec_schedule@in-order-bsd:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#112146]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb3/igt@gem_exec_schedule@in-order-bsd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb2/igt@gem_exec_schedule@in-order-bsd.html
* igt@gem_exec_schedule@pi-common-bsd:
- shard-iclb: [PASS][5] -> [SKIP][6] ([i915#677]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb7/igt@gem_exec_schedule@pi-common-bsd.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html
* igt@gem_exec_schedule@preempt-contexts-bsd2:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +12 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb1/igt@gem_exec_schedule@preempt-contexts-bsd2.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb3/igt@gem_exec_schedule@preempt-contexts-bsd2.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-hsw: [PASS][9] -> [FAIL][10] ([i915#694])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][11] -> [FAIL][12] ([i915#644])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-glk2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-tglb: [PASS][13] -> [FAIL][14] ([i915#1172])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb5/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen:
- shard-tglb: [PASS][15] -> [FAIL][16] ([fdo#111703])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled:
- shard-tglb: [PASS][17] -> [DMESG-FAIL][18] ([i915#402]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb3/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb5/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled:
- shard-snb: [PASS][19] -> [DMESG-WARN][20] ([i915#478])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-snb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-untiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled:
- shard-tglb: [PASS][21] -> [FAIL][22] ([i915#559])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled.html
* igt@kms_mmap_write_crc@main:
- shard-tglb: [PASS][23] -> [FAIL][24] ([i915#1180])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb8/igt@kms_mmap_write_crc@main.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb8/igt@kms_mmap_write_crc@main.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
- shard-apl: [PASS][27] -> [DMESG-WARN][28] ([i915#180]) +5 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-glk: [PASS][29] -> [FAIL][30] ([i915#899])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-glk3/igt@kms_plane_lowres@pipe-a-tiling-y.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-glk7/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109642] / [fdo#111068])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb4/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_cursor_plane_move:
- shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb8/igt@kms_psr@psr2_cursor_plane_move.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-tglb: [PASS][35] -> [FAIL][36] ([i915#65])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb8/igt@kms_rotation_crc@sprite-rotation-270.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb6/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@perf_pmu@cpu-hotplug:
- shard-hsw: [PASS][37] -> [INCOMPLETE][38] ([i915#1176] / [i915#61])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw7/igt@perf_pmu@cpu-hotplug.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw5/igt@perf_pmu@cpu-hotplug.html
* igt@prime_busy@wait-hang-vebox:
- shard-hsw: [PASS][39] -> [INCOMPLETE][40] ([i915#61])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw1/igt@prime_busy@wait-hang-vebox.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw5/igt@prime_busy@wait-hang-vebox.html
* igt@prime_vgem@sync-bsd:
- shard-apl: [PASS][41] -> [INCOMPLETE][42] ([fdo#103927] / [i915#409])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-apl3/igt@prime_vgem@sync-bsd.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-apl1/igt@prime_vgem@sync-bsd.html
#### Possible fixes ####
* igt@gem_caching@reads:
- shard-hsw: [FAIL][43] ([i915#694]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw6/igt@gem_caching@reads.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw1/igt@gem_caching@reads.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][45] ([fdo#110854]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb3/igt@gem_exec_balancer@smoke.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb2/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [SKIP][47] ([fdo#112146]) -> [PASS][48] +5 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-kbl: [FAIL][49] ([i915#644]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-kbl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-kbl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@sync-unmap:
- shard-snb: [DMESG-WARN][51] ([fdo#111870] / [i915#478]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-snb5/igt@gem_userptr_blits@sync-unmap.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-snb6/igt@gem_userptr_blits@sync-unmap.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [FAIL][53] ([i915#454]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
* igt@i915_suspend@forcewake:
- shard-kbl: [INCOMPLETE][55] ([fdo#103665] / [fdo#112219]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-kbl4/igt@i915_suspend@forcewake.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-kbl7/igt@i915_suspend@forcewake.html
* igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding:
- shard-tglb: [FAIL][57] ([fdo#111703]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][59] ([i915#180]) -> [PASS][60] +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_cursor_edge_walk@pipe-a-128x128-left-edge:
- shard-tglb: [FAIL][61] ([i915#70]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb1/igt@kms_cursor_edge_walk@pipe-a-128x128-left-edge.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb5/igt@kms_cursor_edge_walk@pipe-a-128x128-left-edge.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
- shard-tglb: [DMESG-FAIL][63] ([i915#402]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb3/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-blt-untiled:
- shard-tglb: [FAIL][65] ([i915#559]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb2101010-blt-untiled.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-untiled.html
* igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-ytiled:
- shard-glk: [FAIL][67] ([i915#52] / [i915#54]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-glk7/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-ytiled.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-glk2/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-ytiled.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-apl: [FAIL][69] ([i915#49]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
- shard-kbl: [FAIL][71] ([i915#49]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-apl: [DMESG-WARN][73] ([i915#180]) -> [PASS][74] +3 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_plane_cursor@pipe-a-overlay-size-256:
- shard-tglb: [FAIL][75] ([i915#1139]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-tglb7/igt@kms_plane_cursor@pipe-a-overlay-size-256.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-tglb1/igt@kms_plane_cursor@pipe-a-overlay-size-256.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-iclb: [SKIP][77] ([fdo#109441]) -> [PASS][78] +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@perf_pmu@busy-no-semaphores-vcs1:
- shard-iclb: [SKIP][79] ([fdo#112080]) -> [PASS][80] +13 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [SKIP][81] ([fdo#109276]) -> [PASS][82] +25 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb7/igt@prime_busy@hang-bsd2.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb4/igt@prime_busy@hang-bsd2.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [SKIP][83] ([fdo#112080]) -> [FAIL][84] ([IGT#28])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_tiled_blits@interruptible:
- shard-hsw: [FAIL][85] ([i915#818]) -> [FAIL][86] ([i915#694])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw2/igt@gem_tiled_blits@interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw5/igt@gem_tiled_blits@interruptible.html
* igt@runner@aborted:
- shard-hsw: [FAIL][87] ([i915#974]) -> ([FAIL][88], [FAIL][89]) ([i915#1176] / [i915#974])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7926/shard-hsw2/igt@runner@aborted.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw6/igt@runner@aborted.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/shard-hsw5/igt@runner@aborted.html
[IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[fdo#112219]: https://bugs.freedesktop.org/show_bug.cgi?id=112219
[i915#1139]: https://gitlab.freedesktop.org/drm/intel/issues/1139
[i915#1172]: https://gitlab.freedesktop.org/drm/intel/issues/1172
[i915#1176]: https://gitlab.freedesktop.org/drm/intel/issues/1176
[i915#1180]: https://gitlab.freedesktop.org/drm/intel/issues/1180
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#409]: https://gitlab.freedesktop.org/drm/intel/issues/409
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#559]: https://gitlab.freedesktop.org/drm/intel/issues/559
[i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#65]: https://gitlab.freedesktop.org/drm/intel/issues/65
[i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
[i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
[i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70
[i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
[i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
[i915#974]: https://gitlab.freedesktop.org/drm/intel/issues/974
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5437 -> IGTPW_4142
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7926: 6b2fe829d300abf285e9db8b252ffacd216df3ed @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4142: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4142/index.html
IGT_5437: ae42fedfd0c536c560e8e17b06d9c7b94a4e8f0c @ 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_4142/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:[~2020-02-16 20:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-13 4:50 [igt-dev] [PATCH][PATCH i-g-t] tests/i915/gem_write_read_ring_switch Removal of IGT Test Sravan Kumar Nedunoori
2020-02-13 5:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-02-13 23:04 ` [igt-dev] [PATCH][PATCH i-g-t] " Chris Wilson
2020-02-14 13:26 ` Nedunoori, Sravan Kumar
2020-02-14 13:39 ` Chris Wilson
2020-02-16 20:32 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox