* [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch
@ 2024-01-23 18:33 Matthew Auld
2024-01-23 18:33 ` [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 Matthew Auld
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Matthew Auld @ 2024-01-23 18:33 UTC (permalink / raw)
To: igt-dev
Xe2 expects an extra page after the batch to avoid prefetch hitting an
invalid page. Not doing so can result in CAT errors.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
tests/intel/xe_copy_basic.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_copy_basic.c b/tests/intel/xe_copy_basic.c
index 1bde876cd..3ae5a7291 100644
--- a/tests/intel/xe_copy_basic.c
+++ b/tests/intel/xe_copy_basic.c
@@ -44,7 +44,7 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct
uint32_t size, uint32_t width, uint32_t height, uint32_t region)
{
struct blt_mem_data mem = {};
- uint64_t bb_size = xe_get_default_alignment(fd);
+ uint64_t bb_size;
uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
@@ -53,6 +53,8 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct
uint32_t bb;
int result;
+ bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd),
+ xe_get_default_alignment(fd));
bb = xe_bo_create(fd, 0, bb_size, region, 0);
blt_mem_init(fd, &mem);
@@ -97,7 +99,7 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size,
uint32_t width, uint32_t height, uint8_t fill_data, uint32_t region)
{
struct blt_mem_data mem = {};
- uint64_t bb_size = xe_get_default_alignment(fd);
+ uint64_t bb_size;
uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
@@ -105,6 +107,8 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size,
uint32_t bb;
uint8_t *result;
+ bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd),
+ xe_get_default_alignment(fd));
bb = xe_bo_create(fd, 0, bb_size, region, 0);
blt_mem_init(fd, &mem);
blt_set_mem_object(&mem.dst, dst_handle, size, 0, width, height, region,
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld @ 2024-01-23 18:33 ` Matthew Auld 2024-01-24 4:56 ` Zbigniew Kempczyński 2024-01-23 19:30 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Matthew Auld @ 2024-01-23 18:33 UTC (permalink / raw) To: igt-dev Currently we see various CAT errors and timeouts on xe2 when running xe_copy_basic. If selecting PAGE_COPY mode for MEM_COPY, the page size is defined as 256B block as xe2. Also the width should be defined in number of pages, and not bytes, which likely explains the CAT errors. However the caller in xe_copy_basic is not using a size that is aligned to 256B, so rather just select the more general BYTE_COPY mode instead, which should work for any reasonable number of bytes. BSpec: 57561 Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/intel_blt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/intel_blt.c b/lib/intel_blt.c index e41e261ea..25d251c4f 100644 --- a/lib/intel_blt.c +++ b/lib/intel_blt.c @@ -1613,7 +1613,7 @@ static void emit_blt_mem_copy(int fd, uint64_t ahnd, const struct blt_mem_data * optype = mem->src.type == M_MATRIX ? 1 << 17 : 0; i = 0; - batch[i++] = MEM_COPY_CMD | (1 << 19) | optype; + batch[i++] = MEM_COPY_CMD | optype; batch[i++] = mem->src.width - 1; batch[i++] = mem->src.height - 1; batch[i++] = mem->src.pitch - 1; -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 2024-01-23 18:33 ` [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 Matthew Auld @ 2024-01-24 4:56 ` Zbigniew Kempczyński 2024-01-24 8:37 ` Matthew Auld 0 siblings, 1 reply; 10+ messages in thread From: Zbigniew Kempczyński @ 2024-01-24 4:56 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev On Tue, Jan 23, 2024 at 06:33:23PM +0000, Matthew Auld wrote: > Currently we see various CAT errors and timeouts on xe2 when running > xe_copy_basic. If selecting PAGE_COPY mode for MEM_COPY, the page size > is defined as 256B block as xe2. Also the width should be defined in > number of pages, and not bytes, which likely explains the CAT errors. > However the caller in xe_copy_basic is not using a size that is aligned > to 256B, so rather just select the more general BYTE_COPY mode instead, > which should work for any reasonable number of bytes. > > BSpec: 57561 > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > lib/intel_blt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/intel_blt.c b/lib/intel_blt.c > index e41e261ea..25d251c4f 100644 > --- a/lib/intel_blt.c > +++ b/lib/intel_blt.c > @@ -1613,7 +1613,7 @@ static void emit_blt_mem_copy(int fd, uint64_t ahnd, const struct blt_mem_data * > optype = mem->src.type == M_MATRIX ? 1 << 17 : 0; > > i = 0; > - batch[i++] = MEM_COPY_CMD | (1 << 19) | optype; > + batch[i++] = MEM_COPY_CMD | optype; > batch[i++] = mem->src.width - 1; > batch[i++] = mem->src.height - 1; > batch[i++] = mem->src.pitch - 1; > -- > 2.43.0 > +Sai At first glance I don't like removing (1 << 19). For M_MATRIX we require BYTE_COPY. I'm not sure Sai is working on such tests but we discussed offline sometime I would like to have such tests here. -- Zbigniew ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 2024-01-24 4:56 ` Zbigniew Kempczyński @ 2024-01-24 8:37 ` Matthew Auld 2024-01-25 6:04 ` Zbigniew Kempczyński 0 siblings, 1 reply; 10+ messages in thread From: Matthew Auld @ 2024-01-24 8:37 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On 24/01/2024 04:56, Zbigniew Kempczyński wrote: > On Tue, Jan 23, 2024 at 06:33:23PM +0000, Matthew Auld wrote: >> Currently we see various CAT errors and timeouts on xe2 when running >> xe_copy_basic. If selecting PAGE_COPY mode for MEM_COPY, the page size >> is defined as 256B block as xe2. Also the width should be defined in >> number of pages, and not bytes, which likely explains the CAT errors. >> However the caller in xe_copy_basic is not using a size that is aligned >> to 256B, so rather just select the more general BYTE_COPY mode instead, >> which should work for any reasonable number of bytes. >> >> BSpec: 57561 >> Signed-off-by: Matthew Auld <matthew.auld@intel.com> >> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> >> --- >> lib/intel_blt.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/lib/intel_blt.c b/lib/intel_blt.c >> index e41e261ea..25d251c4f 100644 >> --- a/lib/intel_blt.c >> +++ b/lib/intel_blt.c >> @@ -1613,7 +1613,7 @@ static void emit_blt_mem_copy(int fd, uint64_t ahnd, const struct blt_mem_data * >> optype = mem->src.type == M_MATRIX ? 1 << 17 : 0; >> >> i = 0; >> - batch[i++] = MEM_COPY_CMD | (1 << 19) | optype; >> + batch[i++] = MEM_COPY_CMD | optype; >> batch[i++] = mem->src.width - 1; >> batch[i++] = mem->src.height - 1; >> batch[i++] = mem->src.pitch - 1; >> -- >> 2.43.0 >> > > +Sai > > At first glance I don't like removing (1 << 19). For M_MATRIX > we require BYTE_COPY. I'm not sure Sai is working on such tests > but we discussed offline sometime I would like to have such > tests here. This patch is enabling BYTE_COPY mode. Setting bit 19 turns on the PAGE_COPY mode. Matrix Copy looks to require BYTE_COPY. Also there doesn't seem to be a bit 19 on PVC, it seems to only support byte copy. > > -- > Zbigniew ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 2024-01-24 8:37 ` Matthew Auld @ 2024-01-25 6:04 ` Zbigniew Kempczyński 0 siblings, 0 replies; 10+ messages in thread From: Zbigniew Kempczyński @ 2024-01-25 6:04 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev On Wed, Jan 24, 2024 at 08:37:54AM +0000, Matthew Auld wrote: > On 24/01/2024 04:56, Zbigniew Kempczyński wrote: > > On Tue, Jan 23, 2024 at 06:33:23PM +0000, Matthew Auld wrote: > > > Currently we see various CAT errors and timeouts on xe2 when running > > > xe_copy_basic. If selecting PAGE_COPY mode for MEM_COPY, the page size > > > is defined as 256B block as xe2. Also the width should be defined in > > > number of pages, and not bytes, which likely explains the CAT errors. > > > However the caller in xe_copy_basic is not using a size that is aligned > > > to 256B, so rather just select the more general BYTE_COPY mode instead, > > > which should work for any reasonable number of bytes. > > > > > > BSpec: 57561 > > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > > --- > > > lib/intel_blt.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/lib/intel_blt.c b/lib/intel_blt.c > > > index e41e261ea..25d251c4f 100644 > > > --- a/lib/intel_blt.c > > > +++ b/lib/intel_blt.c > > > @@ -1613,7 +1613,7 @@ static void emit_blt_mem_copy(int fd, uint64_t ahnd, const struct blt_mem_data * > > > optype = mem->src.type == M_MATRIX ? 1 << 17 : 0; > > > i = 0; > > > - batch[i++] = MEM_COPY_CMD | (1 << 19) | optype; > > > + batch[i++] = MEM_COPY_CMD | optype; > > > batch[i++] = mem->src.width - 1; > > > batch[i++] = mem->src.height - 1; > > > batch[i++] = mem->src.pitch - 1; > > > -- > > > 2.43.0 > > > > > > > +Sai > > > > At first glance I don't like removing (1 << 19). For M_MATRIX > > we require BYTE_COPY. I'm not sure Sai is working on such tests > > but we discussed offline sometime I would like to have such > > tests here. > > This patch is enabling BYTE_COPY mode. Setting bit 19 turns on the PAGE_COPY > mode. Matrix Copy looks to require BYTE_COPY. Also there doesn't seem to be > a bit 19 on PVC, it seems to only support byte copy. You're right. I incorrectly read spec and I've thought 1 << 19 enables BYTE_COPY. From me then: Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > > > > > -- > > Zbigniew ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld 2024-01-23 18:33 ` [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 Matthew Auld @ 2024-01-23 19:30 ` Patchwork 2024-01-23 19:55 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-01-23 19:30 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2379 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch URL : https://patchwork.freedesktop.org/series/129097/ State : success == Summary == CI Bug Log - changes from CI_DRM_14166 -> IGTPW_10577 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): bat-rpls-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10577 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-11: NOTRUN -> [SKIP][1] ([i915#9197]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html #### Possible fixes #### * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [DMESG-WARN][2] -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@hangcheck: - {bat-rpls-3}: [DMESG-WARN][4] ([i915#5591]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/bat-rpls-3/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/bat-rpls-3/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7690 -> IGTPW_10577 CI-20190529: 20190529 CI_DRM_14166: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10577: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html [-- Attachment #2: Type: text/html, Size: 3042 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld 2024-01-23 18:33 ` [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 Matthew Auld 2024-01-23 19:30 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch Patchwork @ 2024-01-23 19:55 ` Patchwork 2024-01-24 4:45 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-24 4:48 ` [PATCH i-g-t 1/2] " Zbigniew Kempczyński 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-01-23 19:55 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1158 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch URL : https://patchwork.freedesktop.org/series/129097/ State : success == Summary == CI Bug Log - changes from XEIGT_7690_BAT -> XEIGTPW_10577_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7690 -> IGTPW_10577 * Linux: xe-669-741c439503ee0986a7b7c5b590cbd9813b8841f6 -> xe-672-fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c IGTPW_10577: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-669-741c439503ee0986a7b7c5b590cbd9813b8841f6: 741c439503ee0986a7b7c5b590cbd9813b8841f6 xe-672-fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10577/index.html [-- Attachment #2: Type: text/html, Size: 1717 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld ` (2 preceding siblings ...) 2024-01-23 19:55 ` ✓ CI.xeBAT: " Patchwork @ 2024-01-24 4:45 ` Patchwork 2024-01-24 4:48 ` [PATCH i-g-t 1/2] " Zbigniew Kempczyński 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-01-24 4:45 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 93939 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch URL : https://patchwork.freedesktop.org/series/129097/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14166_full -> IGTPW_10577_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10577_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10577_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10577_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@softpin: - shard-snb: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb5/igt@gem_softpin@softpin.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb5/igt@gem_softpin@softpin.html * igt@i915_suspend@forcewake: - shard-tglu: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-5/igt@i915_suspend@forcewake.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-9/igt@i915_suspend@forcewake.html New tests --------- New tests have been introduced between CI_DRM_14166_full and IGTPW_10577_full: ### New IGT tests (31) ### * igt@gem_exec_schedule@noreorder-corked@bcs0: - Statuses : 4 pass(s) - Exec time: [1.11, 1.12] s * igt@gem_exec_schedule@noreorder-priority@bcs0: - Statuses : 5 pass(s) - Exec time: [1.10, 1.13] s * igt@gem_exec_schedule@noreorder@bcs0: - Statuses : 5 pass(s) - Exec time: [0.04, 0.06] s * igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-smem-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@linear-smem-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-smem-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@tile4-smem-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-smem-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@tile64-smem-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy-emit@yfmajor-smem-smem-emit: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-smem-emit: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-lmem0-emit: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-smem-emit: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt@gem_exercise_blt@fast-copy@linear-lmem0-lmem0: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt@gem_exercise_blt@fast-copy@linear-lmem0-smem: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt@gem_exercise_blt@fast-copy@linear-smem-lmem0: - Statuses : 2 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy@tile4-lmem0-lmem0: - Statuses : 2 pass(s) - Exec time: [0.06, 0.12] s * igt@gem_exercise_blt@fast-copy@tile4-lmem0-smem: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt@gem_exercise_blt@fast-copy@tile4-smem-lmem0: - Statuses : 2 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy@tile64-lmem0-lmem0: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt@gem_exercise_blt@fast-copy@tile64-lmem0-smem: - Statuses : 2 pass(s) - Exec time: [0.06, 0.11] s * igt@gem_exercise_blt@fast-copy@tile64-smem-lmem0: - Statuses : 2 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy@yfmajor-smem-smem: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt@gem_exercise_blt@fast-copy@ymajor-lmem0-lmem0: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy@ymajor-lmem0-smem: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exercise_blt@fast-copy@ymajor-smem-lmem0: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@gem_exercise_blt@fast-copy@ymajor-smem-smem: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s Known issues ------------ Here are the changes found in IGTPW_10577_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit: - shard-dg2: NOTRUN -> [DMESG-WARN][6] ([i915#10140]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@drm_fdinfo@busy@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#9364]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-rkl: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg1: [PASS][19] -> [FAIL][20] ([i915#5784]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-18/igt@gem_eio@kms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: NOTRUN -> [FAIL][21] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][22] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#6344]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2846]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-19/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][31] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk7/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@gem_exec_fair@basic-none-solo@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@gem_exec_fence@submit67.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][42] ([fdo#109283] / [i915#5107]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][43] ([fdo#109283]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg1: NOTRUN -> [SKIP][44] ([fdo#112283]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@gem_exec_params@secure-non-master.html - shard-mtlp: NOTRUN -> [SKIP][45] ([fdo#112283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][46] ([fdo#112283]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@gem_exec_params@secure-non-root.html - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#112283]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +11 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-7/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-12/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][59] -> [TIMEOUT][60] ([i915#5493]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@gem_mmap_gtt@cpuset-basic-small-copy.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_mmap_wc@bad-size.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-15/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [INCOMPLETE][71] ([i915#10042] / [i915#10137]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-17/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#109312]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-15/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [PASS][89] -> [INCOMPLETE][90] ([i915#10137]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-4/igt@gem_workarounds@suspend-resume-fd.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109289]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][93] ([fdo#109271]) +114 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-7/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6227]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][98] -> [INCOMPLETE][99] ([i915#10137] / [i915#9200] / [i915#9849]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][100] -> [INCOMPLETE][101] ([i915#10137] / [i915#9200]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#109289]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][103] ([i915#2681]) +3 other tests warn [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][104] -> [INCOMPLETE][105] ([i915#10137] / [i915#7790]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb1/igt@i915_pm_rps@reset.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#7984]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@i915_power@sanity.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#5190]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111615] / [i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111614]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-19/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111614]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +12 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111615]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#111615]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-6/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][127] ([fdo#110723]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][129] ([fdo#111615]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#2705]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354]) +87 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +18 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +14 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-glk: NOTRUN -> [SKIP][135] ([fdo#109271]) +153 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354]) +20 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4087] / [i915#7213]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#7828]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#111827]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#7828]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +10 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3299]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7118]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#7116] / [i915#7118]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3359]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3359]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109274]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111825]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9809]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [i915#5354]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [fdo#111767] / [i915#5354]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9067]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9067]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#9067]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9833]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#9723]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-14/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9833]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#9227]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1: - shard-snb: NOTRUN -> [FAIL][175] ([i915#9841]) +3 other tests fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8588]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3804]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8812]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3840] / [i915#9688]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#1839]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#1839]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9337]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#658]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-19/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4881]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3637]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2: NOTRUN -> [SKIP][189] ([fdo#109274]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109274] / [i915#3637]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8810]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#5274]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [PASS][197] -> [SKIP][198] ([fdo#109271]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#5439]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][200] ([fdo#111825]) +11 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#1825]) +8 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +26 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109280]) +19 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8708]) +22 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#5439]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9766]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#10070]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][208] ([fdo#110189]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#3458]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3458]) +16 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3023]) +16 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#6118]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4816]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4816]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#1839]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#6301]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][220] ([fdo#109289]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][221] ([i915#4573]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][223] ([fdo#109274] / [i915#5354] / [i915#9423]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][224] ([i915#8292]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9423]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9423]) +15 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5176]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#9423]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#9423]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5235] / [i915#9423]) +7 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5978]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3361]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#9685]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#9519]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#9519]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#9519]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][241] -> [SKIP][242] ([i915#9519]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-rkl: NOTRUN -> [SKIP][243] ([fdo#109293] / [fdo#109506]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#6524]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][245] ([fdo#111068] / [i915#9683]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#2920]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][247] ([fdo#111068] / [i915#9683]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9683]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][249] ([fdo#111068] / [i915#9683]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#9685]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#4235]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#4235]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#4235] / [i915#5190]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][254] ([fdo#111615] / [i915#5289]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#5289]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: NOTRUN -> [DMESG-FAIL][256] ([i915#10143]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-rkl: NOTRUN -> [DMESG-WARN][257] ([i915#10143]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-tglu: [PASS][258] -> [DMESG-WARN][259] ([i915#10143]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html - shard-glk: [PASS][260] -> [DMESG-WARN][261] ([i915#10143]) +1 other test dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8823]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#8623]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][264] -> [FAIL][265] ([i915#9196]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8808]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9906]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2437] / [i915#9412]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@enable-race@vcs0: - shard-glk: [PASS][269] -> [DMESG-WARN][270] ([i915#118]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk5/igt@perf_pmu@enable-race@vcs0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk8/igt@perf_pmu@enable-race@vcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-rkl: NOTRUN -> [SKIP][271] ([fdo#112283]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#8516]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][273] ([i915#8516]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#3291] / [i915#3708]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9917]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#9917]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#9917]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][278] ([i915#9781]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk4/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][279] ([i915#9779]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][280] ([i915#9779]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk8/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#4818]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_param@base-params: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#2575]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-7/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#2575]) +9 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-5/igt@v3d/v3d_submit_cl@bad-bo.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2575]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-17/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-rkl: NOTRUN -> [SKIP][285] ([fdo#109315]) +8 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@v3d/v3d_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][286] ([fdo#109315] / [i915#2575]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-5/igt@v3d/v3d_wait_bo@used-bo-0ns.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#7711]) +10 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#7711]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#7711]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#7711]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#2575]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][292] ([i915#7742]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@pan: - shard-snb: [FAIL][294] ([i915#4435]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@fbdev@pan.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb5/igt@fbdev@pan.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-tglu: [ABORT][296] -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-9/igt@gem_ctx_isolation@preservation-s3@vecs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][298] ([i915#5784]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-13/igt@gem_eio@reset-stress.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][300] ([i915#2842]) -> [PASS][301] +2 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][302] ([i915#2842]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][304] ([i915#2842]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][306] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][308] ([i915#10131] / [i915#9820]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][310] ([i915#3743]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [SKIP][312] ([fdo#109271] / [fdo#111767]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][314] ([i915#2346]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [SKIP][316] ([fdo#109271]) -> [PASS][317] +7 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][318] ([i915#9519]) -> [PASS][319] +1 other test pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * {igt@kms_psr@psr2-primary-blt@edp-1}: - shard-mtlp: [DMESG-WARN][320] -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-7/igt@kms_psr@psr2-primary-blt@edp-1.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-4/igt@kms_psr@psr2-primary-blt@edp-1.html * igt@kms_rotation_crc@primary-rotation-270: - shard-rkl: [ABORT][322] ([i915#8875]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-270.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-270.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][324] ([i915#4349]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-tglu: [INCOMPLETE][326] ([i915#10042] / [i915#10137]) -> [WARN][327] ([i915#2658]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-2/igt@gem_pread@exhaustion.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@kms_content_protection@atomic: - shard-snb: [INCOMPLETE][328] ([i915#8816]) -> [SKIP][329] ([fdo#109271]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@kms_content_protection@atomic.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-snb: [SKIP][330] ([fdo#109271]) -> [INCOMPLETE][331] ([i915#9878]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb1/igt@kms_content_protection@mei-interface.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-snb7/igt@kms_content_protection@mei-interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][332] ([i915#3955]) -> [SKIP][333] ([fdo#110189] / [i915#3955]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][334] ([i915#4281]) -> [SKIP][335] ([i915#3361]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-tglu: [FAIL][336] ([i915#10136]) -> [DMESG-FAIL][337] ([i915#10143]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-tglu-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-glk: [DMESG-FAIL][338] ([i915#10143]) -> [FAIL][339] ([i915#10136]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-glk5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][340] ([i915#5493]) -> [CRASH][341] ([i915#9351]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/shard-dg2-10/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#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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [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#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7690 -> IGTPW_10577 CI-20190529: 20190529 CI_DRM_14166: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10577: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10577/index.html [-- Attachment #2: Type: text/html, Size: 114396 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld ` (3 preceding siblings ...) 2024-01-24 4:45 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-24 4:48 ` Zbigniew Kempczyński 2024-01-24 8:42 ` Matthew Auld 4 siblings, 1 reply; 10+ messages in thread From: Zbigniew Kempczyński @ 2024-01-24 4:48 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev On Tue, Jan 23, 2024 at 06:33:22PM +0000, Matthew Auld wrote: > Xe2 expects an extra page after the batch to avoid prefetch hitting an > invalid page. Not doing so can result in CAT errors. > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > tests/intel/xe_copy_basic.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_copy_basic.c b/tests/intel/xe_copy_basic.c > index 1bde876cd..3ae5a7291 100644 > --- a/tests/intel/xe_copy_basic.c > +++ b/tests/intel/xe_copy_basic.c > @@ -44,7 +44,7 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct > uint32_t size, uint32_t width, uint32_t height, uint32_t region) > { > struct blt_mem_data mem = {}; > - uint64_t bb_size = xe_get_default_alignment(fd); > + uint64_t bb_size; > uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > ALLOC_STRATEGY_LOW_TO_HIGH, 0); > @@ -53,6 +53,8 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct > uint32_t bb; > int result; > > + bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd), > + xe_get_default_alignment(fd)); > bb = xe_bo_create(fd, 0, bb_size, region, 0); > > blt_mem_init(fd, &mem); > @@ -97,7 +99,7 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size, > uint32_t width, uint32_t height, uint8_t fill_data, uint32_t region) > { > struct blt_mem_data mem = {}; > - uint64_t bb_size = xe_get_default_alignment(fd); > + uint64_t bb_size; > uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > ALLOC_STRATEGY_LOW_TO_HIGH, 0); > @@ -105,6 +107,8 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size, > uint32_t bb; > uint8_t *result; > > + bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd), > + xe_get_default_alignment(fd)); > bb = xe_bo_create(fd, 0, bb_size, region, 0); > blt_mem_init(fd, &mem); > blt_set_mem_object(&mem.dst, dst_handle, size, 0, width, height, region, > -- > 2.43.0 > Maybe we should create helper like: uint64_t xe_bb_size(int fd, uint64_t reqsize) { return ALIGN(reqsize + xe_cs_prefetch_size(fd), xe_get_default_alignment(fd)); } as adding prefetch size will likely stay with us forever. Anyway, green light from me for the above change: Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch 2024-01-24 4:48 ` [PATCH i-g-t 1/2] " Zbigniew Kempczyński @ 2024-01-24 8:42 ` Matthew Auld 0 siblings, 0 replies; 10+ messages in thread From: Matthew Auld @ 2024-01-24 8:42 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On 24/01/2024 04:48, Zbigniew Kempczyński wrote: > On Tue, Jan 23, 2024 at 06:33:22PM +0000, Matthew Auld wrote: >> Xe2 expects an extra page after the batch to avoid prefetch hitting an >> invalid page. Not doing so can result in CAT errors. >> >> Signed-off-by: Matthew Auld <matthew.auld@intel.com> >> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> >> --- >> tests/intel/xe_copy_basic.c | 8 ++++++-- >> 1 file changed, 6 insertions(+), 2 deletions(-) >> >> diff --git a/tests/intel/xe_copy_basic.c b/tests/intel/xe_copy_basic.c >> index 1bde876cd..3ae5a7291 100644 >> --- a/tests/intel/xe_copy_basic.c >> +++ b/tests/intel/xe_copy_basic.c >> @@ -44,7 +44,7 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct >> uint32_t size, uint32_t width, uint32_t height, uint32_t region) >> { >> struct blt_mem_data mem = {}; >> - uint64_t bb_size = xe_get_default_alignment(fd); >> + uint64_t bb_size; >> uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0, >> INTEL_ALLOCATOR_SIMPLE, >> ALLOC_STRATEGY_LOW_TO_HIGH, 0); >> @@ -53,6 +53,8 @@ mem_copy(int fd, uint32_t src_handle, uint32_t dst_handle, const intel_ctx_t *ct >> uint32_t bb; >> int result; >> >> + bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd), >> + xe_get_default_alignment(fd)); >> bb = xe_bo_create(fd, 0, bb_size, region, 0); >> >> blt_mem_init(fd, &mem); >> @@ -97,7 +99,7 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size, >> uint32_t width, uint32_t height, uint8_t fill_data, uint32_t region) >> { >> struct blt_mem_data mem = {}; >> - uint64_t bb_size = xe_get_default_alignment(fd); >> + uint64_t bb_size; >> uint64_t ahnd = intel_allocator_open_full(fd, ctx->vm, 0, 0, >> INTEL_ALLOCATOR_SIMPLE, >> ALLOC_STRATEGY_LOW_TO_HIGH, 0); >> @@ -105,6 +107,8 @@ mem_set(int fd, uint32_t dst_handle, const intel_ctx_t *ctx, uint32_t size, >> uint32_t bb; >> uint8_t *result; >> >> + bb_size = ALIGN(SZ_4K + xe_cs_prefetch_size(fd), >> + xe_get_default_alignment(fd)); >> bb = xe_bo_create(fd, 0, bb_size, region, 0); >> blt_mem_init(fd, &mem); >> blt_set_mem_object(&mem.dst, dst_handle, size, 0, width, height, region, >> -- >> 2.43.0 >> > > Maybe we should create helper like: > > uint64_t xe_bb_size(int fd, uint64_t reqsize) > { > return ALIGN(reqsize + xe_cs_prefetch_size(fd), > xe_get_default_alignment(fd)); > } > > as adding prefetch size will likely stay with us forever. Yeah, I think adding a helper for this at some point makes a lot of sense. Also probably need to do a full audit at the same time as rolling that out in case we are still missing it in some places. > > Anyway, green light from me for the above change: > > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Thanks. > -- > Zbigniew ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-01-25 6:04 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-23 18:33 [PATCH i-g-t 1/2] tests/intel/xe_copy_basic: account for prefetch Matthew Auld 2024-01-23 18:33 ` [PATCH i-g-t 2/2] lib/intel_blt: use BYTE_COPY mode on xe2 Matthew Auld 2024-01-24 4:56 ` Zbigniew Kempczyński 2024-01-24 8:37 ` Matthew Auld 2024-01-25 6:04 ` Zbigniew Kempczyński 2024-01-23 19:30 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/xe_copy_basic: account for prefetch Patchwork 2024-01-23 19:55 ` ✓ CI.xeBAT: " Patchwork 2024-01-24 4:45 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-24 4:48 ` [PATCH i-g-t 1/2] " Zbigniew Kempczyński 2024-01-24 8:42 ` Matthew Auld
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox