* [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size
@ 2023-09-14 17:23 Jonathan Cavitt
2023-09-14 17:23 ` [igt-dev] [PATCH i-g-t 1/1] " Jonathan Cavitt
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jonathan Cavitt @ 2023-09-14 17:23 UTC (permalink / raw)
To: igt-dev; +Cc: chris.p.wilson, jonathan.cavitt
Use the gem_context_get_param functionality to query the exact gtt size
for each vm in the intel_allocator. This replaces the fixed declaration
using the GEN8_GTT_ADDRESS_WIDTH.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Chris Wilson <chris.p.wilson@linux.intel.com>
Jonathan Cavitt (1):
lib/intel_allocator: Query exact gtt size
lib/intel_allocator.h | 11 +++++++++++
lib/intel_allocator_simple.c | 10 +++++-----
2 files changed, 16 insertions(+), 5 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] lib/intel_allocator: Query exact gtt size 2023-09-14 17:23 [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size Jonathan Cavitt @ 2023-09-14 17:23 ` Jonathan Cavitt 2023-09-18 7:39 ` Zbigniew Kempczyński 2023-09-14 18:48 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Jonathan Cavitt @ 2023-09-14 17:23 UTC (permalink / raw) To: igt-dev; +Cc: chris.p.wilson, jonathan.cavitt Use the gem_context_get_param functionality to query the exact gtt size for each vm in the intel_allocator. This replaces the fixed declaration using the GEN8_GTT_ADDRESS_WIDTH. Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Suggested-by: Chris Wilson <chris.p.wilson@linux.intel.com> --- lib/intel_allocator.h | 11 +++++++++++ lib/intel_allocator_simple.c | 10 +++++----- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/lib/intel_allocator.h b/lib/intel_allocator.h index f9ff7f1cc9..cfe20bf8aa 100644 --- a/lib/intel_allocator.h +++ b/lib/intel_allocator.h @@ -12,6 +12,7 @@ #include <stdint.h> #include <stdatomic.h> #include "i915/gem_submission.h" +#include "i915/gem_context.h" #include "intel_reg.h" /** @@ -275,6 +276,16 @@ static inline uint64_t get_offset(uint64_t ahnd, uint32_t handle, return intel_allocator_alloc(ahnd, handle, size, alignment); } +static inline uint64_t get_gtt_size(int fd) +{ + struct drm_i915_gem_context_param p = { + .param = I915_CONTEXT_PARAM_GTT_SIZE + }; + + gem_context_get_param(fd, &p); + return p.value; +} + static inline bool put_offset(uint64_t ahnd, uint32_t handle) { if (!ahnd) diff --git a/lib/intel_allocator_simple.c b/lib/intel_allocator_simple.c index 3d5e45870e..137885a88b 100644 --- a/lib/intel_allocator_simple.c +++ b/lib/intel_allocator_simple.c @@ -459,9 +459,9 @@ static bool intel_allocator_simple_is_allocated(struct intel_allocator *ial, return same; } -static uint64_t get_size(uint64_t start, uint64_t end) +static uint64_t get_size(int fd, uint64_t start, uint64_t end) { - end = end ? end : 1ull << GEN8_GTT_ADDRESS_WIDTH; + end = end ? end : get_gtt_size(fd); return end - start; } @@ -485,7 +485,7 @@ static bool intel_allocator_simple_reserve(struct intel_allocator *ial, start = DECANONICAL(start); end = DECANONICAL(end); igt_assert(end > start || end == 0); - size = get_size(start, end); + size = get_size(ial->fd, start, end); igt_assert(start + size <= ials->end); igt_assert(start >= ials->start); @@ -526,7 +526,7 @@ static bool intel_allocator_simple_unreserve(struct intel_allocator *ial, start = DECANONICAL(start); end = DECANONICAL(end); igt_assert(end > start || end == 0); - size = get_size(start, end); + size = get_size(ial->fd, start, end); entry = igt_map_search_entry(ials->reserved, &start); @@ -574,7 +574,7 @@ static bool intel_allocator_simple_is_reserved(struct intel_allocator *ial, start = DECANONICAL(start); end = DECANONICAL(end); igt_assert(end > start || end == 0); - size = get_size(start, end); + size = get_size(ial->fd, start, end); rec = igt_map_search(ials->reserved, &start); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/intel_allocator: Query exact gtt size 2023-09-14 17:23 ` [igt-dev] [PATCH i-g-t 1/1] " Jonathan Cavitt @ 2023-09-18 7:39 ` Zbigniew Kempczyński 0 siblings, 0 replies; 6+ messages in thread From: Zbigniew Kempczyński @ 2023-09-18 7:39 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev, chris.p.wilson On Thu, Sep 14, 2023 at 10:23:32AM -0700, Jonathan Cavitt wrote: > Use the gem_context_get_param functionality to query the exact gtt size > for each vm in the intel_allocator. This replaces the fixed declaration > using the GEN8_GTT_ADDRESS_WIDTH. > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > Suggested-by: Chris Wilson <chris.p.wilson@linux.intel.com> > --- > lib/intel_allocator.h | 11 +++++++++++ > lib/intel_allocator_simple.c | 10 +++++----- > 2 files changed, 16 insertions(+), 5 deletions(-) > > diff --git a/lib/intel_allocator.h b/lib/intel_allocator.h > index f9ff7f1cc9..cfe20bf8aa 100644 > --- a/lib/intel_allocator.h > +++ b/lib/intel_allocator.h > @@ -12,6 +12,7 @@ > #include <stdint.h> > #include <stdatomic.h> > #include "i915/gem_submission.h" > +#include "i915/gem_context.h" > #include "intel_reg.h" > > /** > @@ -275,6 +276,16 @@ static inline uint64_t get_offset(uint64_t ahnd, uint32_t handle, > return intel_allocator_alloc(ahnd, handle, size, alignment); > } > > +static inline uint64_t get_gtt_size(int fd) > +{ > + struct drm_i915_gem_context_param p = { > + .param = I915_CONTEXT_PARAM_GTT_SIZE > + }; > + > + gem_context_get_param(fd, &p); > + return p.value; > +} > + > static inline bool put_offset(uint64_t ahnd, uint32_t handle) > { > if (!ahnd) > diff --git a/lib/intel_allocator_simple.c b/lib/intel_allocator_simple.c > index 3d5e45870e..137885a88b 100644 > --- a/lib/intel_allocator_simple.c > +++ b/lib/intel_allocator_simple.c > @@ -459,9 +459,9 @@ static bool intel_allocator_simple_is_allocated(struct intel_allocator *ial, > return same; > } > > -static uint64_t get_size(uint64_t start, uint64_t end) > +static uint64_t get_size(int fd, uint64_t start, uint64_t end) > { > - end = end ? end : 1ull << GEN8_GTT_ADDRESS_WIDTH; > + end = end ? end : get_gtt_size(fd); Yes, this definitely requires rework to handle different vm address width. Take a look to CANONICAL() and DECANONICAL(). I've also noticed some instructions are not 57-bit (pvc) compatibile so it will be hard to make this generic. -- Zbigniew > > return end - start; > } > @@ -485,7 +485,7 @@ static bool intel_allocator_simple_reserve(struct intel_allocator *ial, > start = DECANONICAL(start); > end = DECANONICAL(end); > igt_assert(end > start || end == 0); > - size = get_size(start, end); > + size = get_size(ial->fd, start, end); > igt_assert(start + size <= ials->end); > igt_assert(start >= ials->start); > > @@ -526,7 +526,7 @@ static bool intel_allocator_simple_unreserve(struct intel_allocator *ial, > start = DECANONICAL(start); > end = DECANONICAL(end); > igt_assert(end > start || end == 0); > - size = get_size(start, end); > + size = get_size(ial->fd, start, end); > > entry = igt_map_search_entry(ials->reserved, &start); > > @@ -574,7 +574,7 @@ static bool intel_allocator_simple_is_reserved(struct intel_allocator *ial, > start = DECANONICAL(start); > end = DECANONICAL(end); > igt_assert(end > start || end == 0); > - size = get_size(start, end); > + size = get_size(ial->fd, start, end); > > rec = igt_map_search(ials->reserved, &start); > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for lib/intel_allocator: Query exact gtt size 2023-09-14 17:23 [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size Jonathan Cavitt 2023-09-14 17:23 ` [igt-dev] [PATCH i-g-t 1/1] " Jonathan Cavitt @ 2023-09-14 18:48 ` Patchwork 2023-09-14 18:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-09-15 0:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-14 18:48 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2646 bytes --] == Series Details == Series: lib/intel_allocator: Query exact gtt size URL : https://patchwork.freedesktop.org/series/123712/ State : failure == Summary == CI Bug Log - changes from XEIGT_7488_BAT -> XEIGTPW_9790_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9790_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9790_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9790_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_intel_bb@create-in-region: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] +20 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7488/bat-dg2-oem2/igt@xe_intel_bb@create-in-region.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9790/bat-dg2-oem2/igt@xe_intel_bb@create-in-region.html - bat-adlp-7: [PASS][3] -> [FAIL][4] +19 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7488/bat-adlp-7/igt@xe_intel_bb@create-in-region.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9790/bat-adlp-7/igt@xe_intel_bb@create-in-region.html * igt@xe_intel_bb@render@render-none-1024: - bat-atsm-2: [PASS][5] -> [FAIL][6] +20 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7488/bat-atsm-2/igt@xe_intel_bb@render@render-none-1024.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9790/bat-atsm-2/igt@xe_intel_bb@render@render-none-1024.html Known issues ------------ Here are the changes found in XEIGTPW_9790_BAT that come from known issues: ### IGT changes ### {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7488 -> IGTPW_9790 IGTPW_9790: 9790 IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-373-aeac46cfaebff413254ac07837b97370c7ed3957: aeac46cfaebff413254ac07837b97370c7ed3957 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9790/index.html [-- Attachment #2: Type: text/html, Size: 3229 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/intel_allocator: Query exact gtt size 2023-09-14 17:23 [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size Jonathan Cavitt 2023-09-14 17:23 ` [igt-dev] [PATCH i-g-t 1/1] " Jonathan Cavitt 2023-09-14 18:48 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork @ 2023-09-14 18:53 ` Patchwork 2023-09-15 0:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-14 18:53 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5823 bytes --] == Series Details == Series: lib/intel_allocator: Query exact gtt size URL : https://patchwork.freedesktop.org/series/123712/ State : success == Summary == CI Bug Log - changes from CI_DRM_13633 -> IGTPW_9790 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-adlp-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9790 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - bat-dg2-11: [PASS][1] -> [INCOMPLETE][2] ([i915#7913] / [i915#9253]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-dg2-11/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][4] -> [FAIL][5] ([IGT#3] / [i915#6121]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][6] ([i915#3546]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][8] ([i915#8841]) +6 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1072]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][10] ([i915#7911] / [i915#7913]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-dg2-9: [WARN][12] -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][14] ([i915#7952]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - {bat-dg2-13}: [DMESG-WARN][16] ([Intel XE#485]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [FAIL][18] ([i915#9276]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/fi-bsw-nick/igt@kms_frontbuffer_tracking@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 [Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9253]: https://gitlab.freedesktop.org/drm/intel/issues/9253 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7488 -> IGTPW_9790 CI-20190529: 20190529 CI_DRM_13633: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9790: 9790 IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/index.html [-- Attachment #2: Type: text/html, Size: 6848 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/intel_allocator: Query exact gtt size 2023-09-14 17:23 [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size Jonathan Cavitt ` (2 preceding siblings ...) 2023-09-14 18:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-09-15 0:51 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-15 0:51 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83674 bytes --] == Series Details == Series: lib/intel_allocator: Query exact gtt size URL : https://patchwork.freedesktop.org/series/123712/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13633_full -> IGTPW_9790_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9790_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9790_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9790/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_9790_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html Known issues ------------ Here are the changes found in IGTPW_9790_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy_test: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8661]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +10 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@busy@vcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@drm_fdinfo@busy@vcs0.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7697]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#4873]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@gem_caching@reads.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@gem_ctx_param@set-priority-not-supported.html - shard-dg2: NOTRUN -> [SKIP][15] ([fdo#109314]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb5/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][18] -> [ABORT][19] ([i915#7975] / [i915#8213] / [i915#8398]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-4/igt@gem_eio@hibernate.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][20] -> [FAIL][21] ([i915#5784]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-2/igt@gem_eio@reset-stress.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6334]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][27] -> [FAIL][28] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-10/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-throttle: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@gem_exec_fence@concurrent.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][32] ([fdo#109283] / [i915#5107]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preemptive-hang@ccs0: - shard-mtlp: NOTRUN -> [DMESG-WARN][38] ([i915#9262]) +1 other test dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@ccs0.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: NOTRUN -> [ABORT][40] ([i915#7392] / [i915#8668]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify.html - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][47] ([i915#5493]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#284]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@gem_mmap_wc@bad-object.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][60] ([i915#8962] / [i915#9121]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4079]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4879]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][67] ([i915#3318]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][68] ([fdo#109289]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109289]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@gen7_exec_parse@basic-offset.html - shard-rkl: NOTRUN -> [SKIP][70] ([fdo#109289]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@load-register-reg: - shard-dg1: NOTRUN -> [SKIP][71] ([fdo#109289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-16/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#7707]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@i915_hwmon@hwmon-write.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][75] -> [DMESG-WARN][76] ([i915#1982]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-1/igt@i915_module_load@resize-bar.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-1/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#6412]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: [PASS][78] -> [FAIL][79] ([i915#7036]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][80] -> [SKIP][81] ([i915#1397]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-13/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#1397]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][83] -> [SKIP][84] ([i915#1397]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271]) +48 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][86] -> [SKIP][87] ([i915#1397]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#6621]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: NOTRUN -> [INCOMPLETE][89] ([i915#7790]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#8925]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-idle@gt1: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8925]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle@gt1.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8437]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6188]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5723]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][95] ([i915#9278] / [i915#9290]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][96] ([i915#9270]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@mock@memory_region: - shard-snb: NOTRUN -> [DMESG-WARN][97] ([i915#9312]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb6/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][98] ([i915#9311] / [i915#9312]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6645]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][100] ([i915#7461] / [i915#9262]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][101] ([i915#9262]) +8 other tests abort [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#8502]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8502]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#8502]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][107] ([i915#8247]) +3 other tests fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6229]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111614]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][112] ([fdo#111614] / [i915#3638]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111614]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#111614]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][115] -> [ABORT][116] ([i915#8668]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][117] ([fdo#109271]) +58 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#110723]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#2705]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3886] / [i915#6095]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354] / [i915#6095]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3886] / [i915#5354] / [i915#6095]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#3886] / [i915#5354]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3689] / [i915#5354]) +14 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3886] / [i915#5354] / [i915#6095]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#3886]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk4/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-16/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5354]) +47 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-5/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +42 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7213] / [i915#9010]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111827]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6944]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@kms_content_protection@lic.html - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111767] / [i915#3546]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4213]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3546]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#5354]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][160] -> [FAIL][161] ([i915#2346]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9226] / [i915#9261]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9227]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8812]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8812]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840] / [i915#9159]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3637]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8381]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][170] ([i915#8841]) +4 other tests dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8810]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@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][173] ([i915#2672]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8810]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2672] / [i915#3555]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#5274]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109280]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +39 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#5460]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3458]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +13 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][182] ([fdo#111825] / [i915#1825]) +7 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +12 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#5439]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#110189]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111825]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +19 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3023]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#6118]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3582]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8821]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6953]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#6953]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][195] ([i915#8292]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][196] ([i915#8292]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#5176]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5176]) +9 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5176]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5176]) +27 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5235]) +19 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5235]) +19 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#5235]) +11 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#6524]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][205] ([fdo#109271] / [i915#658]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#658]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4348]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][208] ([fdo#109271] / [i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#1072]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_sprite_plane_move: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#1072]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5461] / [i915#658]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#4235]) +6 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_selftest@drm_cmdline: - shard-glk: NOTRUN -> [SKIP][214] ([fdo#109271] / [i915#8661]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-glk5/igt@kms_selftest@drm_cmdline.html * igt@kms_selftest@drm_dp_mst: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8661]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-1/igt@kms_selftest@drm_dp_mst.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8809]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +124 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb7/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-tglu: [PASS][218] -> [FAIL][219] ([i915#9196]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: [PASS][220] -> [INCOMPLETE][221] ([i915#180]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-dg2: [PASS][222] -> [FAIL][223] ([fdo#103375]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-11/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#4070] / [i915#6768]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-4/igt@kms_vblank@pipe-c-query-forked-busy.html * igt@kms_vblank@pipe-d-query-forked-hang: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#4070] / [i915#533] / [i915#6768]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked-hang.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][226] ([fdo#109271] / [i915#533]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8808]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@kms_vrr@flip-basic.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: NOTRUN -> [FAIL][228] ([i915#9259]) +2 other tests fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#2436]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-hang@ccs0: - shard-mtlp: NOTRUN -> [FAIL][230] ([i915#4349]) +5 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@perf_pmu@busy-hang@ccs0.html * igt@perf_pmu@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [FAIL][231] ([i915#5234]) +5 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@perf_pmu@most-busy-check-all@vcs0.html * igt@perf_pmu@rc6-all-gts: - shard-mtlp: NOTRUN -> [ABORT][232] ([i915#9268] / [i915#9335]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][233] ([i915#8445]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3291] / [i915#3708]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3708]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> [FAIL][237] ([i915#7812]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-5/igt@runner@aborted.html * igt@sysfs_timeslice_duration@duration@vecs0: - shard-mtlp: NOTRUN -> [FAIL][238] ([i915#9258]) +2 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-6/igt@sysfs_timeslice_duration@duration@vecs0.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#4818]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2575]) +21 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2575]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-2/igt@v3d/v3d_submit_cl@bad-perfmon.html - shard-rkl: NOTRUN -> [SKIP][242] ([fdo#109315]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109315] / [i915#2575]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-5/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#7711]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2575]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#7711]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#7711]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-1/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][248] ([i915#5784]) -> [PASS][249] +1 other test pass [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-19/igt@gem_eio@reset-stress.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][250] ([i915#2842]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-4/igt@gem_exec_fair@basic-flow@rcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][252] ([i915#2842]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][254] ([i915#7975] / [i915#8213]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@i915_hangman@gt-error-state-capture@vcs1: - shard-mtlp: [DMESG-WARN][256] ([i915#9262]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-5/igt@i915_hangman@gt-error-state-capture@vcs1.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@i915_hangman@gt-error-state-capture@vcs1.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][258] ([i915#3591]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] +1 other test pass [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][262] ([i915#1397]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][264] ([i915#3743]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-badstride: - shard-dg2: [FAIL][266] ([i915#6880]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-badstride.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][268] ([fdo#103375]) -> [PASS][269] +3 other tests pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][270] -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: [ABORT][272] ([i915#9262]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][274] ([i915#4349]) -> [PASS][275] +3 other tests pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][276] ([i915#4983]) -> [ABORT][277] ([i915#4983] / [i915#7461]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_fence@basic-await: - shard-snb: [ABORT][278] ([i915#8865]) -> [SKIP][279] ([fdo#109271]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-snb7/igt@gem_exec_fence@basic-await.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-snb6/igt@gem_exec_fence@basic-await.html * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][280] ([i915#7118]) -> [SKIP][281] ([i915#7118] / [i915#7162]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-7/igt@kms_content_protection@content_type_change.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-11/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][282] ([fdo#109300]) -> [SKIP][283] ([i915#7118]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@kms_content_protection@mei_interface.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][284] ([fdo#109300]) -> [SKIP][285] ([i915#7116]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-19/igt@kms_content_protection@mei_interface.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-19/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][286] ([fdo#109300]) -> [SKIP][287] ([i915#6944] / [i915#7116] / [i915#7118]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-tglu-4/igt@kms_content_protection@mei_interface.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-tglu-4/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][288] ([fdo#110189] / [i915#3955]) -> [SKIP][289] ([i915#3955]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][290] ([i915#3955]) -> [SKIP][291] ([fdo#110189] / [i915#3955]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][292] ([fdo#109285] / [i915#4098]) -> [SKIP][293] ([fdo#109285]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [DMESG-WARN][294] ([i915#9262]) -> [ABORT][295] ([i915#9262]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-mtlp-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][296] ([i915#1072]) -> [SKIP][297] ([i915#1072] / [i915#4078]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-17/igt@kms_psr@cursor_plane_move.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][298] ([i915#1072] / [i915#4078]) -> [SKIP][299] ([i915#1072]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg1-12/igt@kms_psr@primary_page_flip.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg1-17/igt@kms_psr@primary_page_flip.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][300] ([i915#7331]) -> [INCOMPLETE][301] ([i915#5493]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [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#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [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#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9258]: https://gitlab.freedesktop.org/drm/intel/issues/9258 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7488 -> IGTPW_9790 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13633: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9790: 9790 IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9790/index.html [-- Attachment #2: Type: text/html, Size: 101297 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-09-18 7:39 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-14 17:23 [igt-dev] [PATCH i-g-t 0/1] lib/intel_allocator: Query exact gtt size Jonathan Cavitt 2023-09-14 17:23 ` [igt-dev] [PATCH i-g-t 1/1] " Jonathan Cavitt 2023-09-18 7:39 ` Zbigniew Kempczyński 2023-09-14 18:48 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork 2023-09-14 18:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-09-15 0:51 ` [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