* [igt-dev] [PATCH i-g-t] i915: Exercise hostile context execution @ 2019-10-22 15:47 ` Chris Wilson 0 siblings, 0 replies; 8+ messages in thread From: Chris Wilson @ 2019-10-22 15:47 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev, Tvrtko Ursulin, Jon Bloomfield Verify that contexts are automatically shotdown on close if hangchecking is disabled. Basic environmental robustness test stolen from gem_ctx_persistence. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> --- tests/i915/gem_ctx_exec.c | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/tests/i915/gem_ctx_exec.c b/tests/i915/gem_ctx_exec.c index 614a9f401..92e899869 100644 --- a/tests/i915/gem_ctx_exec.c +++ b/tests/i915/gem_ctx_exec.c @@ -40,6 +40,8 @@ #include <drm.h> +#include "igt_dummyload.h" +#include "igt_sysfs.h" IGT_TEST_DESCRIPTION("Test context batch buffer execution."); @@ -196,6 +198,42 @@ static void norecovery(int i915) igt_disallow_hang(i915, hang); } +static bool __enable_hangcheck(int dir, bool state) +{ + return igt_sysfs_set(dir, "enable_hangcheck", state ? "1" : "0"); +} + +static void nohangcheck_hostile(int i915) +{ + int64_t timeout = NSEC_PER_SEC / 2; + igt_spin_t *spin; + uint32_t ctx; + int dir; + + /* + * Even if the user disables hangcheck during their context, + * we forcibly terminate that context. + */ + + dir = igt_sysfs_open_parameters(i915); + igt_require(dir != -1); + + ctx = gem_context_create(i915); + + igt_require(__enable_hangcheck(dir, false)); + + spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_NO_PREEMPTION); + gem_context_destroy(i915, ctx); + + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0); + + igt_require(__enable_hangcheck(dir, true)); + + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); + close(dir); +} + igt_main { const uint32_t batch[2] = { 0, MI_BATCH_BUFFER_END }; @@ -239,6 +277,9 @@ igt_main igt_subtest("basic-norecovery") norecovery(fd); + igt_subtest("basic-nohangcheck") + nohangcheck_hostile(fd); + igt_subtest("reset-pin-leak") { int i; -- 2.24.0.rc0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t] i915: Exercise hostile context execution @ 2019-10-22 15:47 ` Chris Wilson 0 siblings, 0 replies; 8+ messages in thread From: Chris Wilson @ 2019-10-22 15:47 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev Verify that contexts are automatically shotdown on close if hangchecking is disabled. Basic environmental robustness test stolen from gem_ctx_persistence. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Jon Bloomfield <jon.bloomfield@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> --- tests/i915/gem_ctx_exec.c | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/tests/i915/gem_ctx_exec.c b/tests/i915/gem_ctx_exec.c index 614a9f401..92e899869 100644 --- a/tests/i915/gem_ctx_exec.c +++ b/tests/i915/gem_ctx_exec.c @@ -40,6 +40,8 @@ #include <drm.h> +#include "igt_dummyload.h" +#include "igt_sysfs.h" IGT_TEST_DESCRIPTION("Test context batch buffer execution."); @@ -196,6 +198,42 @@ static void norecovery(int i915) igt_disallow_hang(i915, hang); } +static bool __enable_hangcheck(int dir, bool state) +{ + return igt_sysfs_set(dir, "enable_hangcheck", state ? "1" : "0"); +} + +static void nohangcheck_hostile(int i915) +{ + int64_t timeout = NSEC_PER_SEC / 2; + igt_spin_t *spin; + uint32_t ctx; + int dir; + + /* + * Even if the user disables hangcheck during their context, + * we forcibly terminate that context. + */ + + dir = igt_sysfs_open_parameters(i915); + igt_require(dir != -1); + + ctx = gem_context_create(i915); + + igt_require(__enable_hangcheck(dir, false)); + + spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_NO_PREEMPTION); + gem_context_destroy(i915, ctx); + + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0); + + igt_require(__enable_hangcheck(dir, true)); + + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); + close(dir); +} + igt_main { const uint32_t batch[2] = { 0, MI_BATCH_BUFFER_END }; @@ -239,6 +277,9 @@ igt_main igt_subtest("basic-norecovery") norecovery(fd); + igt_subtest("basic-nohangcheck") + nohangcheck_hostile(fd); + igt_subtest("reset-pin-leak") { int i; -- 2.24.0.rc0 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for i915: Exercise hostile context execution 2019-10-22 15:47 ` Chris Wilson (?) @ 2019-10-22 16:30 ` Patchwork -1 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-10-22 16:30 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915: Exercise hostile context execution URL : https://patchwork.freedesktop.org/series/68401/ State : warning == Summary == ERROR! This series introduces new undocumented tests: gem_ctx_exec@basic-nohangcheck Can you document them as per the requirement in the [CONTRIBUTING.md]? [Documentation] has more details on how to do this. Here are few examples: https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d Thanks in advance! [CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19 [Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe Other than that, pipeline status: SUCCESS. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/72493 for more details == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/72493 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915: Exercise hostile context execution 2019-10-22 15:47 ` Chris Wilson (?) (?) @ 2019-10-22 16:31 ` Patchwork -1 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-10-22 16:31 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915: Exercise hostile context execution URL : https://patchwork.freedesktop.org/series/68401/ State : success == Summary == CI Bug Log - changes from CI_DRM_7152 -> IGTPW_3594 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/index.html Known issues ------------ Here are the changes found in IGTPW_3594 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_flink_basic@flink-lifetime: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-icl-u3/igt@gem_flink_basic@flink-lifetime.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-icl-u3/igt@gem_flink_basic@flink-lifetime.html #### Possible fixes #### * igt@gem_mmap_gtt@basic: - fi-icl-u3: [DMESG-WARN][3] ([fdo#107724]) -> [PASS][4] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-icl-u3/igt@gem_mmap_gtt@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-icl-u3/igt@gem_mmap_gtt@basic.html * {igt@i915_selftest@live_gt_heartbeat}: - fi-cfl-guc: [DMESG-FAIL][5] ([fdo#112096]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-cfl-guc/igt@i915_selftest@live_gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-cfl-guc/igt@i915_selftest@live_gt_heartbeat.html * igt@i915_selftest@live_hangcheck: - {fi-tgl-u}: [INCOMPLETE][7] ([fdo#111747]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-tgl-u/igt@i915_selftest@live_hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-tgl-u/igt@i915_selftest@live_hangcheck.html - {fi-tgl-u2}: [INCOMPLETE][9] ([fdo#111747]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-tgl-u2/igt@i915_selftest@live_hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-tgl-u2/igt@i915_selftest@live_hangcheck.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][11] ([fdo#111045] / [fdo#111096]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096 Participating hosts (53 -> 46) ------------------------------ Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5235 -> IGTPW_3594 CI-20190529: 20190529 CI_DRM_7152: 63ca43ac06cb48bef4875baa05311f2177fbb221 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3594: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/index.html IGT_5235: da9abbab69be80dd00812a4607a4ea2dffcc4544 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_ctx_exec@basic-nohangcheck == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915: Exercise hostile context execution 2019-10-22 15:47 ` Chris Wilson ` (2 preceding siblings ...) (?) @ 2019-10-23 4:25 ` Patchwork -1 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-10-23 4:25 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915: Exercise hostile context execution URL : https://patchwork.freedesktop.org/series/68401/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7152_full -> IGTPW_3594_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3594_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3594_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_3594/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3594_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@basic-hang-rcs0: - shard-iclb: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@gem_busy@basic-hang-rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb5/igt@gem_busy@basic-hang-rcs0.html * {igt@gem_ctx_exec@basic-nohangcheck} (NEW): - shard-glk: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-glk7/igt@gem_ctx_exec@basic-nohangcheck.html - {shard-tglb}: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-snb: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-hsw: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw4/igt@gem_ctx_exec@basic-nohangcheck.html - shard-iclb: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb5/igt@gem_ctx_exec@basic-nohangcheck.html - shard-kbl: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-kbl1/igt@gem_ctx_exec@basic-nohangcheck.html - shard-apl: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl4/igt@gem_ctx_exec@basic-nohangcheck.html New tests --------- New tests have been introduced between CI_DRM_7152_full and IGTPW_3594_full: ### New IGT tests (1) ### * igt@gem_ctx_exec@basic-nohangcheck: - Statuses : 7 fail(s) - Exec time: [0.51, 0.54] s Known issues ------------ Here are the changes found in IGTPW_3594_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@basic-hang-rcs0: - shard-kbl: [PASS][10] -> [SKIP][11] ([fdo#109271]) +27 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-kbl3/igt@gem_busy@basic-hang-rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-kbl1/igt@gem_busy@basic-hang-rcs0.html * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +8 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb4/igt@gem_busy@busy-vcs1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb6/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@bcs0-s3: - shard-kbl: [PASS][14] -> [INCOMPLETE][15] ([fdo#103665]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-kbl7/igt@gem_ctx_isolation@bcs0-s3.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-kbl4/igt@gem_ctx_isolation@bcs0-s3.html * igt@gem_ctx_isolation@vcs1-reset: - shard-iclb: [PASS][16] -> [SKIP][17] ([fdo#109276] / [fdo#112080]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb2/igt@gem_ctx_isolation@vcs1-reset.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb3/igt@gem_ctx_isolation@vcs1-reset.html * igt@gem_eio@throttle: - shard-hsw: [PASS][18] -> [SKIP][19] ([fdo#109271]) +12 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw4/igt@gem_eio@throttle.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw4/igt@gem_eio@throttle.html * igt@gem_exec_schedule@preempt-hang-bsd: - shard-iclb: [PASS][20] -> [SKIP][21] ([fdo#111325]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb8/igt@gem_exec_schedule@preempt-hang-bsd.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb1/igt@gem_exec_schedule@preempt-hang-bsd.html * igt@gem_mocs_settings@mocs-reset-blt: - shard-apl: [PASS][22] -> [SKIP][23] ([fdo#109271]) +9 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-apl4/igt@gem_mocs_settings@mocs-reset-blt.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl4/igt@gem_mocs_settings@mocs-reset-blt.html * igt@gem_persistent_relocs@forked-thrashing: - shard-iclb: [PASS][24] -> [TIMEOUT][25] ([fdo#112068 ]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@gem_persistent_relocs@forked-thrashing.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb8/igt@gem_persistent_relocs@forked-thrashing.html * igt@gem_tiled_swapping@non-threaded: - shard-kbl: [PASS][26] -> [DMESG-WARN][27] ([fdo#108686]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-kbl3/igt@gem_tiled_swapping@non-threaded.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-kbl1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [PASS][28] -> [DMESG-WARN][29] ([fdo#111870]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb7/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [PASS][30] -> [DMESG-WARN][31] ([fdo#108566]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-apl6/igt@gem_workarounds@suspend-resume-context.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl4/igt@gem_workarounds@suspend-resume-context.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-hsw: [PASS][32] -> [INCOMPLETE][33] ([fdo#103540]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-snb: [PASS][34] -> [INCOMPLETE][35] ([fdo#105411]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][36] -> [FAIL][37] ([fdo#103167]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_basic: - shard-iclb: [PASS][38] -> [SKIP][39] ([fdo#109441]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb2/igt@kms_psr@psr2_basic.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb7/igt@kms_psr@psr2_basic.html * igt@kms_setmode@basic: - shard-apl: [PASS][40] -> [FAIL][41] ([fdo#99912]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-apl3/igt@kms_setmode@basic.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl7/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-wait-forked-busy-hang: - shard-snb: [PASS][42] -> [SKIP][43] ([fdo#109271]) +11 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb6/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb2/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html * igt@kms_vblank@pipe-b-wait-idle-hang: - shard-iclb: [PASS][44] -> [SKIP][45] ([fdo#109278]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@kms_vblank@pipe-b-wait-idle-hang.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb5/igt@kms_vblank@pipe-b-wait-idle-hang.html * igt@perf_pmu@busy-hang-vcs1: - shard-kbl: [PASS][46] -> [SKIP][47] ([fdo#109271] / [fdo#112080]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-kbl3/igt@perf_pmu@busy-hang-vcs1.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-kbl1/igt@perf_pmu@busy-hang-vcs1.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][48] -> [SKIP][49] ([fdo#109276]) +14 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb1/igt@prime_busy@hang-bsd2.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb3/igt@prime_busy@hang-bsd2.html * igt@prime_busy@wait-hang-blt: - shard-glk: [PASS][50] -> [SKIP][51] ([fdo#109271]) +9 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-glk7/igt@prime_busy@wait-hang-blt.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-glk7/igt@prime_busy@wait-hang-blt.html #### Possible fixes #### * igt@gem_busy@extended-parallel-vcs1: - shard-iclb: [SKIP][52] ([fdo#112080]) -> [PASS][53] +8 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb6/igt@gem_busy@extended-parallel-vcs1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb2/igt@gem_busy@extended-parallel-vcs1.html * igt@gem_ctx_isolation@vcs1-dirty-create: - shard-iclb: [SKIP][54] ([fdo#109276] / [fdo#112080]) -> [PASS][55] +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb6/igt@gem_ctx_isolation@vcs1-dirty-create.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb4/igt@gem_ctx_isolation@vcs1-dirty-create.html * igt@gem_ctx_shared@q-smoketest-bsd: - {shard-tglb}: [INCOMPLETE][56] ([fdo# 111852 ]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-tglb4/igt@gem_ctx_shared@q-smoketest-bsd.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-tglb1/igt@gem_ctx_shared@q-smoketest-bsd.html * igt@gem_eio@in-flight-contexts-immediate: - shard-snb: [FAIL][58] ([fdo#111925]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][60] ([fdo#110854]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb8/igt@gem_exec_balancer@smoke.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb1/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [SKIP][62] ([fdo#109276]) -> [PASS][63] +11 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb3/igt@gem_exec_schedule@independent-bsd2.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb1/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][64] ([fdo#111325]) -> [PASS][65] +7 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_linear_blits@normal: - shard-glk: [INCOMPLETE][66] ([fdo#103359] / [k.org#198133]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-glk8/igt@gem_linear_blits@normal.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-glk4/igt@gem_linear_blits@normal.html * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive: - shard-hsw: [FAIL][68] ([fdo#112037]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw5/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw4/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html * igt@gem_persistent_relocs@forked-thrashing: - shard-snb: [FAIL][70] ([fdo#112037]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb1/igt@gem_persistent_relocs@forked-thrashing.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb4/igt@gem_persistent_relocs@forked-thrashing.html * igt@gem_request_retire@retire-vma-not-inactive: - shard-iclb: [INCOMPLETE][72] ([fdo#107713]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@gem_request_retire@retire-vma-not-inactive.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb6/igt@gem_request_retire@retire-vma-not-inactive.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-snb: [DMESG-WARN][74] ([fdo#111870]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-hsw: [DMESG-WARN][76] ([fdo#111870]) -> [PASS][77] +4 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw6/igt@gem_userptr_blits@sync-unmap-cycles.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw7/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b: - shard-hsw: [INCOMPLETE][78] ([fdo#103540]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw7/igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw1/igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-apl: [DMESG-WARN][80] ([fdo#108566]) -> [PASS][81] +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-apl: [INCOMPLETE][82] ([fdo#103927]) -> [PASS][83] +4 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][84] ([fdo#105363]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-iclb: [FAIL][86] ([fdo#103167]) -> [PASS][87] +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - {shard-tglb}: [FAIL][88] ([fdo#103167]) -> [PASS][89] +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [FAIL][90] ([fdo#103166]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-x.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [SKIP][92] ([fdo#109441]) -> [PASS][93] +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@kms_psr@psr2_cursor_plane_move.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_setmode@basic: - shard-hsw: [FAIL][94] ([fdo#99912]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-hsw8/igt@kms_setmode@basic.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-hsw7/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - {shard-tglb}: [INCOMPLETE][96] ([fdo#111832] / [fdo#111850]) -> [PASS][97] +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf@oa-exponents: - shard-glk: [FAIL][98] ([fdo#105483]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-glk5/igt@perf@oa-exponents.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-glk3/igt@perf@oa-exponents.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][100] ([fdo#109276] / [fdo#112080]) -> [FAIL][101] ([fdo#111329]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [SKIP][102] ([fdo#109276]) -> [FAIL][103] ([fdo#111330]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb3/igt@gem_mocs_settings@mocs-reset-bsd2.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html * igt@kms_psr@psr2_suspend: - shard-iclb: [SKIP][104] ([fdo#109441]) -> [DMESG-WARN][105] ([fdo#107724]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7152/shard-iclb6/igt@kms_psr@psr2_suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/shard-iclb2/igt@kms_psr@psr2_suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 [fdo#103166]: https://bugs.freedeskt == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3594/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915: Exercise hostile context execution 2019-10-22 15:47 ` Chris Wilson (?) @ 2019-10-23 12:50 ` Andi Shyti -1 siblings, 0 replies; 8+ messages in thread From: Andi Shyti @ 2019-10-23 12:50 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx, Jon Bloomfield, Tvrtko Ursulin Hi Chris, On Tue, Oct 22, 2019 at 04:47:48PM +0100, Chris Wilson wrote: > Verify that contexts are automatically shotdown on close if hangchecking > is disabled. > > Basic environmental robustness test stolen from gem_ctx_persistence. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Acked-by: Andi Shyti <andi.shyti@intel.com> Andi _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [igt-dev] [PATCH i-g-t] i915: Exercise hostile context execution @ 2019-10-23 12:50 ` Andi Shyti 0 siblings, 0 replies; 8+ messages in thread From: Andi Shyti @ 2019-10-23 12:50 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx Hi Chris, On Tue, Oct 22, 2019 at 04:47:48PM +0100, Chris Wilson wrote: > Verify that contexts are automatically shotdown on close if hangchecking > is disabled. > > Basic environmental robustness test stolen from gem_ctx_persistence. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Acked-by: Andi Shyti <andi.shyti@intel.com> Andi _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915: Exercise hostile context execution @ 2019-10-23 12:50 ` Andi Shyti 0 siblings, 0 replies; 8+ messages in thread From: Andi Shyti @ 2019-10-23 12:50 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx Hi Chris, On Tue, Oct 22, 2019 at 04:47:48PM +0100, Chris Wilson wrote: > Verify that contexts are automatically shotdown on close if hangchecking > is disabled. > > Basic environmental robustness test stolen from gem_ctx_persistence. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Jon Bloomfield <jon.bloomfield@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Acked-by: Andi Shyti <andi.shyti@intel.com> Andi _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2019-10-23 12:50 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-10-22 15:47 [igt-dev] [PATCH i-g-t] i915: Exercise hostile context execution Chris Wilson 2019-10-22 15:47 ` Chris Wilson 2019-10-22 16:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2019-10-22 16:31 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2019-10-23 4:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2019-10-23 12:50 ` [igt-dev] [PATCH i-g-t] " Andi Shyti 2019-10-23 12:50 ` [Intel-gfx] " Andi Shyti 2019-10-23 12:50 ` Andi Shyti
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.