* [igt-dev] [PATCH i-g-t 1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary
@ 2020-01-29 19:29 Antonio Argenziano
2020-01-29 19:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed Antonio Argenziano
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Antonio Argenziano @ 2020-01-29 19:29 UTC (permalink / raw)
To: igt-dev
The test loops across several mappings so, when explicitly asking for a
GTT mapping it has to make sure such mapping is available.
Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
tests/i915/gem_exec_reloc.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/i915/gem_exec_reloc.c b/tests/i915/gem_exec_reloc.c
index ef995a67..bc904a0a 100644
--- a/tests/i915/gem_exec_reloc.c
+++ b/tests/i915/gem_exec_reloc.c
@@ -110,6 +110,9 @@ static void from_mmap(int fd, uint64_t size, enum mode mode)
uint64_t max, i;
int retry = 2;
+ if ((mode & ~RO) == GTT)
+ gem_require_mappable_ggtt(fd);
+
/* Worst case is that the kernel has to copy the entire incoming
* reloc[], so double the memory requirements.
*/
@@ -387,6 +390,9 @@ static void basic_reloc(int fd, unsigned before, unsigned after, unsigned flags)
const uint32_t bbe = MI_BATCH_BUFFER_END;
unsigned int reloc_offset;
+ if ((before | after) & I915_GEM_DOMAIN_GTT)
+ gem_require_mappable_ggtt(fd);
+
memset(&obj, 0, sizeof(obj));
obj.handle = gem_create(fd, OBJSZ);
obj.relocs_ptr = to_user_pointer(&reloc);
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed 2020-01-29 19:29 [igt-dev] [PATCH i-g-t 1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Antonio Argenziano @ 2020-01-29 19:29 ` Antonio Argenziano 2020-01-29 21:13 ` Chris Wilson 2020-01-29 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Patchwork 2020-02-01 3:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Antonio Argenziano @ 2020-01-29 19:29 UTC (permalink / raw) To: igt-dev The test goes through multiple mapping so require mappable aperture when going through GTT. Also use any coherent mapping not just GTT. Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com> --- tests/i915/gem_exec_flush.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/i915/gem_exec_flush.c b/tests/i915/gem_exec_flush.c index 28708460..778bc18c 100644 --- a/tests/i915/gem_exec_flush.c +++ b/tests/i915/gem_exec_flush.c @@ -152,9 +152,10 @@ static void run(int fd, unsigned ring, int nchild, int timeout, I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); - /* Prepara a mappable binding to prevent pread mighrating */ + /* Prepare a mappable binding to prevent pread migrating */ if (!snoop) { - ptr = gem_mmap__gtt(fd, obj[0].handle, 4096, PROT_READ); + ptr = gem_mmap__device_coherent(fd, obj[0].handle, 0, + 4096, PROT_READ); igt_assert_eq_u32(ptr[0], 0xabcdabcd); munmap(ptr, 4096); } @@ -357,6 +358,9 @@ static void batch(int fd, unsigned ring, int nchild, int timeout, { const int gen = intel_gen(intel_get_drm_devid(fd)); + if (mode == BATCH_GTT) + gem_require_mappable_ggtt(fd); + if (flags & CMDPARSER) { int cmdparser = -1; drm_i915_getparam_t gp; -- 2.21.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed 2020-01-29 19:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed Antonio Argenziano @ 2020-01-29 21:13 ` Chris Wilson 0 siblings, 0 replies; 5+ messages in thread From: Chris Wilson @ 2020-01-29 21:13 UTC (permalink / raw) To: Antonio Argenziano, igt-dev Quoting Antonio Argenziano (2020-01-29 19:29:14) > The test goes through multiple mapping so require mappable aperture when > going through GTT. Also use any coherent mapping not just GTT. > > Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com> > Cc: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com> > --- > tests/i915/gem_exec_flush.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/tests/i915/gem_exec_flush.c b/tests/i915/gem_exec_flush.c > index 28708460..778bc18c 100644 > --- a/tests/i915/gem_exec_flush.c > +++ b/tests/i915/gem_exec_flush.c > @@ -152,9 +152,10 @@ static void run(int fd, unsigned ring, int nchild, int timeout, > I915_GEM_DOMAIN_WC, > I915_GEM_DOMAIN_WC); > > - /* Prepara a mappable binding to prevent pread mighrating */ > + /* Prepare a mappable binding to prevent pread migrating */ > if (!snoop) { > - ptr = gem_mmap__gtt(fd, obj[0].handle, 4096, PROT_READ); > + ptr = gem_mmap__device_coherent(fd, obj[0].handle, 0, > + 4096, PROT_READ); > igt_assert_eq_u32(ptr[0], 0xabcdabcd); > munmap(ptr, 4096); > } Yeah, this is outdated and doesn't do much for the kernel anymore. Still no harm. And who knows the weirdness may trip a bug. -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary 2020-01-29 19:29 [igt-dev] [PATCH i-g-t 1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Antonio Argenziano 2020-01-29 19:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed Antonio Argenziano @ 2020-01-29 20:39 ` Patchwork 2020-02-01 3:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-01-29 20:39 UTC (permalink / raw) To: Antonio Argenziano; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary URL : https://patchwork.freedesktop.org/series/72739/ State : success == Summary == CI Bug Log - changes from CI_DRM_7838 -> IGTPW_4033 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/index.html Known issues ------------ Here are the changes found in IGTPW_4033 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s4-devices: - fi-tgl-y: [PASS][1] -> [FAIL][2] ([CI#94]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_getparams_basic@basic-subslice-total: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([CI#94] / [i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html * igt@i915_selftest@live_blt: - fi-ivb-3770: [PASS][5] -> [DMESG-FAIL][6] ([i915#725]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-ivb-3770/igt@i915_selftest@live_blt.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-ivb-3770/igt@i915_selftest@live_blt.html * igt@i915_selftest@live_execlists: - fi-icl-guc: [PASS][7] -> [INCOMPLETE][8] ([i915#140]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-icl-guc/igt@i915_selftest@live_execlists.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-icl-guc/igt@i915_selftest@live_execlists.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-byt-j1900: [TIMEOUT][9] ([fdo#112271] / [i915#816]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-byt-j1900/igt@gem_close_race@basic-threads.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-byt-j1900/igt@gem_close_race@basic-threads.html * igt@i915_selftest@live_blt: - fi-hsw-4770: [DMESG-FAIL][11] ([i915#553] / [i915#725]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-hsw-4770/igt@i915_selftest@live_blt.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-hsw-4770/igt@i915_selftest@live_blt.html * igt@i915_selftest@live_gtt: - fi-bdw-5557u: [TIMEOUT][13] ([fdo#112271]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-bdw-5557u/igt@i915_selftest@live_gtt.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-bdw-5557u/igt@i915_selftest@live_gtt.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][15] ([fdo#111096] / [i915#323]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-icl-dsi: [DMESG-WARN][17] ([i915#109]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html * igt@prime_self_import@basic-llseek-size: - fi-tgl-y: [DMESG-WARN][19] ([CI#94] / [i915#402]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html #### Warnings #### * igt@i915_selftest@live_blt: - fi-hsw-4770r: [DMESG-FAIL][21] ([i915#725]) -> [DMESG-FAIL][22] ([i915#553] / [i915#725]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-hsw-4770r/igt@i915_selftest@live_blt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-hsw-4770r/igt@i915_selftest@live_blt.html * igt@i915_selftest@live_gem_contexts: - fi-cfl-8700k: [INCOMPLETE][23] ([i915#424]) -> [DMESG-FAIL][24] ([i915#623]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#109]: https://gitlab.freedesktop.org/drm/intel/issues/109 [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#623]: https://gitlab.freedesktop.org/drm/intel/issues/623 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 [i915#998]: https://gitlab.freedesktop.org/drm/intel/issues/998 Participating hosts (50 -> 48) ------------------------------ Additional (2): fi-byt-n2820 fi-bwr-2160 Missing (4): fi-ilk-m540 fi-byt-clapper fi-bdw-samus fi-hsw-4200u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5404 -> IGTPW_4033 CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4033: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/index.html IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary 2020-01-29 19:29 [igt-dev] [PATCH i-g-t 1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Antonio Argenziano 2020-01-29 19:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed Antonio Argenziano 2020-01-29 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Patchwork @ 2020-02-01 3:27 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-02-01 3:27 UTC (permalink / raw) To: Antonio Argenziano; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary URL : https://patchwork.freedesktop.org/series/72739/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7838_full -> IGTPW_4033_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4033_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4033_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4033_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-snb1/igt@gem_exec_flush@basic-uc-prw-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-snb4/igt@gem_exec_flush@basic-uc-prw-default.html * igt@i915_suspend@forcewake: - shard-iclb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@i915_suspend@forcewake.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb3/igt@i915_suspend@forcewake.html Known issues ------------ Here are the changes found in IGTPW_4033_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@vcs0-mixed-process: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#679]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb6/igt@gem_ctx_persistence@vcs0-mixed-process.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-tglb8/igt@gem_ctx_persistence@vcs0-mixed-process.html * igt@gem_exec_schedule@fifo-bsd1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +17 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_exec_schedule@fifo-bsd1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb8/igt@gem_exec_schedule@fifo-bsd1.html * igt@gem_exec_schedule@pi-userfault-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#677]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@gem_exec_schedule@pi-userfault-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#112146]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [PASS][13] -> [FAIL][14] ([i915#57]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-hsw8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][15] -> [DMESG-WARN][16] ([i915#180]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][17] -> [SKIP][18] ([fdo#109441]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb5/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][19] -> [FAIL][20] ([i915#31]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl1/igt@kms_setmode@basic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-apl1/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +4 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf_pmu@busy-vcs1: - shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#112080]) +13 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@perf_pmu@busy-vcs1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb8/igt@perf_pmu@busy-vcs1.html #### Possible fixes #### * igt@gem_ctx_persistence@vcs1-mixed-process: - shard-iclb: [SKIP][25] ([fdo#109276] / [fdo#112080]) -> [PASS][26] +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@gem_ctx_persistence@vcs1-mixed-process.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb2/igt@gem_ctx_persistence@vcs1-mixed-process.html * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [SKIP][27] ([fdo#110841]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_balancer@hang: - shard-iclb: [TIMEOUT][29] ([fdo#112271]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_balancer@hang.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb6/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][31] ([fdo#110854]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@gem_exec_balancer@smoke.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb4/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [SKIP][33] ([fdo#109276]) -> [PASS][34] +12 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb5/igt@gem_exec_schedule@independent-bsd2.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [SKIP][35] ([i915#677]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb1/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb3/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][37] ([fdo#112146]) -> [PASS][38] +11 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-hsw: [FAIL][39] ([i915#694]) -> [PASS][40] +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-hsw6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: - shard-hsw: [FAIL][41] ([i915#520]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-hsw2/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-kbl: [FAIL][43] ([i915#644]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl3/igt@gem_ppgtt@flink-and-close-vma-leak.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-kbl2/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][45] ([i915#180]) -> [PASS][46] +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-hsw: [DMESG-WARN][47] ([i915#44]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@kms_atomic_transition@plane-all-modeset-transition.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-hsw8/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [DMESG-WARN][49] ([i915#180]) -> [PASS][50] +4 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-iclb: [TIMEOUT][51] -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@kms_fbcon_fbt@psr-suspend.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][53] ([fdo#109441]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb5/igt@kms_psr@psr2_cursor_render.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_setmode@basic: - shard-hsw: [FAIL][55] ([i915#31]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw4/igt@kms_setmode@basic.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-hsw5/igt@kms_setmode@basic.html * igt@perf@gen12-mi-rpc: - shard-tglb: [TIMEOUT][57] ([fdo#112271] / [i915#1085] / [i915#472]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb5/igt@perf@gen12-mi-rpc.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-tglb4/igt@perf@gen12-mi-rpc.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [SKIP][59] ([fdo#112080]) -> [PASS][60] +9 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@perf_pmu@busy-no-semaphores-vcs1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv-switch: - shard-iclb: [FAIL][61] ([IGT#28]) -> [SKIP][62] ([fdo#112080]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44 [i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472 [i915#520]: https://gitlab.freedesktop.org/drm/intel/issues/520 [i915#57]: https://gitlab.freedesktop.org/drm/intel/issues/57 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#679]: https://gitlab.freedesktop.org/drm/intel/issues/679 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5404 -> IGTPW_4033 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4033: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4033/index.html IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ 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_4033/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-02-01 3:27 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-29 19:29 [igt-dev] [PATCH i-g-t 1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Antonio Argenziano 2020-01-29 19:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_exec_flush: Require mapapble aperture when needed Antonio Argenziano 2020-01-29 21:13 ` Chris Wilson 2020-01-29 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/i915/gem_exec_reloc: Require mappable gtt when necessary Patchwork 2020-02-01 3:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox