* [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset
@ 2023-12-01 21:00 Brian Welty
2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() Brian Welty
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Brian Welty @ 2023-12-01 21:00 UTC (permalink / raw)
To: igt-dev
Introduce _xe_wait_ufence() and use in xe_exec_reset.
Brian Welty (2):
lib/xe_ioctl: Add _xe_wait_ufence()
tests/xe/exec_reset: Fix cm-gt-reset
lib/xe/xe_ioctl.c | 22 ++++++++++++++++------
lib/xe/xe_ioctl.h | 3 +++
tests/intel/xe_exec_reset.c | 11 ++++++++---
3 files changed, 27 insertions(+), 9 deletions(-)
--
2.38.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty @ 2023-12-01 21:00 ` Brian Welty 2023-12-04 13:09 ` Kamil Konieczny 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset Brian Welty ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Brian Welty @ 2023-12-01 21:00 UTC (permalink / raw) To: igt-dev xe_wait_ufence is expected to fail if GPU hangs or is reset. We need a version of calling XE_WAIT_USER_FENCE without the assertion that it won't expire (timeout), for use with IGTs that intentionally cause hangs or reset. Signed-off-by: Brian Welty <brian.welty@intel.com> --- lib/xe/xe_ioctl.c | 22 ++++++++++++++++------ lib/xe/xe_ioctl.h | 3 +++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index a5fe7dd792..b9828fc49f 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -446,9 +446,9 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) syncobj_destroy(fd, sync.handle); } -int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, - struct drm_xe_engine_class_instance *eci, - int64_t timeout) +int _xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, + struct drm_xe_engine_class_instance *eci, + int64_t *timeout) { struct drm_xe_wait_user_fence wait = { .addr = to_user_pointer(addr), @@ -456,14 +456,24 @@ int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, .flags = !eci ? DRM_XE_UFENCE_WAIT_FLAG_SOFT_OP : 0, .value = value, .mask = DRM_XE_UFENCE_WAIT_MASK_U64, - .timeout = timeout, + .timeout = *timeout, .num_engines = eci ? 1 :0, .instances = eci ? to_user_pointer(eci) : 0, }; - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0); + if (igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait)) + return -errno; - return wait.timeout; + *timeout = wait.timeout; + return 0; +} + +int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, + struct drm_xe_engine_class_instance *eci, + int64_t timeout) +{ + igt_assert_eq(_xe_wait_ufence(fd, addr, value, eci, &timeout), 0); + return timeout; } /** diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 6d91d3e8e6..7476a62c81 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -88,6 +88,9 @@ void xe_exec(int fd, struct drm_xe_exec *exec); void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, struct drm_xe_sync *sync, uint32_t num_syncs); void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr); +int _xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, + struct drm_xe_engine_class_instance *eci, + int64_t *timeout); int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, struct drm_xe_engine_class_instance *eci, int64_t timeout); -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() Brian Welty @ 2023-12-04 13:09 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-12-04 13:09 UTC (permalink / raw) To: igt-dev Hi Brian, On 2023-12-01 at 13:00:12 -0800, Brian Welty wrote: > xe_wait_ufence is expected to fail if GPU hangs or is reset. We need > a version of calling XE_WAIT_USER_FENCE without the assertion that it > won't expire (timeout), for use with IGTs that intentionally cause > hangs or reset. > > Signed-off-by: Brian Welty <brian.welty@intel.com> +cc Fransois as he is preparing xe uAPI changes. > --- > lib/xe/xe_ioctl.c | 22 ++++++++++++++++------ > lib/xe/xe_ioctl.h | 3 +++ > 2 files changed, 19 insertions(+), 6 deletions(-) > > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c > index a5fe7dd792..b9828fc49f 100644 > --- a/lib/xe/xe_ioctl.c > +++ b/lib/xe/xe_ioctl.c > @@ -446,9 +446,9 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) > syncobj_destroy(fd, sync.handle); > } > > -int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > - struct drm_xe_engine_class_instance *eci, > - int64_t timeout) > +int _xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, ------ ^ Please use two underscores for non-assertiong igt function: int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > + struct drm_xe_engine_class_instance *eci, > + int64_t *timeout) > { > struct drm_xe_wait_user_fence wait = { > .addr = to_user_pointer(addr), > @@ -456,14 +456,24 @@ int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > .flags = !eci ? DRM_XE_UFENCE_WAIT_FLAG_SOFT_OP : 0, > .value = value, > .mask = DRM_XE_UFENCE_WAIT_MASK_U64, > - .timeout = timeout, > + .timeout = *timeout, Check for NULL, same way as eci is checked. Btw you may choose asserting for non-null timeout (instead of using zero or other value as default). Regards, Kamil > .num_engines = eci ? 1 :0, > .instances = eci ? to_user_pointer(eci) : 0, > }; > > - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0); > + if (igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait)) > + return -errno; > > - return wait.timeout; > + *timeout = wait.timeout; > + return 0; > +} > + > +int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > + struct drm_xe_engine_class_instance *eci, > + int64_t timeout) > +{ > + igt_assert_eq(_xe_wait_ufence(fd, addr, value, eci, &timeout), 0); > + return timeout; > } > > /** > diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h > index 6d91d3e8e6..7476a62c81 100644 > --- a/lib/xe/xe_ioctl.h > +++ b/lib/xe/xe_ioctl.h > @@ -88,6 +88,9 @@ void xe_exec(int fd, struct drm_xe_exec *exec); > void xe_exec_sync(int fd, uint32_t exec_queue, uint64_t addr, > struct drm_xe_sync *sync, uint32_t num_syncs); > void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr); > +int _xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > + struct drm_xe_engine_class_instance *eci, > + int64_t *timeout); > int64_t xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, > struct drm_xe_engine_class_instance *eci, > int64_t timeout); > -- > 2.38.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() Brian Welty @ 2023-12-01 21:00 ` Brian Welty 2023-12-04 3:30 ` Mishra, Pallavi 2023-12-01 22:11 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix xe_exec_reset@cm-gt-reset Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Brian Welty @ 2023-12-01 21:00 UTC (permalink / raw) To: igt-dev With use of GT_RESET and forcing GT reset, it is expected for the xe_wait_ufence to expire. Move the assertion checking into the IGT by using _xe_wait_ufence(). Signed-off-by: Brian Welty <brian.welty@intel.com> --- tests/intel/xe_exec_reset.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index 195e62911f..6fed0dd19e 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -612,9 +612,14 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, return; } - for (i = 1; i < n_execs; i++) - xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, - NULL, THREE_SEC); + for (i = 1; i < n_execs; i++) { + int64_t timeout = THREE_SEC; + int err; + + err = _xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, + NULL, &timeout); + igt_assert_eq(err, flags & GT_RESET ? -ETIME : 0); + } sync[0].addr = to_user_pointer(&data[0].vm_sync); xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset Brian Welty @ 2023-12-04 3:30 ` Mishra, Pallavi 0 siblings, 0 replies; 8+ messages in thread From: Mishra, Pallavi @ 2023-12-04 3:30 UTC (permalink / raw) To: Welty, Brian, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Welty, Brian <brian.welty@intel.com> > Sent: Friday, December 1, 2023 1:00 PM > To: igt-dev@lists.freedesktop.org > Cc: Mishra, Pallavi <pallavi.mishra@intel.com> > Subject: [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset > > With use of GT_RESET and forcing GT reset, it is expected for the > xe_wait_ufence to expire. Move the assertion checking into the IGT by using > _xe_wait_ufence(). > > Signed-off-by: Brian Welty <brian.welty@intel.com> > --- > tests/intel/xe_exec_reset.c | 11 ++++++++--- > 1 file changed, 8 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index > 195e62911f..6fed0dd19e 100644 > --- a/tests/intel/xe_exec_reset.c > +++ b/tests/intel/xe_exec_reset.c > @@ -612,9 +612,14 @@ test_compute_mode(int fd, struct > drm_xe_engine_class_instance *eci, > return; > } > > - for (i = 1; i < n_execs; i++) > - xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, > - NULL, THREE_SEC); > + for (i = 1; i < n_execs; i++) { > + int64_t timeout = THREE_SEC; > + int err; > + > + err = _xe_wait_ufence(fd, &data[i].exec_sync, > USER_FENCE_VALUE, > + NULL, &timeout); > + igt_assert_eq(err, flags & GT_RESET ? -ETIME : 0); > + } Similar condition for GT_RESET will be required for igt_assert_eq(data[i].data, 0xc0ffee); > > sync[0].addr = to_user_pointer(&data[0].vm_sync); > xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); > -- > 2.38.0 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Fix xe_exec_reset@cm-gt-reset 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() Brian Welty 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset Brian Welty @ 2023-12-01 22:11 ` Patchwork 2023-12-01 22:28 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-03 4:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 22:11 UTC (permalink / raw) To: Brian Welty; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 14975 bytes --] == Series Details == Series: Fix xe_exec_reset@cm-gt-reset URL : https://patchwork.freedesktop.org/series/127211/ State : success == Summary == CI Bug Log - changes from CI_DRM_13961 -> IGTPW_10323 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html Participating hosts (36 -> 37) ------------------------------ Additional (3): bat-kbl-2 bat-dg2-9 bat-dg1-5 Missing (2): bat-adlp-6 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10323 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-kbl-2/igt@fbdev@info.html * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: NOTRUN -> [INCOMPLETE][2] ([i915#9275]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-1: NOTRUN -> [INCOMPLETE][3] ([i915#9275]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +20 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@gem_mmap@basic.html - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4083]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][11] ([i915#4079]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@i915_pm_rps@basic-api.html - bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#6621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gem_contexts: - bat-atsm-1: [PASS][14] -> [INCOMPLETE][15] ([i915#9174]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-1: NOTRUN -> [FAIL][16] ([fdo#103375]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][18] ([i915#4212]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][20] ([i915#4215]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#4212]) +6 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#4212] / [i915#5608]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#4103] / [i915#4213]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg1-5: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-connector-state: - bat-dg1-7: [PASS][26] -> [ABORT][27] ([i915#9315]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-dg1-7/igt@kms_force_connector_basic@force-connector-state.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-7/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][28] ([fdo#109285]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-5: NOTRUN -> [SKIP][29] ([fdo#109285]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][30] ([i915#5274]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-5: NOTRUN -> [SKIP][31] ([i915#433]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_hdmi_inject@inject-audio.html - fi-kbl-guc: [PASS][32] -> [FAIL][33] ([IGT#3]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-adlp-11: NOTRUN -> [SKIP][34] ([i915#3546]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5: - bat-adlp-11: [PASS][35] -> [DMESG-FAIL][36] ([i915#6868]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-kbl-2: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#1845]) +14 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][38] ([i915#3555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-9: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#4098]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][40] ([i915#3708]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][41] ([i915#3708] / [i915#4077]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][42] ([i915#3708]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][43] ([i915#3708] / [i915#4077]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg1-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][44] ([i915#3291] / [i915#3708]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [INCOMPLETE][45] ([i915#9275]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][47] ([i915#5334]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [FAIL][49] ([fdo#103375]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][51] ([i915#8668]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html #### Warnings #### * igt@gem_lmem_swapping@basic: - bat-jsl-1: [INCOMPLETE][53] -> [SKIP][54] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-1/igt@gem_lmem_swapping@basic.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/bat-jsl-1/igt@gem_lmem_swapping@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9174]: https://gitlab.freedesktop.org/drm/intel/issues/9174 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9315]: https://gitlab.freedesktop.org/drm/intel/issues/9315 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10323 CI-20190529: 20190529 CI_DRM_13961: b663cf8fc774c07996684d82bf09df14a7a21688 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10323: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html [-- Attachment #2: Type: text/html, Size: 18156 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Fix xe_exec_reset@cm-gt-reset 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty ` (2 preceding siblings ...) 2023-12-01 22:11 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix xe_exec_reset@cm-gt-reset Patchwork @ 2023-12-01 22:28 ` Patchwork 2023-12-03 4:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 22:28 UTC (permalink / raw) To: Brian Welty; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2164 bytes --] == Series Details == Series: Fix xe_exec_reset@cm-gt-reset URL : https://patchwork.freedesktop.org/series/127211/ State : success == Summary == CI Bug Log - changes from XEIGT_7614_BAT -> XEIGTPW_10323_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_10323_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-7: [FAIL][1] ([i915#2346]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10323/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-FAIL][3] ([Intel XE#282] / [i915#2017]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10323/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7614 -> IGTPW_10323 * Linux: xe-544-a8b405ffc0326c79abf737389d99c290648f381d -> xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4 IGTPW_10323: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-544-a8b405ffc0326c79abf737389d99c290648f381d: a8b405ffc0326c79abf737389d99c290648f381d xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4: 38dc2e0d8c28a817f2c727402e2638f3ea2accb4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10323/index.html [-- Attachment #2: Type: text/html, Size: 2776 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Fix xe_exec_reset@cm-gt-reset 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty ` (3 preceding siblings ...) 2023-12-01 22:28 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-12-03 4:03 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-03 4:03 UTC (permalink / raw) To: Brian Welty; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 59344 bytes --] == Series Details == Series: Fix xe_exec_reset@cm-gt-reset URL : https://patchwork.freedesktop.org/series/127211/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13961_full -> IGTPW_10323_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10323_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10323_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_10323/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10323_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@i915_selftest@live@gem_contexts.html * igt@prime_vgem@sync@vecs0: - shard-mtlp: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-2/igt@prime_vgem@sync@vecs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@prime_vgem@sync@vecs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_concurrent@multi-plane-atomic-lowres@pipe-a-dp-4}: - shard-dg2: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_concurrent@multi-plane-atomic-lowres@pipe-a-dp-4.html Known issues ------------ Here are the changes found in IGTPW_10323_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-16/igt@drm_fdinfo@isolation@bcs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4873]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][16] -> [ABORT][17] ([i915#7975] / [i915#8213] / [i915#8398]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-8/igt@gem_eio@hibernate.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-10/igt@gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][18] ([i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg1: [PASS][19] -> [FAIL][20] ([i915#5784]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-14/igt@gem_eio@kms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@gem_exec_balancer@hog.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-14/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4537] / [i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][32] -> [INCOMPLETE][33] ([i915#9275]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@gem_lmem_swapping@massive-random.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4083]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4077]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@gem_mmap_gtt@close-race.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4077]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4083]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3282]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3282]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4270]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4270]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#8428]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3297]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3297] / [i915#4880]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3297] / [i915#4880]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3297]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3297]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledx_blits: - shard-dg1: NOTRUN -> [SKIP][53] ([fdo#109289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][54] ([fdo#109289]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#2856]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#2856]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#2527]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4881]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@i915_fb_tiling.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#6590]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8431]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#6621]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8925]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#8925]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8925]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4212]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4212]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4212]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][68] ([i915#8561]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_async_flips@crc@pipe-c-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][69] ([i915#8247]) +2 other tests fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3555] / [i915#4098]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#1769] / [i915#3555]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#1769] / [i915#3555]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][73] -> [FAIL][74] ([i915#3763] / [i915#5138]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4538] / [i915#5286]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][76] -> [FAIL][77] ([i915#5138]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][78] ([fdo#111615] / [i915#5286]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#111614]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#111614]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3638]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][83] -> [FAIL][84] ([i915#3743]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#111615]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111615]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-9/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][87] ([fdo#111615]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#6187]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4538]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5190]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4087] / [i915#7213]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4087]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#7828]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg1: NOTRUN -> [SKIP][94] ([fdo#111827]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#111827]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#7828]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#7828]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3555]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3299]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3299]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3299]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#7118]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3359]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3359]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3546]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#109274]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4103] / [i915#4213]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109274] / [i915#5354]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#4103]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#8812]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3840] / [i915#9688]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3469]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3637]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109274]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-snb: NOTRUN -> [SKIP][115] ([fdo#109271]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-snb2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#109274] / [i915#3637]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2672]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#2587] / [i915#2672]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2672]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2672] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2672] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5274]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#8708]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#8708]) +10 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][125] ([fdo#111825]) +21 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#109280]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#3458]) +14 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3458]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5354]) +15 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8708]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#1825]) +18 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#110189]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#8228]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8228]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#9457]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6301]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3582]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#8292]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][139] ([i915#8292]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#5176]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5176] / [i915#9423]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5235]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#5235]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5235]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#5235]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#6524] / [i915#6805]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#6524]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6524]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9683]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#9673] / [i915#9732]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4235]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4235]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4235] / [i915#5190]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#8623]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#8623]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109309]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [FAIL][157] ([i915#9196]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@flip-suspend: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-19/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2437]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#2437]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2436]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#7387]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#109289]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-8/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-2@vecs0: - shard-glk: [PASS][164] -> [DMESG-WARN][165] ([i915#118]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-glk7/igt@perf_pmu@busy-accuracy-2@vecs0.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-glk7/igt@perf_pmu@busy-accuracy-2@vecs0.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][166] -> [FAIL][167] ([i915#4349]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3708] / [i915#4077]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3291] / [i915#3708]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3708]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@sync@vcs1: - shard-mtlp: [PASS][171] -> [ABORT][172] ([i915#8875]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-2/igt@prime_vgem@sync@vcs1.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@prime_vgem@sync@vcs1.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#2575]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109315] / [i915#2575]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-3/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#2575]) +9 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2575]) +6 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#7711]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#7711]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7711]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][180] ([i915#5784]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-18/igt@gem_eio@unwedge-stress.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][182] ([i915#2842]) -> [PASS][183] +2 other tests pass [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][184] ([i915#5138]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][186] ([i915#3743]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-mtlp: [INCOMPLETE][188] -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][190] ([i915#2346]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][192] ([i915#6880]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][194] ([i915#8292]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][196] ([i915#9295]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - shard-snb: [FAIL][198] ([i915#9196]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][200] ([i915#9196]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg1: [FAIL][202] ([i915#4349]) -> [PASS][203] +3 other tests pass [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-mtlp: [FAIL][204] ([i915#4349]) -> [PASS][205] +2 other tests pass [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][206] -> [INCOMPLETE][207] ([i915#9408]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][208] ([i915#7118] / [i915#7162]) -> [SKIP][209] ([i915#7118]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-11/igt@kms_content_protection@type1.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-10/igt@kms_content_protection@type1.html * igt@kms_psr@psr2_cursor_plane_move: - shard-dg2: [SKIP][210] ([i915#9673] / [i915#9736]) -> [SKIP][211] ([i915#9673] / [i915#9732]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-6/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-dg2: [SKIP][212] ([i915#9673] / [i915#9732]) -> [SKIP][213] ([i915#9673]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-6/igt@kms_psr@psr2_primary_mmap_gtt.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr@psr2_sprite_render: - shard-dg2: [SKIP][214] ([i915#9673] / [i915#9732]) -> [SKIP][215] ([i915#9673] / [i915#9736]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-10/igt@kms_psr@psr2_sprite_render.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/shard-dg2-11/igt@kms_psr@psr2_sprite_render.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10323 CI-20190529: 20190529 CI_DRM_13961: b663cf8fc774c07996684d82bf09df14a7a21688 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10323: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10323/index.html [-- Attachment #2: Type: text/html, Size: 71377 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-12-04 13:09 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-01 21:00 [igt-dev] [PATCH i-g-t 0/2] Fix xe_exec_reset@cm-gt-reset Brian Welty 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 1/2] lib/xe_ioctl: Add _xe_wait_ufence() Brian Welty 2023-12-04 13:09 ` Kamil Konieczny 2023-12-01 21:00 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe/exec_reset: Fix cm-gt-reset Brian Welty 2023-12-04 3:30 ` Mishra, Pallavi 2023-12-01 22:11 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix xe_exec_reset@cm-gt-reset Patchwork 2023-12-01 22:28 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-03 4:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox