* [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr)
@ 2019-08-14 22:25 Chris Wilson
2019-08-14 22:37 ` Chris Wilson
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Chris Wilson @ 2019-08-14 22:25 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
Establish a userptr and inherit it to many children with fresh mm. Into
each child mm, mmap_gtt the userptr handle so that they are many
different vma in the i_mapping tree pointing back to the userptr. Then
proceed to munmap that and force us to revoke all the mmaps.
Daniel discovered that from the unmap in the parent, we will call
i915_vma_revoke_mmaps() on all the child mappings, which in turn should
call mmu_notifier_invalidate_range -- ostensibly recursing from the
outer mmu_notifier_invalidate_range of the munamp.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
---
tests/i915/gem_userptr_blits.c | 79 ++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index 5f7770c93..ee2bdc890 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -1613,6 +1613,82 @@ static void test_unmap(int fd, int expected)
gem_close(fd, bo[i]);
}
+static int count_sigbus(void *ptr, size_t len)
+{
+ struct sigaction sigact, orig_sigact;
+
+ memset(&sigact, 0, sizeof(sigact));
+ sigact.sa_sigaction = sigbus;
+ sigact.sa_flags = SA_SIGINFO;
+ igt_assert(sigaction(SIGBUS, &sigact, &orig_sigact) == 0);
+
+ sigbus_start = (unsigned long)ptr;
+ sigbus_cnt = 0;
+ memset(ptr, 0, len);
+
+ sigaction(SIGBUS, &orig_sigact, NULL);
+ return sigbus_cnt;
+}
+
+static void test_unmap_shared(int i915)
+{
+ const int num_child = 64;
+ struct {
+ void *base;
+ uint32_t *gtt;
+ uint32_t bo;
+ } t[2];
+
+ igt_require(gem_has_llc(i915));
+
+ for (int i = 0; i < ARRAY_SIZE(t); i++) {
+ t[i].base = mmap(NULL, sizeof(linear), PROT_READ | PROT_WRITE,
+ MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
+ igt_assert(t[i].base != MAP_FAILED);
+ igt_require(__gem_userptr(i915, t[i].base, sizeof(linear),
+ 0, userptr_flags, &t[i].bo) == 0);
+
+ t[i].gtt = gem_mmap__gtt(i915, t[i].bo,
+ sizeof(linear), PROT_WRITE);
+ *t[i].gtt = i;
+ }
+
+ igt_fork(child, num_child) {
+ uint32_t *ptr;
+
+ ptr = gem_mmap__gtt(i915, t[0].bo, sizeof(linear), PROT_WRITE);
+ ptr[child] = 1;
+
+ ptr = gem_mmap__gtt(i915, t[1].bo, sizeof(linear), PROT_WRITE);
+ while (READ_ONCE(*ptr) == 1)
+ usleep(10 * 1000);
+
+ ptr = gem_mmap__gtt(i915, t[0].bo, sizeof(linear), PROT_WRITE);
+ igt_assert(count_sigbus(ptr, 1) > 0);
+ }
+
+ /* busy wait for all children to instantiate their mmap */
+ for (int child = 0; child < num_child; child++) {
+ while (READ_ONCE(t[0].gtt[child]) == 0)
+ ;
+ }
+
+ /* shoot it down! */
+ munmap(t[0].base, sizeof(linear));
+
+ /* check our aim was true */
+ igt_assert(count_sigbus(t[0].gtt, 1) > 0);
+
+ *t[1].gtt = 0;
+ igt_waitchildren();
+
+ for (int i = 0; i < ARRAY_SIZE(t); i++) {
+ gem_close(i915, t[i].bo);
+ munmap(t[i].gtt, sizeof(linear));
+ munmap(t[i].base, sizeof(linear));
+ }
+}
+
static void test_unmap_after_close(int fd)
{
char *ptr, *bo_ptr;
@@ -2006,6 +2082,9 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
igt_subtest("sync-unmap-after-close")
test_unmap_after_close(fd);
+ igt_subtest("sync-unmap-shared")
+ test_unmap_shared(fd);
+
igt_subtest("stress-mm")
test_stress_mm(fd);
igt_subtest("stress-purge")
--
2.23.0.rc1
_______________________________________________
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] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson @ 2019-08-14 22:37 ` Chris Wilson 2019-08-14 23:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Chris Wilson @ 2019-08-14 22:37 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev Establish a userptr and inherit it to many children with fresh mm. Into each child mm, mmap_gtt the userptr handle so that they are many different vma in the i_mapping tree pointing back to the userptr. Then proceed to munmap that and force us to revoke all the mmaps. Daniel discovered that from the unmap in the parent, we will call i915_vma_revoke_mmaps() on all the child mappings, which in turn should call mmu_notifier_invalidate_range -- ostensibly recursing from the outer mmu_notifier_invalidate_range of the munamp. v2: Invoke userptr in each child for more mmu-notifiers Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> --- tests/i915/gem_userptr_blits.c | 86 ++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c index 5f7770c93..f08616146 100644 --- a/tests/i915/gem_userptr_blits.c +++ b/tests/i915/gem_userptr_blits.c @@ -1613,6 +1613,89 @@ static void test_unmap(int fd, int expected) gem_close(fd, bo[i]); } +static int count_sigbus(void *ptr, size_t len) +{ + struct sigaction sigact, orig_sigact; + + memset(&sigact, 0, sizeof(sigact)); + sigact.sa_sigaction = sigbus; + sigact.sa_flags = SA_SIGINFO; + igt_assert(sigaction(SIGBUS, &sigact, &orig_sigact) == 0); + + sigbus_start = (unsigned long)ptr; + sigbus_cnt = 0; + memset(ptr, 0, len); + + sigaction(SIGBUS, &orig_sigact, NULL); + return sigbus_cnt; +} + +static void test_unmap_shared(int i915) +{ + const int num_child = 64; + struct { + void *base; + uint32_t *gtt; + uint32_t bo; + } t[2]; + + igt_require(gem_has_llc(i915)); + + for (int i = 0; i < ARRAY_SIZE(t); i++) { + t[i].base = mmap(NULL, sizeof(linear), PROT_READ | PROT_WRITE, + MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); + igt_assert(t[i].base != MAP_FAILED); + igt_require(__gem_userptr(i915, t[i].base, sizeof(linear), + 0, userptr_flags, &t[i].bo) == 0); + + t[i].gtt = gem_mmap__gtt(i915, t[i].bo, + sizeof(linear), PROT_WRITE); + *t[i].gtt = i; + } + + igt_fork(child, num_child) { + uint32_t *ptr; + + /* First attach our own user pointer to prep the mmu notifier */ + ptr = mmap(NULL, sizeof(linear), PROT_READ | PROT_WRITE, + MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); + igt_assert(ptr != MAP_FAILED); + igt_require(__gem_userptr(i915, ptr, sizeof(linear), + 0, userptr_flags, ptr) == 0); + + ptr = gem_mmap__gtt(i915, t[0].bo, sizeof(linear), PROT_WRITE); + ptr[child] = 1; + + ptr = gem_mmap__gtt(i915, t[1].bo, sizeof(linear), PROT_WRITE); + while (READ_ONCE(*ptr) == 1) + usleep(10 * 1000); + + ptr = gem_mmap__gtt(i915, t[0].bo, sizeof(linear), PROT_WRITE); + igt_assert(count_sigbus(ptr, 1) > 0); + } + + /* busy wait for all children to instantiate their mmap */ + for (int child = 0; child < num_child; child++) { + while (READ_ONCE(t[0].gtt[child]) == 0) + ; + } + + /* shoot it down! */ + munmap(t[0].base, sizeof(linear)); + + /* check our aim was true */ + igt_assert(count_sigbus(t[0].gtt, 1) > 0); + + *t[1].gtt = 0; + igt_waitchildren(); + + for (int i = 0; i < ARRAY_SIZE(t); i++) { + gem_close(i915, t[i].bo); + munmap(t[i].gtt, sizeof(linear)); + munmap(t[i].base, sizeof(linear)); + } +} + static void test_unmap_after_close(int fd) { char *ptr, *bo_ptr; @@ -2006,6 +2089,9 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL) igt_subtest("sync-unmap-after-close") test_unmap_after_close(fd); + igt_subtest("sync-unmap-shared") + test_unmap_shared(fd); + igt_subtest("stress-mm") test_stress_mm(fd); igt_subtest("stress-purge") -- 2.23.0.rc1 _______________________________________________ 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 i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson 2019-08-14 22:37 ` Chris Wilson @ 2019-08-14 23:30 ` Patchwork 2019-08-14 23:33 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-08-14 23:30 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) URL : https://patchwork.freedesktop.org/series/65213/ State : success == Summary == CI Bug Log - changes from CI_DRM_6710 -> IGTPW_3351 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65213/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3351 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_busy@basic-flip-c: - fi-skl-6770hq: [PASS][1] -> [SKIP][2] ([fdo#109271] / [fdo#109278]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-skl-6770hq/igt@kms_busy@basic-flip-c.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/fi-skl-6770hq/igt@kms_busy@basic-flip-c.html * igt@kms_flip@basic-flip-vs-dpms: - fi-skl-6770hq: [PASS][3] -> [SKIP][4] ([fdo#109271]) +23 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html #### Possible fixes #### * igt@i915_selftest@live_mman: - fi-bsw-n3050: [DMESG-WARN][5] ([fdo#111373]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-bsw-n3050/igt@i915_selftest@live_mman.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/fi-bsw-n3050/igt@i915_selftest@live_mman.html #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-icl-u2: [DMESG-WARN][7] ([fdo#102505] / [fdo#110390]) -> [FAIL][8] ([fdo#109483]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/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#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [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#111373]: https://bugs.freedesktop.org/show_bug.cgi?id=111373 Participating hosts (53 -> 46) ------------------------------ Additional (1): fi-kbl-8809g 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_5134 -> IGTPW_3351 CI-20190529: 20190529 CI_DRM_6710: 131c6ccdf21739498689f22c973b1b77660ae7b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3351: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/ IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_userptr_blits@sync-unmap-shared == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/ _______________________________________________ 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.BAT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson 2019-08-14 22:37 ` Chris Wilson 2019-08-14 23:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-14 23:33 ` Patchwork 2019-08-15 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Patchwork 2019-08-15 16:23 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-08-14 23:33 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) URL : https://patchwork.freedesktop.org/series/65213/ State : success == Summary == CI Bug Log - changes from CI_DRM_6710 -> IGTPW_3352 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65213/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_3352 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_param@basic-default: - fi-bxt-dsi: [PASS][1] -> [INCOMPLETE][2] ([fdo#103927]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-bxt-dsi/igt@gem_ctx_param@basic-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/fi-bxt-dsi/igt@gem_ctx_param@basic-default.html * igt@i915_selftest@live_reset: - fi-icl-u3: [PASS][3] -> [INCOMPLETE][4] ([fdo#107713]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-icl-u3/igt@i915_selftest@live_reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/fi-icl-u3/igt@i915_selftest@live_reset.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][5] -> [FAIL][6] ([fdo#109483]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/fi-icl-u2/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#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 Participating hosts (53 -> 45) ------------------------------ Additional (1): fi-kbl-8809g Missing (9): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-bsw-n3050 fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5134 -> IGTPW_3352 CI-20190529: 20190529 CI_DRM_6710: 131c6ccdf21739498689f22c973b1b77660ae7b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3352: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/ IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_userptr_blits@sync-unmap-shared == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/ _______________________________________________ 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 i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson ` (2 preceding siblings ...) 2019-08-14 23:33 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork @ 2019-08-15 15:46 ` Patchwork 2019-08-15 16:23 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-08-15 15:46 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) URL : https://patchwork.freedesktop.org/series/65213/ State : success == Summary == CI Bug Log - changes from CI_DRM_6710_full -> IGTPW_3351_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65213/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3351_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_userptr_blits@sync-unmap-shared} (NEW): - shard-kbl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-kbl7/igt@gem_userptr_blits@sync-unmap-shared.html - shard-snb: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-snb1/igt@gem_userptr_blits@sync-unmap-shared.html - shard-hsw: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-hsw6/igt@gem_userptr_blits@sync-unmap-shared.html - shard-iclb: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb5/igt@gem_userptr_blits@sync-unmap-shared.html New tests --------- New tests have been introduced between CI_DRM_6710_full and IGTPW_3351_full: ### New IGT tests (1) ### * igt@gem_userptr_blits@sync-unmap-shared: - Statuses : 4 fail(s) 2 skip(s) - Exec time: [0.0, 32.61] s Known issues ------------ Here are the changes found in IGTPW_3351_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@bcs0-s3: - shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl6/igt@gem_ctx_isolation@bcs0-s3.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb2/igt@gem_exec_balancer@smoke.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb7/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preempt-bsd1: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276]) +16 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb1/igt@gem_exec_schedule@preempt-bsd1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb6/igt@gem_exec_schedule@preempt-bsd1.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#111325]) +5 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_wait@await-rcs0: - shard-snb: [PASS][13] -> [INCOMPLETE][14] ([fdo#105411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-snb6/igt@gem_wait@await-rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-snb1/igt@gem_wait@await-rcs0.html * igt@kms_color@pipe-b-ctm-blue-to-red: - shard-apl: [PASS][15] -> [FAIL][16] ([fdo#107201]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl8/igt@kms_color@pipe-b-ctm-blue-to-red.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-apl4/igt@kms_color@pipe-b-ctm-blue-to-red.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: - shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +4 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb7/igt@kms_psr@psr2_cursor_plane_onoff.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-snb: [FAIL][21] ([fdo#109661]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-snb2/igt@gem_eio@reset-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-snb4/igt@gem_eio@reset-stress.html * igt@gem_exec_schedule@independent-bsd1: - shard-iclb: [SKIP][23] ([fdo#109276]) -> [PASS][24] +13 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb8/igt@gem_exec_schedule@independent-bsd1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb2/igt@gem_exec_schedule@independent-bsd1.html * igt@gem_exec_schedule@promotion-bsd: - shard-iclb: [SKIP][25] ([fdo#111325]) -> [PASS][26] +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb1/igt@gem_exec_schedule@promotion-bsd.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb6/igt@gem_exec_schedule@promotion-bsd.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: [DMESG-WARN][27] ([fdo#108686]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-glk5/igt@gem_tiled_swapping@non-threaded.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-glk3/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][29] ([fdo#108566]) -> [PASS][30] +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl5/igt@gem_workarounds@suspend-resume-context.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-apl4/igt@gem_workarounds@suspend-resume-context.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-iclb: [FAIL][31] ([fdo#103167]) -> [PASS][32] +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][33] ([fdo#109271]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-snb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-iclb: [INCOMPLETE][35] ([fdo#107713] / [fdo#110036 ]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb7/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb1/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-iclb: [INCOMPLETE][37] ([fdo#107713] / [fdo#110042]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][39] ([fdo#109441]) -> [PASS][40] +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [FAIL][41] ([fdo#99912]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl7/igt@kms_setmode@basic.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-apl5/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [FAIL][43] ([fdo#111330]) -> [SKIP][44] ([fdo#109276]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/shard-iclb3/igt@gem_mocs_settings@mocs-isolation-bsd2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#107201]: https://bugs.freedesktop.org/show_bug.cgi?id=107201 [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#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661 [fdo#110036 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110036 [fdo#110042]: https://bugs.freedesktop.org/show_bug.cgi?id=110042 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 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_5134 -> IGTPW_3351 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6710: 131c6ccdf21739498689f22c973b1b77660ae7b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3351: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3351/ IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ 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_3351/ _______________________________________________ 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 i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson ` (3 preceding siblings ...) 2019-08-15 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Patchwork @ 2019-08-15 16:23 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-08-15 16:23 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) URL : https://patchwork.freedesktop.org/series/65213/ State : success == Summary == CI Bug Log - changes from CI_DRM_6710_full -> IGTPW_3352_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65213/revisions/2/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3352_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_userptr_blits@sync-unmap-shared} (NEW): - shard-kbl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-kbl2/igt@gem_userptr_blits@sync-unmap-shared.html - shard-snb: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-snb2/igt@gem_userptr_blits@sync-unmap-shared.html - shard-hsw: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-hsw4/igt@gem_userptr_blits@sync-unmap-shared.html - shard-iclb: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb6/igt@gem_userptr_blits@sync-unmap-shared.html New tests --------- New tests have been introduced between CI_DRM_6710_full and IGTPW_3352_full: ### New IGT tests (1) ### * igt@gem_userptr_blits@sync-unmap-shared: - Statuses : 4 fail(s) 2 skip(s) - Exec time: [0.0, 32.49] s Known issues ------------ Here are the changes found in IGTPW_3352_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#110841]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb3/igt@gem_ctx_shared@exec-single-timeline-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +14 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#111325]) +4 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [PASS][11] -> [FAIL][12] ([fdo#105363]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-glk3/igt@kms_flip@flip-vs-expired-vblank.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-glk9/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][13] -> [INCOMPLETE][14] ([fdo#103540]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-hsw2/igt@kms_flip@flip-vs-suspend.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-hsw2/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#103167]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-stridechange.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([fdo#108566]) +5 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103166]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][21] -> [SKIP][22] ([fdo#109441]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-snb: [FAIL][23] ([fdo#109661]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-snb2/igt@gem_eio@reset-stress.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-snb2/igt@gem_eio@reset-stress.html * igt@gem_exec_schedule@independent-bsd: - shard-iclb: [SKIP][25] ([fdo#111325]) -> [PASS][26] +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb4/igt@gem_exec_schedule@independent-bsd.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb3/igt@gem_exec_schedule@independent-bsd.html * igt@gem_exec_schedule@preempt-queue-chain-bsd2: - shard-iclb: [SKIP][27] ([fdo#109276]) -> [PASS][28] +10 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb5/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb2/igt@gem_exec_schedule@preempt-queue-chain-bsd2.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: [DMESG-WARN][29] ([fdo#108686]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-glk5/igt@gem_tiled_swapping@non-threaded.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-glk8/igt@gem_tiled_swapping@non-threaded.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-apl: [DMESG-WARN][31] ([fdo#108566]) -> [PASS][32] +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl5/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-iclb: [FAIL][33] ([fdo#103167]) -> [PASS][34] +5 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][35] ([fdo#109271]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-iclb: [INCOMPLETE][37] ([fdo#107713] / [fdo#110036 ]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb7/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb2/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-iclb: [INCOMPLETE][39] ([fdo#107713] / [fdo#110042]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][41] ([fdo#109441]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb3/igt@kms_psr@psr2_basic.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb2/igt@kms_psr@psr2_basic.html * igt@kms_setmode@basic: - shard-apl: [FAIL][43] ([fdo#99912]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-apl7/igt@kms_setmode@basic.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-apl7/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [SKIP][45] ([fdo#109276]) -> [FAIL][46] ([fdo#111330]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6710/shard-iclb6/igt@gem_mocs_settings@mocs-reset-bsd2.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/shard-iclb4/igt@gem_mocs_settings@mocs-reset-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#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [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#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661 [fdo#110036 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110036 [fdo#110042]: https://bugs.freedesktop.org/show_bug.cgi?id=110042 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 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_5134 -> IGTPW_3352 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6710: 131c6ccdf21739498689f22c973b1b77660ae7b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3352: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3352/ IGT_5134: 81df2f22385bc275975cf199d962eed9bc10f916 @ 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_3352/ _______________________________________________ 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-08-15 16:23 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-14 22:25 [igt-dev] [PATCH i-g-t] i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Chris Wilson 2019-08-14 22:37 ` Chris Wilson 2019-08-14 23:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-14 23:33 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork 2019-08-15 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) Patchwork 2019-08-15 16:23 ` [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_userptr_blit: Shoot down a shared mmap_gtt(userptr) (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox