* [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer
@ 2019-08-21 20:03 Chris Wilson
2019-08-21 21:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2019-08-21 20:03 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev, Matthew Auld
The test assumes that the dmabuf for the batch buffer has no exclusive
fence. This is only true for the batch as it executes on the GPU; prior
to that we may be in the process of moving it into memory and the
ppGTT which cause the batch to carry an exclusive fence. Keep the test
simple and prebind the batch buffer so that when we poll the dmabuf fd,
we only expect it to be the spinning batch.
Alternatively we could wait until we start writing values into scratch
(i.e. igt_spin_busywait_until_started()). This seemed simpler.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.auld@intel.com>
---
tests/prime_busy.c | 38 ++++++++++++++++++++++++--------------
1 file changed, 24 insertions(+), 14 deletions(-)
diff --git a/tests/prime_busy.c b/tests/prime_busy.c
index a82acbdbc..4f237f68f 100644
--- a/tests/prime_busy.c
+++ b/tests/prime_busy.c
@@ -41,6 +41,7 @@ static bool prime_busy(struct pollfd *pfd, bool excl)
static void busy(int fd, unsigned ring, unsigned flags)
{
const int gen = intel_gen(intel_get_drm_devid(fd));
+ const uint32_t _bbe = MI_BATCH_BUFFER_END;
struct drm_i915_gem_exec_object2 obj[2];
struct pollfd pfd[2];
#define SCRATCH 0
@@ -55,7 +56,7 @@ static void busy(int fd, unsigned ring, unsigned flags)
gem_quiescent_gpu(fd);
memset(&execbuf, 0, sizeof(execbuf));
- execbuf.buffers_ptr = (uintptr_t)obj;
+ execbuf.buffers_ptr = to_user_pointer(obj);
execbuf.buffer_count = 2;
execbuf.flags = ring;
if (gen < 6)
@@ -65,7 +66,11 @@ static void busy(int fd, unsigned ring, unsigned flags)
obj[SCRATCH].handle = gem_create(fd, 4096);
obj[BATCH].handle = gem_create(fd, size);
- obj[BATCH].relocs_ptr = (uintptr_t)store;
+ obj[BATCH].offset = 1 << 20;
+ gem_write(fd, obj[BATCH].handle, 0, &_bbe, sizeof(_bbe));
+ igt_require(__gem_execbuf(fd, &execbuf) == 0); /* prebind the buffers */
+
+ obj[BATCH].relocs_ptr = to_user_pointer(store);
obj[BATCH].relocation_count = ARRAY_SIZE(store);
memset(store, 0, sizeof(store));
@@ -81,23 +86,28 @@ static void busy(int fd, unsigned ring, unsigned flags)
i = 0;
for (count = 0; count < 1024; count++) {
+ uint64_t offset;
+
store[count].target_handle = obj[SCRATCH].handle;
- store[count].presumed_offset = -1;
+ store[count].presumed_offset = obj[SCRATCH].offset;
store[count].offset = sizeof(uint32_t) * (i + 1);
store[count].delta = sizeof(uint32_t) * count;
- store[count].read_domains = I915_GEM_DOMAIN_INSTRUCTION;
- store[count].write_domain = I915_GEM_DOMAIN_INSTRUCTION;
+ store[count].read_domains = I915_GEM_DOMAIN_RENDER;
+ store[count].write_domain = I915_GEM_DOMAIN_RENDER;
+
+ offset = store[count].presumed_offset + store[count].delta;
+
batch[i] = MI_STORE_DWORD_IMM | (gen < 6 ? 1 << 22 : 0);
if (gen >= 8) {
- batch[++i] = 0;
- batch[++i] = 0;
+ batch[++i] = offset;
+ batch[++i] = offset >> 32;
} else if (gen >= 4) {
batch[++i] = 0;
- batch[++i] = 0;
+ batch[++i] = offset;
store[count].offset += sizeof(uint32_t);
} else {
batch[i]--;
- batch[++i] = 0;
+ batch[++i] = offset;
}
batch[++i] = count;
i++;
@@ -105,7 +115,7 @@ static void busy(int fd, unsigned ring, unsigned flags)
bbe = &batch[i];
store[count].target_handle = obj[BATCH].handle; /* recurse */
- store[count].presumed_offset = 0;
+ store[count].presumed_offset = obj[BATCH].offset;
store[count].offset = sizeof(uint32_t) * (i + 1);
store[count].delta = 0;
store[count].read_domains = I915_GEM_DOMAIN_COMMAND;
@@ -113,14 +123,14 @@ static void busy(int fd, unsigned ring, unsigned flags)
batch[i] = MI_BATCH_BUFFER_START;
if (gen >= 8) {
batch[i] |= 1 << 8 | 1;
- batch[++i] = 0;
- batch[++i] = 0;
+ batch[++i] = obj[BATCH].offset;
+ batch[++i] = obj[BATCH].offset >> 32;
} else if (gen >= 6) {
batch[i] |= 1 << 8;
- batch[++i] = 0;
+ batch[++i] = obj[BATCH].offset;
} else {
batch[i] |= 2 << 6;
- batch[++i] = 0;
+ batch[++i] = obj[BATCH].offset;
if (gen < 4) {
batch[i] |= 1;
store[count].delta = 1;
--
2.23.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for prime_busy: Prebind the batch buffer 2019-08-21 20:03 [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer Chris Wilson @ 2019-08-21 21:01 ` Patchwork 2019-08-22 9:54 ` [igt-dev] [PATCH i-g-t] " Matthew Auld 2019-08-22 10:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-08-21 21:01 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: prime_busy: Prebind the batch buffer URL : https://patchwork.freedesktop.org/series/65568/ State : success == Summary == CI Bug Log - changes from CI_DRM_6758 -> IGTPW_3371 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65568/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3371 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_param@basic-default: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/fi-icl-u3/igt@gem_ctx_param@basic-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/fi-icl-u3/igt@gem_ctx_param@basic-default.html * igt@i915_selftest@live_execlists: - fi-skl-gvtdvm: [PASS][3] -> [DMESG-FAIL][4] ([fdo#111108]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html * igt@prime_vgem@basic-fence-flip: - fi-ilk-650: [PASS][5] -> [DMESG-WARN][6] ([fdo#106387]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/fi-ilk-650/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-blb-e6850: [INCOMPLETE][7] ([fdo#107718]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-icl-u2: [DMESG-WARN][9] ([fdo#102505] / [fdo#110390]) -> [FAIL][10] ([fdo#109483]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505 [fdo#106387]: https://bugs.freedesktop.org/show_bug.cgi?id=106387 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#110390]: https://bugs.freedesktop.org/show_bug.cgi?id=110390 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111108]: https://bugs.freedesktop.org/show_bug.cgi?id=111108 Participating hosts (55 -> 48) ------------------------------ Additional (1): fi-pnv-d510 Missing (8): fi-kbl-soraka 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_5146 -> IGTPW_3371 CI-20190529: 20190529 CI_DRM_6758: 8616440ca224c1fa1775b6b2d21bad7ddf66442a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3371: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/ IGT_5146: 357dbe1869d88a2f08bcee4eebceff4ee9014424 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer 2019-08-21 20:03 [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer Chris Wilson 2019-08-21 21:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-22 9:54 ` Matthew Auld 2019-08-22 10:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Matthew Auld @ 2019-08-22 9:54 UTC (permalink / raw) To: Chris Wilson, intel-gfx; +Cc: igt-dev On 21/08/2019 21:03, Chris Wilson wrote: > The test assumes that the dmabuf for the batch buffer has no exclusive > fence. This is only true for the batch as it executes on the GPU; prior > to that we may be in the process of moving it into memory and the > ppGTT which cause the batch to carry an exclusive fence. Keep the test > simple and prebind the batch buffer so that when we poll the dmabuf fd, > we only expect it to be the spinning batch. > > Alternatively we could wait until we start writing values into scratch > (i.e. igt_spin_busywait_until_started()). This seemed simpler. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Matthew Auld <matthew.auld@intel.com> Acked-by: Matthew Auld <matthew.auld@intel.com> _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for prime_busy: Prebind the batch buffer 2019-08-21 20:03 [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer Chris Wilson 2019-08-21 21:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-22 9:54 ` [igt-dev] [PATCH i-g-t] " Matthew Auld @ 2019-08-22 10:54 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-08-22 10:54 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: prime_busy: Prebind the batch buffer URL : https://patchwork.freedesktop.org/series/65568/ State : success == Summary == CI Bug Log - changes from CI_DRM_6758_full -> IGTPW_3371_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65568/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3371_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@vecs0-s3: - shard-glk: [PASS][1] -> [INCOMPLETE][2] ([fdo#103359] / [k.org#198133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-glk2/igt@gem_ctx_isolation@vecs0-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-glk6/igt@gem_ctx_isolation@vecs0-s3.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb1/igt@gem_exec_balancer@smoke.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb5/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@deep-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb3/igt@gem_exec_schedule@deep-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb2/igt@gem_exec_schedule@deep-bsd.html * igt@gem_exec_schedule@independent-bsd1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +16 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@gem_exec_schedule@independent-bsd1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb5/igt@gem_exec_schedule@independent-bsd1.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: [PASS][9] -> [DMESG-WARN][10] ([fdo#108686]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-glk3/igt@gem_tiled_swapping@non-threaded.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-glk5/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-kbl: [PASS][11] -> [SKIP][12] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-kbl6/igt@i915_pm_rc6_residency@rc6-accuracy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-kbl7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@i2c: - shard-hsw: [PASS][13] -> [FAIL][14] ([fdo#104097]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-hsw2/igt@i915_pm_rpm@i2c.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-hsw7/igt@i915_pm_rpm@i2c.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][15] -> [DMESG-WARN][16] ([fdo#108566]) +6 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-apl1/igt@i915_suspend@debugfs-reader.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-apl4/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@pipe-b-cursor-64x64-random: - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103232]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-64x64-random.html * igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding: - shard-kbl: [PASS][19] -> [FAIL][20] ([fdo#103232]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-glk: [PASS][21] -> [FAIL][22] ([fdo#106509] / [fdo#107409]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-glk2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-glk5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][23] -> [FAIL][24] ([fdo#105363]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-iclb: [PASS][25] -> [FAIL][26] ([fdo#103167]) +6 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [PASS][27] -> [FAIL][28] ([fdo#103166]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109642] / [fdo#111068]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb1/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_setmode@basic: - shard-kbl: [PASS][33] -> [FAIL][34] ([fdo#99912]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-kbl7/igt@kms_setmode@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-kbl3/igt@kms_setmode@basic.html #### Possible fixes #### * igt@gem_exec_schedule@pi-ringfull-bsd: - shard-iclb: [SKIP][35] ([fdo#111325]) -> [PASS][36] +5 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@gem_exec_schedule@pi-ringfull-bsd.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb3/igt@gem_exec_schedule@pi-ringfull-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [SKIP][37] ([fdo#109276]) -> [PASS][38] +17 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb8/igt@gem_exec_schedule@preempt-other-bsd1.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [DMESG-WARN][39] ([fdo#108566]) -> [PASS][40] +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-apl7/igt@i915_suspend@fence-restore-untiled.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-apl7/igt@i915_suspend@fence-restore-untiled.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [FAIL][41] ([fdo#105767]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-iclb: [INCOMPLETE][43] ([fdo#107713]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb7/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb4/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-iclb: [FAIL][45] ([fdo#103167]) -> [PASS][46] +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: [FAIL][47] ([fdo#103167]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][49] ([fdo#109441]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-a-wait-forked-hang: - shard-snb: [INCOMPLETE][51] ([fdo#105411]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-snb1/igt@kms_vblank@pipe-a-wait-forked-hang.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-snb6/igt@kms_vblank@pipe-a-wait-forked-hang.html * igt@perf_pmu@rc6: - shard-kbl: [SKIP][53] ([fdo#109271]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-kbl1/igt@perf_pmu@rc6.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-kbl2/igt@perf_pmu@rc6.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][55] ([fdo#109276]) -> [FAIL][56] ([fdo#111329]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [SKIP][57] ([fdo#109276]) -> [FAIL][58] ([fdo#111330]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6758/shard-iclb8/igt@gem_mocs_settings@mocs-isolation-bsd2.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/shard-iclb1/igt@gem_mocs_settings@mocs-isolation-bsd2.html [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#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#104097]: https://bugs.freedesktop.org/show_bug.cgi?id=104097 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509 [fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [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#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#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#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5146 -> IGTPW_3371 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6758: 8616440ca224c1fa1775b6b2d21bad7ddf66442a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3371: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3371/ IGT_5146: 357dbe1869d88a2f08bcee4eebceff4ee9014424 @ 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_3371/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-08-22 10:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-21 20:03 [igt-dev] [PATCH i-g-t] prime_busy: Prebind the batch buffer Chris Wilson 2019-08-21 21:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-22 9:54 ` [igt-dev] [PATCH i-g-t] " Matthew Auld 2019-08-22 10:54 ` [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