* [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue
@ 2024-01-11 9:01 Matthew Auld
2024-01-11 11:01 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Matthew Auld @ 2024-01-11 9:01 UTC (permalink / raw)
To: igt-dev
The gt_id of the engine is not a valid bind queue. Typically it is zero
so we likely don't notice anything, but that might not always be the
case.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Jagmeet Randhawa <jagmeet.randhawa@intel.com>
---
tests/intel/xe_exec_store.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
index 870394d3c..3ec84295b 100644
--- a/tests/intel/xe_exec_store.c
+++ b/tests/intel/xe_exec_store.c
@@ -217,7 +217,7 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci,
dst_offset[i] = intel_allocator_alloc_with_strategy(ahnd, bo[i],
bo_size, 0,
ALLOC_STRATEGY_LOW_TO_HIGH);
- xe_vm_bind_async(fd, vm, eci->gt_id, bo[i], 0, dst_offset[i], bo_size, sync, 1);
+ xe_vm_bind_async(fd, vm, 0, bo[i], 0, dst_offset[i], bo_size, sync, 1);
}
batch_map = xe_bo_map(fd, bo[i-1], bo_size);
@@ -303,7 +303,7 @@ static void persistent(int fd)
vram_if_possible(fd, engine->instance.gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
- xe_vm_bind_async(fd, vm, engine->instance.gt_id, sd_batch, 0, addr, batch_size, &sync, 1);
+ xe_vm_bind_async(fd, vm, 0, sd_batch, 0, addr, batch_size, &sync, 1);
sd_data = xe_bo_map(fd, sd_batch, batch_size);
prt_data = xe_bo_map(fd, prt_batch, batch_size);
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Fi.CI.BAT: success for tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 9:01 [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue Matthew Auld @ 2024-01-11 11:01 ` Patchwork 2024-01-11 11:20 ` ✗ CI.xeBAT: failure " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-01-11 11:01 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2639 bytes --] == Series Details == Series: tests/intel/xe_exec_store: don't pass gt_id as bind queue URL : https://patchwork.freedesktop.org/series/128560/ State : success == Summary == CI Bug Log - changes from CI_DRM_14111 -> IGTPW_10510 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html Participating hosts (39 -> 36) ------------------------------ Missing (3): bat-rpls-2 fi-snb-2520m fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10510: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@slpc: - {bat-adls-6}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/bat-adls-6/igt@i915_selftest@live@slpc.html Known issues ------------ Here are the changes found in IGTPW_10510 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-dg2-8: [PASS][2] -> [INCOMPLETE][3] ([i915#9275]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/bat-dg2-8/igt@gem_exec_suspend@basic-s3@smem.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/bat-dg2-8/igt@gem_exec_suspend@basic-s3@smem.html #### Possible fixes #### * igt@i915_selftest@live@gt_timelines: - {bat-adls-6}: [INCOMPLETE][4] -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/bat-adls-6/igt@i915_selftest@live@gt_timelines.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/bat-adls-6/igt@i915_selftest@live@gt_timelines.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#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7669 -> IGTPW_10510 CI-20190529: 20190529 CI_DRM_14111: 86d0316f679868605ed771544c96bab5c8eaf994 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10510: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html IGT_7669: 418064e40ca6399700b0548983fdb679be4d855b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html [-- Attachment #2: Type: text/html, Size: 3232 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 9:01 [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue Matthew Auld 2024-01-11 11:01 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-01-11 11:20 ` Patchwork 2024-01-12 17:43 ` Kamil Konieczny 2024-01-11 13:08 ` ✓ Fi.CI.IGT: success " Patchwork 2024-01-11 20:32 ` [PATCH i-g-t] " Randhawa, Jagmeet 3 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-01-11 11:20 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3227 bytes --] == Series Details == Series: tests/intel/xe_exec_store: don't pass gt_id as bind queue URL : https://patchwork.freedesktop.org/series/128560/ State : failure == Summary == CI Bug Log - changes from XEIGT_7669_BAT -> XEIGTPW_10510_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_10510_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_10510_BAT, 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. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10510_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm: - bat-pvc-2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-pvc-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html Known issues ------------ Here are the changes found in XEIGTPW_10510_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-dg2-oem2: [FAIL][2] ([Intel XE#480]) -> [PASS][3] +1 other test pass [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7669/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][4] ([Intel XE#480]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7669/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-FAIL][6] ([Intel XE#1033]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7669/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 Build changes ------------- * IGT: IGT_7669 -> IGTPW_10510 * Linux: xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693 -> xe-618-79184e72263e91528195db01783148435c7e4fad IGTPW_10510: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html IGT_7669: 418064e40ca6399700b0548983fdb679be4d855b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693: bda9437030d914aefcbc145d3be1a9f5f05ea693 xe-618-79184e72263e91528195db01783148435c7e4fad: 79184e72263e91528195db01783148435c7e4fad == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/index.html [-- Attachment #2: Type: text/html, Size: 3983 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ CI.xeBAT: failure for tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 11:20 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-01-12 17:43 ` Kamil Konieczny 2024-01-18 11:16 ` Illipilli, TejasreeX 0 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2024-01-12 17:43 UTC (permalink / raw) To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra, Matthew Auld Hi igt-dev, On 2024-01-11 at 11:20:07 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_exec_store: don't pass gt_id as bind queue > URL : https://patchwork.freedesktop.org/series/128560/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_7669_BAT -> XEIGTPW_10510_BAT > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_10510_BAT absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_10510_BAT, 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. > > > > Participating hosts (4 -> 4) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_10510_BAT: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm: > - bat-pvc-2: NOTRUN -> [INCOMPLETE][1] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-pvc-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html > This is unrelated to change in xe_exec_store test. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_10510_BAT that come from known issues: > ...cut... > > > Build changes > ------------- > > * IGT: IGT_7669 -> IGTPW_10510 > * Linux: xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693 -> xe-618-79184e72263e91528195db01783148435c7e4fad > > IGTPW_10510: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html > IGT_7669: 418064e40ca6399700b0548983fdb679be4d855b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693: bda9437030d914aefcbc145d3be1a9f5f05ea693 > xe-618-79184e72263e91528195db01783148435c7e4fad: 79184e72263e91528195db01783148435c7e4fad > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: ✗ CI.xeBAT: failure for tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-12 17:43 ` Kamil Konieczny @ 2024-01-18 11:16 ` Illipilli, TejasreeX 0 siblings, 0 replies; 8+ messages in thread From: Illipilli, TejasreeX @ 2024-01-18 11:16 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: LGCI Bug Filing, I915-ci-infra@lists.freedesktop.org, Auld, Matthew Hi, https://patchwork.freedesktop.org/series/128560/ - Addressed failures, Xe PW cannot be re-reported. Thanks, Tejasree -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Friday, January 12, 2024 11:14 PM To: igt-dev@lists.freedesktop.org Cc: Auld, Matthew <matthew.auld@intel.com>; I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com> Subject: Re: ✗ CI.xeBAT: failure for tests/intel/xe_exec_store: don't pass gt_id as bind queue Hi igt-dev, On 2024-01-11 at 11:20:07 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_exec_store: don't pass gt_id as bind queue > URL : https://patchwork.freedesktop.org/series/128560/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_7669_BAT -> XEIGTPW_10510_BAT > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_10510_BAT absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_10510_BAT, 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. > > > > Participating hosts (4 -> 4) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_10510_BAT: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm: > - bat-pvc-2: NOTRUN -> [INCOMPLETE][1] > [1]: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/bat-pvc-2/igt@xe > _exec_fault_mode@twice-bindexecqueue-userptr-imm.html > This is unrelated to change in xe_exec_store test. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_10510_BAT that come from known issues: > ...cut... > > > Build changes > ------------- > > * IGT: IGT_7669 -> IGTPW_10510 > * Linux: xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693 -> > xe-618-79184e72263e91528195db01783148435c7e4fad > > IGTPW_10510: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html > IGT_7669: 418064e40ca6399700b0548983fdb679be4d855b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-617-bda9437030d914aefcbc145d3be1a9f5f05ea693: bda9437030d914aefcbc145d3be1a9f5f05ea693 > xe-618-79184e72263e91528195db01783148435c7e4fad: > 79184e72263e91528195db01783148435c7e4fad > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10510/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 9:01 [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue Matthew Auld 2024-01-11 11:01 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-11 11:20 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-01-11 13:08 ` Patchwork 2024-01-11 20:32 ` [PATCH i-g-t] " Randhawa, Jagmeet 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-01-11 13:08 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83513 bytes --] == Series Details == Series: tests/intel/xe_exec_store: don't pass gt_id as bind queue URL : https://patchwork.freedesktop.org/series/128560/ State : success == Summary == CI Bug Log - changes from CI_DRM_14111_full -> IGTPW_10510_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_10510_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@api_intel_bb@crc32.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][3] ([i915#6122]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3555]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8562]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][9] -> [FAIL][10] ([i915#6268]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8555]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#280]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#280]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][14] -> [FAIL][15] ([i915#5784]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-17/igt@gem_eio@unwedge-stress.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4771]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4036]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][20] ([i915#9606]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][21] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][25] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-6/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][29] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-1/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-rkl: NOTRUN -> [SKIP][33] ([fdo#109283]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][34] ([fdo#112283]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +19 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#7276]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-19/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-9/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@basic-wc: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-7/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-16/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +19 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4879]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-16/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4958]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledx_blits: - shard-dg1: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-16/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-8/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#2527]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4881]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#6227]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@i915_module_load@load.html * igt@i915_module_load@reload: - shard-snb: [PASS][75] -> [INCOMPLETE][76] ([i915#9849]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb2/igt@i915_module_load@reload.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb7/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][77] -> [INCOMPLETE][78] ([i915#9200]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#6412]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][81] -> [FAIL][82] ([i915#3591]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8431]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#8925]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109303]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][87] ([fdo#109303]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][88] ([i915#9311]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][89] -> [FAIL][90] ([i915#10031]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4212]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#8247]) +3 other tests fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][93] ([i915#8247]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6229]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#9531]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#1769]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5286]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][99] ([fdo#111614]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#111615]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3638]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#111614] / [i915#3638]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +26 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][104] -> [FAIL][105] ([i915#3743]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5190]) +9 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2705]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5354]) +143 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +15 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-8/igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#6095]) +17 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-3/igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#6095]) +10 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-19/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][114] ([fdo#109271]) +332 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk1/igt@kms_ccs@pipe-d-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5354]) +10 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#7828]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111827]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][118] ([fdo#111827]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111827]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#7828]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#7828]) +16 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#7828]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#7828]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#7118]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][125] ([i915#7118]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3299]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3299]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#9424]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6944]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#8814]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3359]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3359]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3359]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3359]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109274] / [fdo#111767] / [i915#5354]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-snb: [PASS][137] -> [SKIP][138] ([fdo#109271]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#109274] / [i915#5354]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#9809]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111825]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][145] -> [DMESG-WARN][146] ([i915#2017]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9833]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#9723]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9227]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9723]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8588]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3804]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/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][154] ([i915#8812]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3840] / [i915#9688]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3840] / [i915#9053]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#1839]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#1839]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-9/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#1839]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109274]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3637]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274] / [fdo#111767]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111767] / [fdo#111825]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#3637]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#8381]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#2672]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2672] / [i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109285]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#1825]) +9 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#10055]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8708]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3023]) +9 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#110189]) +10 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#109280]) +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +11 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111825]) +6 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8708]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#10070]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +31 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#8708]) +24 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3458]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#6301]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#109289]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8806]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8806]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274] / [i915#5354] / [i915#9423]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][195] ([i915#8292]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][196] ([i915#8292]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/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-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5176]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9423]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9423]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9423]) +19 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5176] / [i915#9423]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423]) +11 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/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-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#5235]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#5235]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5235]) +11 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-snb: NOTRUN -> [SKIP][207] ([fdo#109271]) +9 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9812]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9685]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][210] ([i915#9298]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8430]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9519]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#9519]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#6524]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-19/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6524]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#6524] / [i915#6805]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9683]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9683]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#9683]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4235] / [i915#5190]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5289]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4235]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4235]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#8623]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][228] -> [FAIL][229] ([i915#9196]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8808]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-3/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2437] / [i915#9412]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2437] / [i915#9412]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-9/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][233] ([fdo#109271] / [i915#2437]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2437] / [i915#9412]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2437]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2437]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2437]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][238] ([fdo#109289]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#7387]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][240] -> [FAIL][241] ([i915#9593]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8440]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-6/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8516]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#8516]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg1: NOTRUN -> [SKIP][245] ([fdo#109291]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-19/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3708]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3291] / [i915#3708]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3708] / [i915#4077]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@prime_vgem@basic-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#9917]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][250] ([i915#9781]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-2/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_create_bo@create-bo-0: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2575]) +19 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-7/igt@v3d/v3d_create_bo@create-bo-0.html * igt@v3d/v3d_mmap@mmap-bad-flags: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2575]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@v3d/v3d_mmap@mmap-bad-flags.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-tglu: NOTRUN -> [SKIP][253] ([fdo#109315] / [i915#2575]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-4/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2575]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-rkl: NOTRUN -> [SKIP][255] ([fdo#109315]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-1/igt@v3d/v3d_submit_csd@bad-pad.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#7711]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-16/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2575]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@vc4/vc4_label_bo@set-bad-handle.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#7711]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#7711]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#7711]) +15 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][261] ([i915#7742]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@pan: - shard-snb: [FAIL][263] ([i915#4435]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb7/igt@fbdev@pan.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb6/igt@fbdev@pan.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][265] ([i915#10030] / [i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-10/igt@gem_eio@hibernate.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][267] ([i915#2842]) -> [PASS][268] +2 other tests pass [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][269] ([i915#9200] / [i915#9849]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][271] -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-2/igt@i915_selftest@live@gt_pm.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [DMESG-WARN][273] ([i915#2017]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-5/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][275] ([fdo#109271]) -> [PASS][276] +8 other tests pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][277] ([i915#4281]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][279] ([i915#9519]) -> [PASS][280] +1 other test pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][281] ([i915#9196]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [FAIL][283] ([i915#9196]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-dg2: [FAIL][285] ([i915#9196]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][287] ([i915#4349]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html #### Warnings #### * igt@gem_pwrite@basic-exhaustion: - shard-glk: [INCOMPLETE][289] ([i915#10042]) -> [WARN][290] ([i915#2658]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-glk4/igt@gem_pwrite@basic-exhaustion.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [INCOMPLETE][291] ([i915#9697] / [i915#9849]) -> [INCOMPLETE][292] ([i915#9820] / [i915#9849]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][293] ([i915#9849]) -> [INCOMPLETE][294] ([i915#9820] / [i915#9849]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [DMESG-WARN][295] ([i915#9559]) -> [INCOMPLETE][296] ([i915#9820] / [i915#9849]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu: [FAIL][297] ([i915#3591]) -> [WARN][298] ([i915#2681]) +1 other test warn [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][299] ([i915#5354] / [i915#6095]) -> [SKIP][300] ([i915#4423] / [i915#5354] / [i915#6095]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-17/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-gen12-mc-ccs.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg1: [SKIP][301] ([i915#3555]) -> [SKIP][302] ([i915#3555] / [i915#4423]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-max-size.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][303] ([i915#3955]) -> [SKIP][304] ([fdo#110189] / [i915#3955]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: [SKIP][305] ([i915#3458]) -> [SKIP][306] ([i915#3458] / [i915#4423]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][307] ([i915#3361]) -> [SKIP][308] ([i915#4281]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][309] ([i915#9351]) -> [INCOMPLETE][310] ([i915#5493]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14111/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [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#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [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#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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [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#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [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#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 [i915#9593]: https://gitlab.freedesktop.org/drm/intel/issues/9593 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [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#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [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_7669 -> IGTPW_10510 CI-20190529: 20190529 CI_DRM_14111: 86d0316f679868605ed771544c96bab5c8eaf994 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10510: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html IGT_7669: 418064e40ca6399700b0548983fdb679be4d855b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10510/index.html [-- Attachment #2: Type: text/html, Size: 102533 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 9:01 [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue Matthew Auld ` (2 preceding siblings ...) 2024-01-11 13:08 ` ✓ Fi.CI.IGT: success " Patchwork @ 2024-01-11 20:32 ` Randhawa, Jagmeet 2024-01-11 20:32 ` Randhawa, Jagmeet 3 siblings, 1 reply; 8+ messages in thread From: Randhawa, Jagmeet @ 2024-01-11 20:32 UTC (permalink / raw) To: Matthew Auld, igt-dev [-- Attachment #1: Type: text/plain, Size: 1568 bytes --] On 1/11/2024 1:01 AM, Matthew Auld wrote: > The gt_id of the engine is not a valid bind queue. Typically it is zero > so we likely don't notice anything, but that might not always be the > case. > > Signed-off-by: Matthew Auld<matthew.auld@intel.com> > Cc: Jagmeet Randhawa<jagmeet.randhawa@intel.com> > --- > tests/intel/xe_exec_store.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c > index 870394d3c..3ec84295b 100644 > --- a/tests/intel/xe_exec_store.c > +++ b/tests/intel/xe_exec_store.c > @@ -217,7 +217,7 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci, > dst_offset[i] = intel_allocator_alloc_with_strategy(ahnd, bo[i], > bo_size, 0, > ALLOC_STRATEGY_LOW_TO_HIGH); > - xe_vm_bind_async(fd, vm, eci->gt_id, bo[i], 0, dst_offset[i], bo_size, sync, 1); > + xe_vm_bind_async(fd, vm, 0, bo[i], 0, dst_offset[i], bo_size, sync, 1); > } > > batch_map = xe_bo_map(fd, bo[i-1], bo_size); > @@ -303,7 +303,7 @@ static void persistent(int fd) > vram_if_possible(fd, engine->instance.gt_id), > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > - xe_vm_bind_async(fd, vm, engine->instance.gt_id, sd_batch, 0, addr, batch_size, &sync, 1); > + xe_vm_bind_async(fd, vm, 0, sd_batch, 0, addr, batch_size, &sync, 1); > sd_data = xe_bo_map(fd, sd_batch, batch_size); > prt_data = xe_bo_map(fd, prt_batch, batch_size); > Reviewed-by: Jagmeet Randhawa<jagmeet.randhawa@intel.com> [-- Attachment #2: Type: text/html, Size: 2391 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue 2024-01-11 20:32 ` [PATCH i-g-t] " Randhawa, Jagmeet @ 2024-01-11 20:32 ` Randhawa, Jagmeet 0 siblings, 0 replies; 8+ messages in thread From: Randhawa, Jagmeet @ 2024-01-11 20:32 UTC (permalink / raw) To: Matthew Auld, igt-dev [-- Attachment #1: Type: text/plain, Size: 1568 bytes --] On 1/11/2024 1:01 AM, Matthew Auld wrote: > The gt_id of the engine is not a valid bind queue. Typically it is zero > so we likely don't notice anything, but that might not always be the > case. > > Signed-off-by: Matthew Auld<matthew.auld@intel.com> > Cc: Jagmeet Randhawa<jagmeet.randhawa@intel.com> > --- > tests/intel/xe_exec_store.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c > index 870394d3c..3ec84295b 100644 > --- a/tests/intel/xe_exec_store.c > +++ b/tests/intel/xe_exec_store.c > @@ -217,7 +217,7 @@ static void store_cachelines(int fd, struct drm_xe_engine_class_instance *eci, > dst_offset[i] = intel_allocator_alloc_with_strategy(ahnd, bo[i], > bo_size, 0, > ALLOC_STRATEGY_LOW_TO_HIGH); > - xe_vm_bind_async(fd, vm, eci->gt_id, bo[i], 0, dst_offset[i], bo_size, sync, 1); > + xe_vm_bind_async(fd, vm, 0, bo[i], 0, dst_offset[i], bo_size, sync, 1); > } > > batch_map = xe_bo_map(fd, bo[i-1], bo_size); > @@ -303,7 +303,7 @@ static void persistent(int fd) > vram_if_possible(fd, engine->instance.gt_id), > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > - xe_vm_bind_async(fd, vm, engine->instance.gt_id, sd_batch, 0, addr, batch_size, &sync, 1); > + xe_vm_bind_async(fd, vm, 0, sd_batch, 0, addr, batch_size, &sync, 1); > sd_data = xe_bo_map(fd, sd_batch, batch_size); > prt_data = xe_bo_map(fd, prt_batch, batch_size); > Reviewed-by: Jagmeet Randhawa<jagmeet.randhawa@intel.com> [-- Attachment #2: Type: text/html, Size: 2391 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-18 11:16 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-11 9:01 [PATCH i-g-t] tests/intel/xe_exec_store: don't pass gt_id as bind queue Matthew Auld 2024-01-11 11:01 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-11 11:20 ` ✗ CI.xeBAT: failure " Patchwork 2024-01-12 17:43 ` Kamil Konieczny 2024-01-18 11:16 ` Illipilli, TejasreeX 2024-01-11 13:08 ` ✓ Fi.CI.IGT: success " Patchwork 2024-01-11 20:32 ` [PATCH i-g-t] " Randhawa, Jagmeet 2024-01-11 20:32 ` Randhawa, Jagmeet
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox