* [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
@ 2023-04-05 0:09 Umesh Nerlige Ramappa
2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Umesh Nerlige Ramappa @ 2023-04-05 0:09 UTC (permalink / raw)
To: igt-dev
From: root <root@DUT5130ATSM.fm.intel.com>
With GuC scheduling backends, the context busyness for a active context is
obtained from the GUC FW. The support for this is WIP, so disable tests that
check TEST_BUSY until the feature is implemented.
v2: Drop fixture
Bug Id: https://gitlab.freedesktop.org/drm/intel/-/issues/8303
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh Nerlige Ramappa (2):
lib/drm_fdinfo: Check for compute engines when parsing
tests/drm_fdinfo: Drop active busyness tests for GuC backend
lib/igt_drm_fdinfo.c | 1 +
tests/i915/drm_fdinfo.c | 14 ++++++++++++++
2 files changed, 15 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] lib/drm_fdinfo: Check for compute engines when parsing 2023-04-05 0:09 [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa @ 2023-04-05 0:09 ` Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Umesh Nerlige Ramappa @ 2023-04-05 0:09 UTC (permalink / raw) To: igt-dev DG2 has compute engine support. When parsing the fdinfo for available engines, also check for compute. This fixes drm_fdinfo@basic for platforms where compute is present. Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> --- lib/igt_drm_fdinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/igt_drm_fdinfo.c b/lib/igt_drm_fdinfo.c index 250d9e89..5beb30b0 100644 --- a/lib/igt_drm_fdinfo.c +++ b/lib/igt_drm_fdinfo.c @@ -60,6 +60,7 @@ static int parse_engine(char *line, struct drm_client_fdinfo *info, "copy", "video", "video-enhance", + "compute", }; ssize_t name_len; char *name, *p; -- 2.34.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend 2023-04-05 0:09 [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa @ 2023-04-05 0:09 ` Umesh Nerlige Ramappa 2023-04-05 8:31 ` Tvrtko Ursulin 2023-04-05 0:54 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) Patchwork 2023-04-05 10:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 6+ messages in thread From: Umesh Nerlige Ramappa @ 2023-04-05 0:09 UTC (permalink / raw) To: igt-dev With GuC scheduling backends, the context busyness for an active context is obtained from the GuC FW. The support for this is WIP, so disable tests that check TEST_BUSY until the feature is implemented. v2: Drop fixture (Tvrtko) Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- tests/i915/drm_fdinfo.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/i915/drm_fdinfo.c b/tests/i915/drm_fdinfo.c index 65b8b830..1b124755 100644 --- a/tests/i915/drm_fdinfo.c +++ b/tests/i915/drm_fdinfo.c @@ -197,6 +197,9 @@ single(int gem_fd, const intel_ctx_t *ctx, int spin_fd; uint64_t ahnd; + if (flags & TEST_BUSY) + igt_require(!gem_using_guc_submission(gem_fd)); + if (flags & TEST_ISOLATION) { spin_fd = gem_reopen_driver(gem_fd); ctx = intel_ctx_create_all_physical(spin_fd); @@ -287,6 +290,8 @@ busy_check_all(int gem_fd, const intel_ctx_t *ctx, igt_spin_t *spin; unsigned int i; + igt_require(!gem_using_guc_submission(gem_fd)); + memset(tval, 0, sizeof(tval)); spin = spin_sync(gem_fd, ahnd, ctx, e); @@ -346,6 +351,8 @@ most_busy_check_all(int gem_fd, const intel_ctx_t *ctx, uint64_t val[16]; unsigned int i; + igt_require(!gem_using_guc_submission(gem_fd)); + memset(busy_class, 0, sizeof(busy_class)); memset(tval, 0, sizeof(tval)); @@ -404,6 +411,8 @@ all_busy_check_all(int gem_fd, const intel_ctx_t *ctx, uint64_t val[16]; unsigned int i; + igt_require(!gem_using_guc_submission(gem_fd)); + memset(busy_class, 0, sizeof(busy_class)); memset(tval, 0, sizeof(tval)); @@ -525,6 +534,9 @@ virtual(int i915, const intel_ctx_cfg_t *base_cfg, unsigned int flags) { intel_ctx_cfg_t cfg = {}; + if (flags & TEST_BUSY) + igt_require(!gem_using_guc_submission(i915)); + cfg.vm = gem_vm_create(i915); for (int class = 0; class < 32; class++) { @@ -624,6 +636,8 @@ virtual_all(int i915, const intel_ctx_cfg_t *base_cfg, unsigned int flags) const unsigned int num_engines = base_cfg->num_engines; intel_ctx_cfg_t cfg = {}; + igt_require(!gem_using_guc_submission(i915)); + cfg.vm = gem_vm_create(i915); for (int class = 0; class < 32; class++) { -- 2.34.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa @ 2023-04-05 8:31 ` Tvrtko Ursulin 0 siblings, 0 replies; 6+ messages in thread From: Tvrtko Ursulin @ 2023-04-05 8:31 UTC (permalink / raw) To: Umesh Nerlige Ramappa, igt-dev On 05/04/2023 01:09, Umesh Nerlige Ramappa wrote: > With GuC scheduling backends, the context busyness for an active context is > obtained from the GuC FW. The support for this is WIP, so disable tests that > check TEST_BUSY until the feature is implemented. > > v2: Drop fixture (Tvrtko) > > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > --- > tests/i915/drm_fdinfo.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/tests/i915/drm_fdinfo.c b/tests/i915/drm_fdinfo.c > index 65b8b830..1b124755 100644 > --- a/tests/i915/drm_fdinfo.c > +++ b/tests/i915/drm_fdinfo.c > @@ -197,6 +197,9 @@ single(int gem_fd, const intel_ctx_t *ctx, > int spin_fd; > uint64_t ahnd; > > + if (flags & TEST_BUSY) > + igt_require(!gem_using_guc_submission(gem_fd)); > + > if (flags & TEST_ISOLATION) { > spin_fd = gem_reopen_driver(gem_fd); > ctx = intel_ctx_create_all_physical(spin_fd); > @@ -287,6 +290,8 @@ busy_check_all(int gem_fd, const intel_ctx_t *ctx, > igt_spin_t *spin; > unsigned int i; > > + igt_require(!gem_using_guc_submission(gem_fd)); > + > memset(tval, 0, sizeof(tval)); > > spin = spin_sync(gem_fd, ahnd, ctx, e); > @@ -346,6 +351,8 @@ most_busy_check_all(int gem_fd, const intel_ctx_t *ctx, > uint64_t val[16]; > unsigned int i; > > + igt_require(!gem_using_guc_submission(gem_fd)); > + > memset(busy_class, 0, sizeof(busy_class)); > memset(tval, 0, sizeof(tval)); > > @@ -404,6 +411,8 @@ all_busy_check_all(int gem_fd, const intel_ctx_t *ctx, > uint64_t val[16]; > unsigned int i; > > + igt_require(!gem_using_guc_submission(gem_fd)); > + > memset(busy_class, 0, sizeof(busy_class)); > memset(tval, 0, sizeof(tval)); > > @@ -525,6 +534,9 @@ virtual(int i915, const intel_ctx_cfg_t *base_cfg, unsigned int flags) > { > intel_ctx_cfg_t cfg = {}; > > + if (flags & TEST_BUSY) > + igt_require(!gem_using_guc_submission(i915)); > + > cfg.vm = gem_vm_create(i915); > > for (int class = 0; class < 32; class++) { > @@ -624,6 +636,8 @@ virtual_all(int i915, const intel_ctx_cfg_t *base_cfg, unsigned int flags) > const unsigned int num_engines = base_cfg->num_engines; > intel_ctx_cfg_t cfg = {}; > > + igt_require(!gem_using_guc_submission(i915)); > + > cfg.vm = gem_vm_create(i915); > > for (int class = 0; class < 32; class++) { This looks fine to me. Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) 2023-04-05 0:09 [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa @ 2023-04-05 0:54 ` Patchwork 2023-04-05 10:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-05 0:54 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4728 bytes --] == Series Details == Series: tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) URL : https://patchwork.freedesktop.org/series/115957/ State : success == Summary == CI Bug Log - changes from CI_DRM_12966 -> IGTPW_8755 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8755 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: [PASS][1] -> [ABORT][2] ([i915#6687] / [i915#7978]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gt_mocs: - bat-dg1-5: [PASS][3] -> [ABORT][4] ([i915#4983]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/bat-dg1-5/igt@i915_selftest@live@gt_mocs.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-dg1-5/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][5] -> [ABORT][6] ([i915#4983] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/bat-rpls-2/igt@i915_selftest@live@requests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#7828]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@read-crc: - bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#5354]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - fi-skl-6600u: [FAIL][9] ([fdo#103375]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gt_lrc: - bat-dg2-11: [INCOMPLETE][11] ([i915#7609] / [i915#7913]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [DMESG-FAIL][13] ([i915#6367] / [i915#7996]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/bat-rpls-1/igt@i915_selftest@live@slpc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1: - fi-rkl-11600: [FAIL][15] ([fdo#103375]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-1.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7236 -> IGTPW_8755 CI-20190529: 20190529 CI_DRM_12966: 202141796dba6058f9f7623c0ee48ff4ebcc2607 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8755: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html IGT_7236: bac5a4cc31b3212a205219a6cbc45a173d30d04b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html [-- Attachment #2: Type: text/html, Size: 5735 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) 2023-04-05 0:09 [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa ` (2 preceding siblings ...) 2023-04-05 0:54 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) Patchwork @ 2023-04-05 10:55 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-04-05 10:55 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 20416 bytes --] == Series Details == Series: tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) URL : https://patchwork.freedesktop.org/series/115957/ State : success == Summary == CI Bug Log - changes from CI_DRM_12966_full -> IGTPW_8755_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html Participating hosts (7 -> 8) ------------------------------ Additional (1): shard-rkl0 Known issues ------------ Here are the changes found in IGTPW_8755_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][1] ([i915#2842]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive: - shard-apl: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl4/igt@gem_lmem_swapping@massive.html * igt@i915_pm_rpm@system-suspend-devices: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271]) +23 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-snb4/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_selftest@mock@sanitycheck: - shard-snb: [PASS][5] -> [ABORT][6] ([i915#4528]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-snb4/igt@i915_selftest@mock@sanitycheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-snb5/igt@i915_selftest@mock@sanitycheck.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#3886]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium_color@ctm-0-75: - shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271]) +87 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl4/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][10] ([i915#7173]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl3/igt@kms_content_protection@legacy@pipe-a-dp-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#72]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +49 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][14] ([i915#7862]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][15] ([i915#4573]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#658]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - {shard-dg1}: [ABORT][18] ([i915#8234]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-dg1-15/igt@gem_barrier_race@remote-request@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-dg1-17/igt@gem_barrier_race@remote-request@rcs0.html - shard-apl: [ABORT][20] ([i915#8211] / [i915#8234]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-apl2/igt@gem_barrier_race@remote-request@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl4/igt@gem_barrier_race@remote-request@rcs0.html - shard-glk: [ABORT][22] ([i915#8211]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk8/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@in-flight-contexts-immediate: - shard-apl: [TIMEOUT][24] ([i915#3063]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-apl6/igt@gem_eio@in-flight-contexts-immediate.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_fair@basic-none@bcs0: - {shard-rkl}: [FAIL][26] ([i915#2842]) -> [PASS][27] +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][28] ([i915#2842]) -> [PASS][29] +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][30] ([i915#5566]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-glk3/igt@gen9_exec_parse@allowed-single.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][32] ([i915#4528]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][34] ([i915#3989] / [i915#454]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - {shard-dg1}: [FAIL][36] ([i915#3591]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-rkl}: [SKIP][38] ([i915#1397]) -> [PASS][39] +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - {shard-dg1}: [SKIP][40] ([i915#1397]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rps@reset: - shard-snb: [DMESG-FAIL][42] ([i915#8319]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-snb5/igt@i915_pm_rps@reset.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_suspend@fence-restore-untiled: - shard-snb: [DMESG-WARN][44] ([i915#5090]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-snb4/igt@i915_suspend@fence-restore-untiled.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-snb5/igt@i915_suspend@fence-restore-untiled.html * igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1: - shard-apl: [ABORT][46] ([i915#180]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][48] ([i915#72]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][50] ([i915#4349]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-rkl-6/igt@perf_pmu@idle@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-rkl-1/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: [FAIL][52] ([i915#7173]) -> [TIMEOUT][53] ([i915#7173]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12966/shard-apl2/igt@kms_content_protection@atomic@pipe-a-dp-1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 [i915#8319]: https://gitlab.freedesktop.org/drm/intel/issues/8319 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7236 -> IGTPW_8755 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12966: 202141796dba6058f9f7623c0ee48ff4ebcc2607 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8755: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html IGT_7236: bac5a4cc31b3212a205219a6cbc45a173d30d04b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8755/index.html [-- Attachment #2: Type: text/html, Size: 15964 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-04-05 10:55 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-05 0:09 [igt-dev] [PATCH i-g-t v2 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa 2023-04-05 0:09 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa 2023-04-05 8:31 ` Tvrtko Ursulin 2023-04-05 0:54 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC (rev2) Patchwork 2023-04-05 10:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox