* [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed
@ 2024-06-05 15:12 Jonathan Cavitt
2024-06-05 15:12 ` [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset Jonathan Cavitt
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-06-05 15:12 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost, john.c.harrison,
stuart.summers
Add a tag to xe_force_gt_reset that allows the user to decide whether or
not they want the reset to be synchronous or not. This is done by
having the sys call target a new synchronous reset function when the tag
is set to true.
The new tag will be set to false by default, but the test
xe_exec_reset@cm-gt-reset will want this to be set to true because it
lacks a blocking mechanism on the reset and may race with itself
otherwise.
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 tag to xe_force_gt_reset
test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets
lib/xe/xe_gt.c | 2 +-
lib/xe/xe_ioctl.c | 6 +++---
lib/xe/xe_ioctl.h | 2 +-
tests/intel/xe_exec_reset.c | 8 ++++----
tests/intel/xe_gt_freq.c | 2 +-
tests/intel/xe_wedged.c | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt @ 2024-06-05 15:12 ` Jonathan Cavitt 2024-06-05 16:26 ` Matthew Brost 2024-06-05 15:12 ` [PATCH i-g-t 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Jonathan Cavitt @ 2024-06-05 15:12 UTC (permalink / raw) To: igt-dev Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost, john.c.harrison, stuart.summers Add a tag to xe_force_gt_reset that allows the user to decide whether or not they want the reset to be synchronous or not. This is done by having the sys call target a new synchronous reset function when the tag is set to true. For now, default the tag to false for all current use cases of xe_force_gt_reset. 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 | 6 +++--- lib/xe/xe_ioctl.h | 2 +- tests/intel/xe_exec_reset.c | 8 ++++---- tests/intel/xe_gt_freq.c | 2 +- tests/intel/xe_wedged.c | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c index 743d7a26ec..36beb596b5 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(xe_fd, gt, false); } /** diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 934c877ebc..a44b65e4ff 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(int fd, int gt, bool sync) { char reset_string[128]; struct stat st; @@ -537,7 +537,7 @@ void xe_force_gt_reset(int fd, int gt) igt_assert_eq(fstat(fd, &st), 0); snprintf(reset_string, sizeof(reset_string), - "cat /sys/kernel/debug/dri/%d/gt%d/force_reset", - minor(st.st_rdev), gt); + "cat /sys/kernel/debug/dri/%d/gt%d/force_reset%s", + minor(st.st_rdev), gt, sync ? "_sync" : ""); system(reset_string); } diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 4d08402e0b..ff5b5d3ed0 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -91,6 +91,6 @@ 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(int fd, int gt, bool sync); #endif /* XE_IOCTL_H */ diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index e47c3730dd..ed67284800 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(fd, gt, false); 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(fd, eci->gt_id, false); 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(fd, eci->gt_id, false); 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(t->fd, t->gt, false); } } diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index ff99b46a08..1cfc248947 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(fd, gt_id, false); 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..4f772a0e10 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(fd, 0, false); sleep(1); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset 2024-06-05 15:12 ` [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset Jonathan Cavitt @ 2024-06-05 16:26 ` Matthew Brost 0 siblings, 0 replies; 7+ messages in thread From: Matthew Brost @ 2024-06-05 16:26 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev, saurabhg.gupta, john.c.harrison, stuart.summers On Wed, Jun 05, 2024 at 08:12:47AM -0700, Jonathan Cavitt wrote: > Add a tag to xe_force_gt_reset that allows the user to decide whether or > not they want the reset to be synchronous or not. This is done by > having the sys call target a new synchronous reset function when the tag > is set to true. > > For now, default the tag to false for all current use cases of > xe_force_gt_reset. > > 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 | 6 +++--- > lib/xe/xe_ioctl.h | 2 +- > tests/intel/xe_exec_reset.c | 8 ++++---- > tests/intel/xe_gt_freq.c | 2 +- > tests/intel/xe_wedged.c | 2 +- > 6 files changed, 11 insertions(+), 11 deletions(-) > > diff --git a/lib/xe/xe_gt.c b/lib/xe/xe_gt.c > index 743d7a26ec..36beb596b5 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(xe_fd, gt, false); Kinda a nit but I think I'd rather see two functions: xe_force_gt_reset_async() xe_force_gt_reset_sync() Which call the internal function xe_force_gt_reset with correct true / false sync argument. This just self documentations IGT the code better. i.e. It is not obvious for look at 'xe_force_gt_reset(..., false)' is an async reset while 'xe_force_gt_reset_async' it is. Another option would be make the last argument a 'int flags' and define RESET_ASYNC / RESET_SYNC flags. Again this better at self documenting compared a true / false argument which doesn't immediately mean anything (i.e. requires some to go look at 'xe_force_gt_reset' to figure out what that argument means). Matt > } > > /** > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c > index 934c877ebc..a44b65e4ff 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(int fd, int gt, bool sync) > { > char reset_string[128]; > struct stat st; > @@ -537,7 +537,7 @@ void xe_force_gt_reset(int fd, int gt) > igt_assert_eq(fstat(fd, &st), 0); > > snprintf(reset_string, sizeof(reset_string), > - "cat /sys/kernel/debug/dri/%d/gt%d/force_reset", > - minor(st.st_rdev), gt); > + "cat /sys/kernel/debug/dri/%d/gt%d/force_reset%s", > + minor(st.st_rdev), gt, sync ? "_sync" : ""); > system(reset_string); > } > diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h > index 4d08402e0b..ff5b5d3ed0 100644 > --- a/lib/xe/xe_ioctl.h > +++ b/lib/xe/xe_ioctl.h > @@ -91,6 +91,6 @@ 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(int fd, int gt, bool sync); > > #endif /* XE_IOCTL_H */ > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c > index e47c3730dd..ed67284800 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(fd, gt, false); > > 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(fd, eci->gt_id, false); > > 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(fd, eci->gt_id, false); > > 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(t->fd, t->gt, false); > } > } > > diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c > index ff99b46a08..1cfc248947 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(fd, gt_id, false); > > 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..4f772a0e10 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(fd, 0, false); > sleep(1); > } > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 15:12 ` [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset Jonathan Cavitt @ 2024-06-05 15:12 ` Jonathan Cavitt 2024-06-05 17:02 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Jonathan Cavitt @ 2024-06-05 15:12 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 ed67284800..5a5ce32837 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(fd, eci->gt_id, false); + xe_force_gt_reset(fd, eci->gt_id, true); 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 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 15:12 ` [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset Jonathan Cavitt 2024-06-05 15:12 ` [PATCH i-g-t 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt @ 2024-06-05 17:02 ` Patchwork 2024-06-05 17:10 ` ✓ Fi.CI.BAT: " Patchwork 2024-06-05 22:57 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-05 17:02 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 858 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed URL : https://patchwork.freedesktop.org/series/134509/ State : success == Summary == CI Bug Log - changes from XEIGT_7879_BAT -> XEIGTPW_11223_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 4) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_7879 -> IGTPW_11223 IGTPW_11223: 11223 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_11223/index.html [-- Attachment #2: Type: text/html, Size: 1403 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for lib/xe: Use synchronous gt resets when needed 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt ` (2 preceding siblings ...) 2024-06-05 17:02 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed Patchwork @ 2024-06-05 17:10 ` Patchwork 2024-06-05 22:57 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-05 17:10 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7188 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed URL : https://patchwork.freedesktop.org/series/134509/ State : success == Summary == CI Bug Log - changes from IGT_7879 -> IGTPW_11223 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/index.html Participating hosts (34 -> 36) ------------------------------ Additional (4): fi-kbl-7567u bat-dg1-7 bat-kbl-2 fi-elk-e7500 Missing (2): bat-dg2-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11223 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][3] +39 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - fi-kbl-7567u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@gem_mmap@basic.html * igt@gem_tiled_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][9] ([i915#4215]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4212]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#4103] / [i915#4213]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-kbl-7567u: NOTRUN -> [SKIP][12] +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-7: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#433]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - fi-elk-e7500: NOTRUN -> [SKIP][16] +24 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@basic-brightness: - bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#5354]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#3708]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/bat-dg1-7/igt@prime_vgem@basic-fence-read.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7879 -> IGTPW_11223 CI-20190529: 20190529 CI_DRM_14881: a494545483635d3d93d19e8f483f61e7d4198383 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11223: 11223 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_11223/index.html [-- Attachment #2: Type: text/html, Size: 8506 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/xe: Use synchronous gt resets when needed 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt ` (3 preceding siblings ...) 2024-06-05 17:10 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-06-05 22:57 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-06-05 22:57 UTC (permalink / raw) To: Cavitt, Jonathan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100265 bytes --] == Series Details == Series: lib/xe: Use synchronous gt resets when needed URL : https://patchwork.freedesktop.org/series/134509/ State : failure == Summary == CI Bug Log - changes from IGT_7879_full -> IGTPW_11223_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11223_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11223_full, 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_11223/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11223_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][1] +4 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][2] +12 other tests fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html Known issues ------------ Here are the changes found in IGTPW_11223_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][6] ([i915#10380]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +7 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +12 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4873]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb4/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#6344]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#6344]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk4/igt@gem_exec_capture@many-4k-incremental.html - shard-tglu: NOTRUN -> [FAIL][33] ([i915#9606]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-4/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][36] ([i915#2842]) +4 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +14 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices@lmem0: - shard-dg1: NOTRUN -> [FAIL][50] ([i915#11269]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_exec_suspend@basic-s3-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html - shard-dg2: [PASS][56] -> [FAIL][57] ([i915#10378]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][58] ([i915#10378]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +16 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk3/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][79] +311 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@gem_set_tiling_vs_gtt.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][85] ([i915#5889]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3281] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-1/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-dg1: NOTRUN -> [FAIL][94] ([i915#10177]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#6227]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][101] -> [INCOMPLETE][102] ([i915#9849]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][103] -> [ABORT][104] ([i915#10131] / [i915#9820]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8436]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: NOTRUN -> [FAIL][106] ([i915#10314]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6621]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#8925]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#4387]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6245]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6188]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#5723]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: NOTRUN -> [FAIL][115] ([i915#10031]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-dg2: NOTRUN -> [FAIL][116] ([i915#10031]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#5190]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#4212]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#3826]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#8709]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#6228]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#9531]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][129] -> [DMESG-FAIL][130] ([i915#2017]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +10 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#10656]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@basic-force-joiner: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10656]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#10656]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_big_joiner@invalid-modeset.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#10656]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10278]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +15 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +23 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +73 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#10278]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +83 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +168 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3742]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3742]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#4087]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +15 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7828]) +11 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7118] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3299]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555]) +12 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3359]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-snb: NOTRUN -> [SKIP][167] +40 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3359]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][173] +53 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9067]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9067]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9227]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9723]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#9723]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9833]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#8812]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840] / [i915#9053]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3840] / [i915#9053]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3955]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4854]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9337]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][200] -> [FAIL][201] ([i915#2122]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8381]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][206] ([i915#10545]) +5 other tests fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][213] -> [FAIL][214] ([i915#6880]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5354]) +29 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5439]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#5439]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3023]) +28 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][219] +62 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +19 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#10055]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9766]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +16 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#8708]) +25 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +47 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3458]) +18 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3458]) +25 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#6118]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#6301]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][236] ([i915#7862]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9809]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#6953]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][239] ([i915#6953] / [i915#9423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][240] ([i915#8292]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9423]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9423]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9423]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9423]) +11 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#5176] / [i915#9423]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#5235]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#5235]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#5235]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#5235]) +11 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#5354]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#5354]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9685]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][255] -> [SKIP][256] ([i915#9519]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#9519]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#9519]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#9519]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9519]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9519]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#6524]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#6524]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#6524] / [i915#6805]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][266] +16 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9808]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4348]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#9683]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-15/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9683]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9688]) +8 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +28 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +9 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-8/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +14 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +31 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#9685]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#4235]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#4235]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#5289]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][281] ([i915#5289]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#5190]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#4235] / [i915#5190]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#3555]) +13 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#3555]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8809]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][287] ([IGT#2] / [i915#6493]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10959]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [PASS][289] -> [FAIL][290] ([i915#9196]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][291] ([i915#10305]) +1 other test fail [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9906]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9906]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#2437] / [i915#9412]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2437] / [i915#9412]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#2437] / [i915#9412]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#2437]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#2437] / [i915#9412]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@blocking@0-rcs0: - shard-dg1: [PASS][299] -> [FAIL][300] ([i915#10538]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg1-18/igt@perf@blocking@0-rcs0.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@perf@blocking@0-rcs0.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][301] +12 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2433]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][303] -> [FAIL][304] ([i915#4349]) +3 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#8516]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#3708]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#3708] / [i915#4077]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#3708]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][309] +41 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-6/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9917]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][311] ([i915#9917]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#9917]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][313] ([i915#9781]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][314] ([i915#9781]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][315] ([i915#9779]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][316] ([i915#9779]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-7/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#4818]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#4818]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#2575]) +18 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#2575]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-6/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#2575]) +11 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#7711]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#7711]) +5 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@vc4/vc4_wait_bo@bad-pad.html - shard-rkl: NOTRUN -> [SKIP][324] ([i915#7711]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@vc4/vc4_wait_bo@bad-pad.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#7711]) +11 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-14/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#2575]) +7 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][327] ([i915#7742]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][329] ([i915#9364]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@syncobj-timeline-invalid-wait: - shard-snb: [ABORT][333] -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-snb6/igt@gem_exec_fence@syncobj-timeline-invalid-wait.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb2/igt@gem_exec_fence@syncobj-timeline-invalid-wait.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-dg2: [INCOMPLETE][335] ([i915#9857]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-8/igt@gem_exec_whisper@basic-fds-priority-all.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [FAIL][337] ([i915#10378]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [INCOMPLETE][339] ([i915#8797]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-tglu-10/igt@gem_workarounds@suspend-resume-fd.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-tglu-9/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_hangman@gt-engine-error@vecs0: - shard-dg1: [INCOMPLETE][341] -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg1-18/igt@i915_hangman@gt-engine-error@vecs0.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-18/igt@i915_hangman@gt-engine-error@vecs0.html - shard-mtlp: [INCOMPLETE][343] -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-mtlp-7/igt@i915_hangman@gt-engine-error@vecs0.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][345] ([i915#9697] / [i915#9820]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][347] ([i915#10031]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][349] ([i915#5138]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [SKIP][351] -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][353] ([i915#9519]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][355] ([i915#9519]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][357] ([IGT#2]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-6/igt@kms_sysfs_edid_timing.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_sysfs_edid_timing.html #### Warnings #### * igt@gem_eio@kms: - shard-dg1: [INCOMPLETE][359] ([i915#10513] / [i915#1982]) -> [INCOMPLETE][360] ([i915#10513]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg1-17/igt@gem_eio@kms.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg1-16/igt@gem_eio@kms.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][361] ([i915#7118] / [i915#9424]) -> [SKIP][362] ([i915#7118] / [i915#7162] / [i915#9424]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-3/igt@kms_content_protection@type1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][363] ([i915#10433] / [i915#3458]) -> [SKIP][364] ([i915#3458]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][365] ([i915#4816]) -> [SKIP][366] ([i915#4070] / [i915#4816]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@deep-pkgc: - shard-rkl: [SKIP][367] ([i915#3361]) -> [SKIP][368] ([i915#3828]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-rkl-4/igt@kms_pm_dc@deep-pkgc.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2: [SKIP][369] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][370] ([i915#1072] / [i915#9732]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-11/igt@kms_psr@fbc-pr-cursor-render.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-7/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: [SKIP][371] ([i915#1072] / [i915#9732]) -> [SKIP][372] ([i915#1072] / [i915#9673] / [i915#9732]) +12 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][373] ([i915#9100]) -> [FAIL][374] ([i915#7484]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7879/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10177 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10305 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10314 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11269 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5889]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11223/index.html [-- Attachment #2: Type: text/html, Size: 124443 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-05 22:57 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-05 15:12 [PATCH i-g-t 0/2] lib/xe: Use synchronous gt resets when needed Jonathan Cavitt 2024-06-05 15:12 ` [PATCH i-g-t 1/2] lib/xe: Add sync tag to xe_force_gt_reset Jonathan Cavitt 2024-06-05 16:26 ` Matthew Brost 2024-06-05 15:12 ` [PATCH i-g-t 2/2] test/intel/xe_exec_reset: Synchronize cm-gt-reset gt resets Jonathan Cavitt 2024-06-05 17:02 ` ✓ CI.xeBAT: success for lib/xe: Use synchronous gt resets when needed Patchwork 2024-06-05 17:10 ` ✓ Fi.CI.BAT: " Patchwork 2024-06-05 22:57 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox