* [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed
@ 2024-06-05 17:10 Jonathan Cavitt
2024-06-05 17:10 ` [PATCH i-g-t v3 1/2] lib/xe: Add sync and async xe_force_gt_reset options Jonathan Cavitt
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-06-05 17:10 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost, john.c.harrison,
stuart.summers
Add a new xe_force_gt_reset function, xe_force_gt_reset_sync, renaming
the original xe_force_gt_reset to xe_force_gt_reset_async. This allows
the user to decide whether or not they want to initiate a synchronous or
asynchronous gt reset. The asynchronous reset function was otherwise
unchanged, but the synchronous reset function operates by calling a new
debugfs function.
Tests will use the asynchronous gt reset function by default, but the
test xe_exec_reset@cm-gt-reset will want to use the synchronous version
because it lacks a blocking mechanism on the reset and may race with
itself otherwise.
v2:
- Create a new function for synchronous gt reset instead of using a tag
to denote between the two modes
v3:
- Fix compile issue
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068
Test-with: 20240605150828.2736396-1-jonathan.cavitt@intel.com
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: John Harrison <john.c.harrison@intel.com>
CC: Stuart Summers <stuart.summers@intel.com>
Jonathan Cavitt (2):
lib/xe: Add sync and async xe_force_gt_reset options
test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets
lib/xe/xe_gt.c | 2 +-
lib/xe/xe_ioctl.c | 15 ++++++++++++++-
lib/xe/xe_ioctl.h | 3 ++-
tests/intel/xe_exec_reset.c | 8 ++++----
tests/intel/xe_gt_freq.c | 2 +-
tests/intel/xe_wedged.c | 2 +-
6 files changed, 23 insertions(+), 9 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v3 1/2] lib/xe: Add sync and async xe_force_gt_reset options 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt @ 2024-06-05 17:10 ` Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Jonathan Cavitt @ 2024-06-05 17:10 UTC (permalink / raw) To: igt-dev Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost, john.c.harrison, stuart.summers Add a new xe_force_gt_reset function, xe_force_gt_reset_sync, renaming the original xe_force_gt_reset to xe_force_gt_reset_async. This allows the user to decide whether or not they want to initiate a synchronous or asynchronous gt reset. The asynchronous reset function was otherwise unchanged, but the synchronous reset function operates by calling a new debugfs function. For now, default to using the asynchronous version for all current use cases. Suggested-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> CC: John Harrison <john.c.harrison@intel.com> CC: Stuart Summers <stuart.summers@intel.com> --- lib/xe/xe_gt.c | 2 +- lib/xe/xe_ioctl.c | 15 ++++++++++++++- lib/xe/xe_ioctl.h | 3 ++- tests/intel/xe_exec_reset.c | 8 ++++---- tests/intel/xe_gt_freq.c | 2 +- tests/intel/xe_wedged.c | 2 +- 6 files changed, 23 insertions(+), 9 deletions(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 743d7a26ec..36e8fde363 100644 --- a/lib/xe/xe_gt.c +++ b/lib/xe/xe_gt.c @@ -69,7 +69,7 @@ void xe_force_gt_reset_all(int xe_fd) int gt; xe_for_each_gt(xe_fd, gt) - xe_force_gt_reset(xe_fd, gt); + xe_force_gt_reset_async(xe_fd, gt); } /** diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 934c877ebc..71fd90c71f 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -529,7 +529,7 @@ int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, return timeout; } -void xe_force_gt_reset(int fd, int gt) +void xe_force_gt_reset_async(int fd, int gt) { char reset_string[128]; struct stat st; @@ -541,3 +541,16 @@ void xe_force_gt_reset(int fd, int gt) minor(st.st_rdev), gt); system(reset_string); } + +void xe_force_gt_reset_sync(int fd, int gt) +{ + char reset_string[128]; + struct stat st; + + igt_assert_eq(fstat(fd, &st), 0); + + snprintf(reset_string, sizeof(reset_string), + "cat /sys/kernel/debug/dri/%d/gt%d/force_reset_sync", + minor(st.st_rdev), gt); + system(reset_string); +} diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 4d08402e0b..b27c0053f0 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -91,6 +91,7 @@ int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, uint32_t exec_queue, int64_t *timeout); int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, uint32_t exec_queue, int64_t timeout); -void xe_force_gt_reset(int fd, int gt); +void xe_force_gt_reset_async(int fd, int gt); +void xe_force_gt_reset_sync(int fd, int gt); #endif /* XE_IOCTL_H */ diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index e47c3730dd..05d63c0ba5 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -239,7 +239,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs, } if (flags & GT_RESET) - xe_force_gt_reset(fd, gt); + xe_force_gt_reset_async(fd, gt); if (flags & CLOSE_FD) { if (flags & CLOSE_EXEC_QUEUES) { @@ -383,7 +383,7 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, } if (flags & GT_RESET) - xe_force_gt_reset(fd, eci->gt_id); + xe_force_gt_reset_async(fd, eci->gt_id); if (flags & CLOSE_FD) { if (flags & CLOSE_EXEC_QUEUES) { @@ -530,7 +530,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, } if (flags & GT_RESET) - xe_force_gt_reset(fd, eci->gt_id); + xe_force_gt_reset_async(fd, eci->gt_id); if (flags & CLOSE_FD) { if (flags & CLOSE_EXEC_QUEUES) { @@ -590,7 +590,7 @@ static void do_resets(struct gt_thread_data *t) while (!*(t->exit)) { usleep(250000); /* 250 ms */ (*t->num_reset)++; - xe_force_gt_reset(t->fd, t->gt); + xe_force_gt_reset_async(t->fd, t->gt); } } diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index ff99b46a08..d2e4d1a09c 100644 --- a/tests/intel/xe_gt_freq.c +++ b/tests/intel/xe_gt_freq.c @@ -324,7 +324,7 @@ static void test_reset(int fd, int gt_id, int cycles) igt_assert_f(get_freq(fd, gt_id, "cur") == rpn, "Failed after %d good cycles\n", i); - xe_force_gt_reset(fd, gt_id); + xe_force_gt_reset_async(fd, gt_id); igt_assert_f(get_freq(fd, gt_id, "min") == rpn, "Failed after %d good cycles\n", i); diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index aa4a452bfc..a4fc53869e 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -31,7 +31,7 @@ static void force_wedged(int fd) igt_debugfs_write(fd, "fail_gt_reset/probability", "100"); igt_debugfs_write(fd, "fail_gt_reset/times", "2"); - xe_force_gt_reset(fd, 0); + xe_force_gt_reset_async(fd, 0); sleep(1); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v3 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 1/2] lib/xe: Add sync and async xe_force_gt_reset options Jonathan Cavitt @ 2024-06-05 17:10 ` Jonathan Cavitt 2024-06-05 18:32 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Jonathan Cavitt @ 2024-06-05 17:10 UTC (permalink / raw) To: igt-dev Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost, john.c.harrison, stuart.summers The cm-gt-reset test has the potential to race with itself on the gt reset, so force the gt reset to be synchronous here. The race condition occurs because the test does not have a fencing mechanism (I.E. dma-fence) to protect against this race, unlike in the gt-reset test case, for example. Suggested-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> CC: John Harrison <john.c.harrison@intel.com> CC: Stuart Summers <stuart.summers@intel.com> --- tests/intel/xe_exec_reset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index 05d63c0ba5..817b82cdef 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -530,7 +530,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, } if (flags & GT_RESET) - xe_force_gt_reset_async(fd, eci->gt_id); + xe_force_gt_reset_sync(fd, eci->gt_id); if (flags & CLOSE_FD) { if (flags & CLOSE_EXEC_QUEUES) { -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed (rev3) 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 1/2] lib/xe: Add sync and async xe_force_gt_reset options Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt @ 2024-06-05 18:32 ` Patchwork 2024-06-05 18:36 ` ✗ Fi.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-05 18:32 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 871 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed (rev3) URL : https://patchwork.freedesktop.org/series/134509/ State : success == Summary == CI Bug Log - changes from XEIGT_7879_BAT -> XEIGTPW_11225_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7879 -> IGTPW_11225 IGTPW_11225: 11225 IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1405-a494545483635d3d93d19e8f483f61e7d4198383: a494545483635d3d93d19e8f483f61e7d4198383 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/index.html [-- Attachment #2: Type: text/html, Size: 1416 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.BAT: failure for lib/xe: Use synchronous gt resets when needed (rev3) 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt ` (2 preceding siblings ...) 2024-06-05 18:32 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed (rev3) Patchwork @ 2024-06-05 18:36 ` Patchwork 2024-06-06 8:14 ` ✓ CI.xeFULL: success " Patchwork 2024-06-07 19:06 ` ✗ GitLab.Pipeline: warning " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-05 18:36 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4490 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed (rev3) URL : https://patchwork.freedesktop.org/series/134509/ State : failure == Summary == CI Bug Log - changes from IGT_7879 -> IGTPW_11225 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11225 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11225, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11225/index.html Participating hosts (34 -> 34) ------------------------------ Additional (4): fi-kbl-7567u bat-kbl-2 fi-elk-e7500 fi-bsw-n3050 Missing (4): bat-dg2-11 bat-jsl-1 fi-snb-2520m bat-arls-3 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11225: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await@vcs1: - bat-adls-6: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/bat-adls-6/igt@gem_exec_fence@basic-await@vcs1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/bat-adls-6/igt@gem_exec_fence@basic-await@vcs1.html * igt@i915_selftest@live@active: - fi-glk-j4005: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/fi-glk-j4005/igt@i915_selftest@live@active.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-glk-j4005/igt@i915_selftest@live@active.html Known issues ------------ Here are the changes found in IGTPW_11225 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][5] ([i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-7567u: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-8: [PASS][8] -> [FAIL][9] ([i915#10378]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][10] +39 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][11] +19 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-7567u: NOTRUN -> [SKIP][12] +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-kbl-7567u/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-elk-e7500: NOTRUN -> [SKIP][13] +24 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7879 -> IGTPW_11225 CI-20190529: 20190529 CI_DRM_14881: a494545483635d3d93d19e8f483f61e7d4198383 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11225: 11225 IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11225/index.html [-- Attachment #2: Type: text/html, Size: 5373 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeFULL: success for lib/xe: Use synchronous gt resets when needed (rev3) 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt ` (3 preceding siblings ...) 2024-06-05 18:36 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-06-06 8:14 ` Patchwork 2024-06-07 19:06 ` ✗ GitLab.Pipeline: warning " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-06 8:14 UTC (permalink / raw) To: Cavitt, Jonathan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36696 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed (rev3) URL : https://patchwork.freedesktop.org/series/134509/ State : success == Summary == CI Bug Log - changes from XEIGT_7879_full -> XEIGTPW_11225_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 2) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11225_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@flip-vs-suspend-interruptible: - {shard-lnl}: [FAIL][1] ([Intel XE#2028]) -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: - {shard-lnl}: [FAIL][3] ([Intel XE#1901]) -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - {shard-lnl}: [PASS][5] -> [FAIL][6] +2 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-4/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-2/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@xe_exec_threads@threads-hang-fd-userptr: - {shard-lnl}: [PASS][7] -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-7/igt@xe_exec_threads@threads-hang-fd-userptr.html * igt@xe_module_load@reload: - {shard-lnl}: NOTRUN -> [DMESG-WARN][9] +4 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-4/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-basic: - {shard-lnl}: NOTRUN -> [DMESG-FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-3/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s4-mocs: - {shard-lnl}: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-3/igt@xe_pm@s4-mocs.html New tests --------- New tests have been introduced between XEIGT_7879_full and XEIGTPW_11225_full: ### New IGT tests (1) ### * igt@kms_invalid_mode: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in XEIGTPW_11225_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#607]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#306]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#373]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#1214] / [Intel XE#282]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#323]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html * igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#651]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#616]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#653]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#653]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1127] / [Intel XE#1201]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1123] / [Intel XE#1201]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [PASS][30] -> [FAIL][31] ([Intel XE#1600]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][32] -> [TIMEOUT][33] ([Intel XE#1473]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_fault_mode@once-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#288]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@xe_exec_fault_mode@once-userptr-rebind.html * igt@xe_exec_threads@threads-bal-shared-vm-basic: - shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#1214] / [Intel XE#1638]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-434/igt@xe_exec_threads@threads-bal-shared-vm-basic.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-434/igt@xe_exec_threads@threads-bal-shared-vm-basic.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][37] ([Intel XE#1214]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#366]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html * igt@xe_query@multigpu-query-invalid-size: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#944]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html #### Possible fixes #### * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2-set2: [DMESG-WARN][40] ([Intel XE#282]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - {shard-lnl}: [FAIL][42] -> [PASS][43] +1 other test pass [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [INCOMPLETE][44] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_exec_basic@twice-bindexecqueue: - {shard-lnl}: [DMESG-WARN][46] -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-8/igt@xe_exec_basic@twice-bindexecqueue.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-7/igt@xe_exec_basic@twice-bindexecqueue.html * igt@xe_exec_reset@cm-gt-reset: - {shard-lnl}: [FAIL][48] ([Intel XE#1068]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-6/igt@xe_exec_reset@cm-gt-reset.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-4/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_gt_freq@freq_fixed_idle: - shard-dg2-set2: [SKIP][50] ([Intel XE#1201]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-463/igt@xe_gt_freq@freq_fixed_idle.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_pm@s4-basic: - {shard-lnl}: [ABORT][52] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-2/igt@xe_pm@s4-basic.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-4/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-vm-bind-prefetch: - {shard-lnl}: [ABORT][54] ([Intel XE#1794]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_vm@large-binds-2097152: - {shard-lnl}: [INCOMPLETE][56] ([Intel XE#1330]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-lnl-5/igt@xe_vm@large-binds-2097152.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-lnl-8/igt@xe_vm@large-binds-2097152.html #### Warnings #### * igt@kms_async_flips@test-cursor: - shard-dg2-set2: [DMESG-WARN][58] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][59] ([Intel XE#282]) +1 other test dmesg-warn [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-433/igt@kms_async_flips@test-cursor.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][60] ([Intel XE#316]) -> [SKIP][61] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][62] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][63] ([Intel XE#1124]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][64] ([Intel XE#1124]) -> [SKIP][65] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][66] ([Intel XE#367]) -> [SKIP][67] ([Intel XE#1201] / [Intel XE#367]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][68] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][69] ([Intel XE#367]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][70] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][71] ([Intel XE#1252]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][72] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][73] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][74] ([Intel XE#787]) -> [SKIP][75] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][76] ([Intel XE#1252]) -> [SKIP][77] ([Intel XE#1201] / [Intel XE#1252]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][78] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][79] ([Intel XE#306]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg2-set2: [SKIP][80] ([Intel XE#373]) -> [SKIP][81] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: [SKIP][82] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][83] ([Intel XE#373]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@mei-interface: - shard-dg2-set2: [SKIP][84] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][85] ([Intel XE#1201]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-463/igt@kms_content_protection@mei-interface.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-434/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][86] ([Intel XE#308]) -> [SKIP][87] ([Intel XE#1201] / [Intel XE#308]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-dg2-set2: [DMESG-WARN][88] ([Intel XE#282]) -> [DMESG-WARN][89] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][90] ([Intel XE#455]) -> [SKIP][91] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][92] ([Intel XE#776]) -> [SKIP][93] ([Intel XE#1201] / [Intel XE#776]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_fbcon_fbt@psr.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][94] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][95] ([Intel XE#1162]) +1 other test dmesg-warn [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-433/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][96] ([Intel XE#651]) -> [SKIP][97] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][98] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][99] ([Intel XE#651]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][100] ([Intel XE#653]) -> [SKIP][101] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][102] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][103] ([Intel XE#653]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: [FAIL][104] ([Intel XE#616]) -> [DMESG-FAIL][105] ([Intel XE#1162]) +1 other test dmesg-fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][106] ([Intel XE#929]) -> [SKIP][107] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_psr@fbc-pr-no-drrs.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][108] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][109] ([Intel XE#929]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][110] ([Intel XE#1149]) -> [SKIP][111] ([Intel XE#1149] / [Intel XE#1201]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][112] ([Intel XE#327]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#327]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][115] ([Intel XE#327]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-90.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2-set2: [SKIP][116] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][117] ([Intel XE#455]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-464/igt@kms_setmode@invalid-clone-exclusive-crtc.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][118] ([Intel XE#330]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#330]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][121] ([Intel XE#756]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: [SKIP][122] ([Intel XE#756]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#756]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-436/igt@kms_writeback@writeback-invalid-parameters.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][124] ([Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][125] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_fault_mode@many-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][127] ([Intel XE#288]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][128] ([Intel XE#288]) -> [SKIP][129] ([Intel XE#1201] / [Intel XE#288]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][130] ([Intel XE#944]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#944]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7879/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/shard-dg2-463/igt@xe_query@multigpu-query-mem-usage.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901 [Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924 [Intel XE#2009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2009 [Intel XE#2016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2016 [Intel XE#2022]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2022 [Intel XE#2023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2023 [Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7879 -> IGTPW_11225 IGTPW_11225: 11225 IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1405-a494545483635d3d93d19e8f483f61e7d4198383: a494545483635d3d93d19e8f483f61e7d4198383 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11225/index.html [-- Attachment #2: Type: text/html, Size: 43482 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ GitLab.Pipeline: warning for lib/xe: Use synchronous gt resets when needed (rev3) 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt ` (4 preceding siblings ...) 2024-06-06 8:14 ` ✓ CI.xeFULL: success " Patchwork @ 2024-06-07 19:06 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-07 19:06 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev == Series Details == Series: lib/xe: Use synchronous gt resets when needed (rev3) URL : https://patchwork.freedesktop.org/series/134509/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1194190 for the overview. build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/59523873): [429/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_tglgt2.c.o'. [430/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_adl.c.o'. [431/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_rkl.c.o'. [432/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_cnl.c.o'. [433/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_dg1.c.o'. [434/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_tglgt1.c.o'. [435/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_icl.c.o'. [436/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_rkl.c.o'. [437/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_tglgt2.c.o'. [438/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_adl.c.o'. [439/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_mtlgt2.c.o'. [440/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_metrics_dg1.c.o'. [441/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/meson-generated_.._i915_perf_registers_acmgt1.c.o'. [442/1807] Compiling C object 'lib/76b5a35@@i915_perf@sha/i915_perf_data_reader.c.o'. section_end:1717611132:step_script section_start:1717611132:cleanup_file_variables Cleaning up project directory and file based variables section_end:1717611134:cleanup_file_variables ERROR: Job failed: exit code 137 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1194190 ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-07 19:06 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-05 17:10 [PATCH i-g-t v3 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 1/2] lib/xe: Add sync and async xe_force_gt_reset options Jonathan Cavitt 2024-06-05 17:10 ` [PATCH i-g-t v3 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt 2024-06-05 18:32 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed (rev3) Patchwork 2024-06-05 18:36 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-06-06 8:14 ` ✓ CI.xeFULL: success " Patchwork 2024-06-07 19:06 ` ✗ GitLab.Pipeline: warning " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox