* [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation
@ 2026-03-18 6:35 Varun Gupta
2026-03-18 7:19 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Varun Gupta @ 2026-03-18 6:35 UTC (permalink / raw)
To: igt-dev; +Cc: nishit.sharma, priyanka.dandamudi
Add a second batch to validate hit-under-miss behavior: placing the BB
at PREFETCH_ADDR ensures the page is already mapped when the shader
prefetch runs, so the prefetch fault counter should not increment.
Add SVM mode (prefetch-fault-svm subtest) that creates the VM with
CPU_ADDR_MIRROR and uses mmap() at PREFETCH_ADDR to make the page
GPU-accessible before the hit-under-miss batch.
Other changes:
- Extract PREFETCH_ADDR and USER_FENCE_VALUE into defines
- Update stat name to 'invalid_prefetch_pagefault_count'
- Add missing cleanup (intel_buf_destroy, xe_exec_queue_destroy,
xe_vm_destroy)
v2:
- Move xe_vm_create() before if(svm) as it is common to both paths (Nishit)
- Separate SVM and non-SVM specific code into if/else blocks (Nishit)
- Add BB_OFFSET and BB_OFFSET_SVM defines (Nishit)
- Add comments wherever needed (Nishit)
Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
tests/intel/xe_prefetch_fault.c | 127 ++++++++++++++++++++++++++------
1 file changed, 103 insertions(+), 24 deletions(-)
diff --git a/tests/intel/xe_prefetch_fault.c b/tests/intel/xe_prefetch_fault.c
index 4a143374a..988cf940d 100644
--- a/tests/intel/xe_prefetch_fault.c
+++ b/tests/intel/xe_prefetch_fault.c
@@ -25,6 +25,10 @@
#define WALKER_Y_DIM 1
#define PAGE_SIZE 4096
#define COLOR_C4 0xC4C4C4C4
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+#define PREFETCH_ADDR 0x1f000000
+#define BB_OFFSET 0x1b000000
+#define BB_OFFSET_SVM 0x2b000000
struct dim_t {
uint32_t x;
@@ -118,7 +122,7 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
static struct gpgpu_shader *shader;
shader = gpgpu_shader_create(fd);
- gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, 0x1f000000));
+ gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, PREFETCH_ADDR));
gpgpu_shader__eot(shader);
return shader;
@@ -126,63 +130,127 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
/**
* SUBTEST: prefetch-fault
- * Description: Validate L1/L2 cache prefetch fault.
+ * Description: Validate prefetch fault and hit-under-miss behavior
+ * Run type: FULL
+ *
+ * SUBTEST: prefetch-fault-svm
+ * Description: Validate prefetch fault and hit-under-miss behavior in SVM mode
* Run type: FULL
*/
-
-static void test_prefetch(int fd, struct drm_xe_engine_class_instance *hwe)
+static void test_prefetch_fault(int fd, struct drm_xe_engine_class_instance *hwe, bool svm)
{
- /* faulty address 0x1f000000 should be beyond bb_offset+bb_size. */
- const uint64_t bb_offset = 0x1b000000;
+ const uint64_t bb_offset = BB_OFFSET;
+ /*
+ * For the hit-under-miss run, place the batch at PREFETCH_ADDR in
+ * non-SVM mode so the BO bind maps that page before the shader runs.
+ * In SVM mode PREFETCH_ADDR is reserved for the mmap, so use a
+ * separate offset that doesn't collide with it.
+ */
+ const uint64_t bb_offset2 = svm ? BB_OFFSET_SVM : PREFETCH_ADDR;
const size_t bb_size = 4096;
- struct dim_t w_dim;
+ static const char *stat = "invalid_prefetch_pagefault_count";
+ struct dim_t w_dim = { .x = WALKER_X_DIM, .y = WALKER_Y_DIM };
struct gpgpu_shader *shader;
struct intel_bb *ibb;
struct intel_buf *buf;
- uint32_t *ptr;
uint32_t exec_queue_id, vm;
+ void *cpu_data = NULL;
int prefetch_pre, prefetch_pos;
- static const char *stat = "prefetch_pagefault_count";
-
- w_dim.x = WALKER_X_DIM;
- w_dim.y = WALKER_Y_DIM;
+ uint32_t *ptr;
buf = create_buf(fd, w_dim.x, w_dim.y, COLOR_C4);
- prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
-
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+ if (svm) {
+ /*
+ * Enable SVM: mirror the full VA space so GPU page faults are
+ * resolved via HMM against the CPU page tables.
+ */
+ struct xe_device *xe = xe_device_get(fd);
+ uint64_t vm_sync = 0;
+ struct drm_xe_sync sync[1] = {
+ { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE },
+ };
+
+ sync[0].addr = to_user_pointer(&vm_sync);
+ __xe_vm_bind_assert(fd, vm, 0, 0, 0, 0, 0x1ull << xe->va_bits,
+ DRM_XE_VM_BIND_OP_MAP,
+ DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR,
+ sync, 1, 0, 0);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+ }
+
exec_queue_id = xe_exec_queue_create(fd, vm, hwe, 0);
- ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm,
- bb_offset, bb_size);
+ prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+
+ /* First run: PREFETCH_ADDR is unmapped, so each shader lane raises a prefetch fault. */
+ ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset, bb_size);
intel_bb_set_lr_mode(ibb, true);
shader = get_prefetch_shader(fd);
-
gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
-
gpgpu_shader_destroy(shader);
+ intel_bb_sync(ibb);
+ intel_bb_destroy(ibb);
+ prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ igt_assert_eq(prefetch_pos, prefetch_pre + w_dim.x * w_dim.y);
+
+ /*
+ * Hit-under-miss: ensure the page at PREFETCH_ADDR is already mapped
+ * before the prefetch shader runs again. The fault is resolved
+ * successfully so the prefetch counter must not change.
+ *
+ * SVM: mmap at PREFETCH_ADDR creates a CPU page table entry.
+ * The kernel resolves the GPU pagefault via HMM.
+ * Non-SVM: placing the batch buffer at PREFETCH_ADDR causes the
+ * BO fault path to map the page.
+ */
+ if (svm) {
+ cpu_data = mmap((void *)PREFETCH_ADDR, PAGE_SIZE,
+ PROT_READ | PROT_WRITE,
+ MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
+ -1, 0);
+ igt_assert(cpu_data == (void *)PREFETCH_ADDR);
+ /* Touch the page to populate the CPU PTE so HMM can resolve the GPU fault. */
+ memset(cpu_data, 0xAB, PAGE_SIZE);
+ prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ } else {
+ prefetch_pre = prefetch_pos;
+ }
+ ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset2, bb_size);
+ intel_bb_set_lr_mode(ibb, true);
+
+ shader = get_prefetch_shader(fd);
+ gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
+ gpgpu_shader_destroy(shader);
intel_bb_sync(ibb);
- ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
+ prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ igt_assert_eq(prefetch_pos, prefetch_pre);
+ /* Verify buffer contents */
+ ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
for (int j = 0; j < w_dim.y; j++)
for (int i = 0; i < w_dim.x; i++) {
igt_assert_f(ptr[j * w_dim.x + i] == COLOR_C4,
"Expected 0x%02x, found 0x%02x at (%d,%d)\n",
COLOR_C4, ptr[j * w_dim.x + i], i, j);
}
- /* Validate prefetch count. */
- prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
- igt_assert_eq(prefetch_pos, prefetch_pre + w_dim.x * w_dim.y);
-
munmap(ptr, buf->size);
+ /* Cleanup */
+ if (svm && cpu_data)
+ munmap(cpu_data, PAGE_SIZE);
+
intel_bb_destroy(ibb);
+ intel_buf_destroy(buf);
+ xe_exec_queue_destroy(fd, exec_queue_id);
+ xe_vm_destroy(fd, vm);
}
int igt_main()
@@ -201,7 +269,18 @@ int igt_main()
hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
hwe->engine_instance)
- test_prefetch(fd, hwe);
+ test_prefetch_fault(fd, hwe, false);
+ }
+ }
+ }
+
+ igt_subtest_with_dynamic("prefetch-fault-svm") {
+ xe_for_each_engine(fd, hwe) {
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER ||
+ hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
+ igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
+ hwe->engine_instance)
+ test_prefetch_fault(fd, hwe, true);
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
@ 2026-03-18 7:19 ` Patchwork
2026-03-18 7:49 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-18 7:19 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5731 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14801_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 14)
------------------------------
Additional (2): bat-adlp-7 bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14801_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#2244] / [Intel XE#455])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: NOTRUN -> [DMESG-WARN][2] ([Intel XE#7483]) +12 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#5488])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#979])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][13] ([Intel XE#6566]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14801
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4742-146a21986f74225d0343edeb925095825fa5474f
IGTPW_14801: 14801
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4742-146a21986f74225d0343edeb925095825fa5474f: 146a21986f74225d0343edeb925095825fa5474f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/index.html
[-- Attachment #2: Type: text/html, Size: 6839 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-18 7:19 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
@ 2026-03-18 7:49 ` Patchwork
2026-03-18 9:00 ` [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Sharma, Nishit
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-18 7:49 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3291 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from IGT_8807 -> IGTPW_14801
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14801 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6] +78 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][7] ([i915#13735]) -> [PASS][8] +80 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][9] ([i915#13735] / [i915#15673]) -> [PASS][10] +49 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14801
* Linux: CI_DRM_18164 -> CI_DRM_18171
CI-20190529: 20190529
CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18171: 146a21986f74225d0343edeb925095825fa5474f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14801: 14801
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/index.html
[-- Attachment #2: Type: text/html, Size: 4246 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-18 7:19 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
2026-03-18 7:49 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-18 9:00 ` Sharma, Nishit
2026-03-19 11:56 ` ✓ i915.CI.Full: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
2026-03-19 19:44 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Sharma, Nishit @ 2026-03-18 9:00 UTC (permalink / raw)
To: Varun Gupta, igt-dev; +Cc: priyanka.dandamudi
On 3/18/2026 12:05 PM, Varun Gupta wrote:
> Add a second batch to validate hit-under-miss behavior: placing the BB
> at PREFETCH_ADDR ensures the page is already mapped when the shader
> prefetch runs, so the prefetch fault counter should not increment.
>
> Add SVM mode (prefetch-fault-svm subtest) that creates the VM with
> CPU_ADDR_MIRROR and uses mmap() at PREFETCH_ADDR to make the page
> GPU-accessible before the hit-under-miss batch.
>
> Other changes:
> - Extract PREFETCH_ADDR and USER_FENCE_VALUE into defines
> - Update stat name to 'invalid_prefetch_pagefault_count'
> - Add missing cleanup (intel_buf_destroy, xe_exec_queue_destroy,
> xe_vm_destroy)
>
> v2:
> - Move xe_vm_create() before if(svm) as it is common to both paths (Nishit)
> - Separate SVM and non-SVM specific code into if/else blocks (Nishit)
> - Add BB_OFFSET and BB_OFFSET_SVM defines (Nishit)
> - Add comments wherever needed (Nishit)
>
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
> tests/intel/xe_prefetch_fault.c | 127 ++++++++++++++++++++++++++------
> 1 file changed, 103 insertions(+), 24 deletions(-)
>
> diff --git a/tests/intel/xe_prefetch_fault.c b/tests/intel/xe_prefetch_fault.c
> index 4a143374a..988cf940d 100644
> --- a/tests/intel/xe_prefetch_fault.c
> +++ b/tests/intel/xe_prefetch_fault.c
> @@ -25,6 +25,10 @@
> #define WALKER_Y_DIM 1
> #define PAGE_SIZE 4096
> #define COLOR_C4 0xC4C4C4C4
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +#define PREFETCH_ADDR 0x1f000000
> +#define BB_OFFSET 0x1b000000
> +#define BB_OFFSET_SVM 0x2b000000
>
> struct dim_t {
> uint32_t x;
> @@ -118,7 +122,7 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
> static struct gpgpu_shader *shader;
>
> shader = gpgpu_shader_create(fd);
> - gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, 0x1f000000));
> + gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, PREFETCH_ADDR));
> gpgpu_shader__eot(shader);
>
> return shader;
> @@ -126,63 +130,127 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
>
> /**
> * SUBTEST: prefetch-fault
> - * Description: Validate L1/L2 cache prefetch fault.
> + * Description: Validate prefetch fault and hit-under-miss behavior
> + * Run type: FULL
> + *
> + * SUBTEST: prefetch-fault-svm
> + * Description: Validate prefetch fault and hit-under-miss behavior in SVM mode
> * Run type: FULL
> */
> -
> -static void test_prefetch(int fd, struct drm_xe_engine_class_instance *hwe)
> +static void test_prefetch_fault(int fd, struct drm_xe_engine_class_instance *hwe, bool svm)
> {
> - /* faulty address 0x1f000000 should be beyond bb_offset+bb_size. */
> - const uint64_t bb_offset = 0x1b000000;
> + const uint64_t bb_offset = BB_OFFSET;
> + /*
> + * For the hit-under-miss run, place the batch at PREFETCH_ADDR in
> + * non-SVM mode so the BO bind maps that page before the shader runs.
> + * In SVM mode PREFETCH_ADDR is reserved for the mmap, so use a
> + * separate offset that doesn't collide with it.
> + */
> + const uint64_t bb_offset2 = svm ? BB_OFFSET_SVM : PREFETCH_ADDR;
small nit: use simple variable name
const not required
> const size_t bb_size = 4096;
> - struct dim_t w_dim;
> + static const char *stat = "invalid_prefetch_pagefault_count";
> + struct dim_t w_dim = { .x = WALKER_X_DIM, .y = WALKER_Y_DIM };
> struct gpgpu_shader *shader;
> struct intel_bb *ibb;
> struct intel_buf *buf;
> - uint32_t *ptr;
> uint32_t exec_queue_id, vm;
> + void *cpu_data = NULL;
> int prefetch_pre, prefetch_pos;
small nit: should be prefetch_post
> - static const char *stat = "prefetch_pagefault_count";
> -
> - w_dim.x = WALKER_X_DIM;
> - w_dim.y = WALKER_Y_DIM;
> + uint32_t *ptr;
>
> buf = create_buf(fd, w_dim.x, w_dim.y, COLOR_C4);
>
> - prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> -
> vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
> DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
>
> + if (svm) {
> + /*
> + * Enable SVM: mirror the full VA space so GPU page faults are
> + * resolved via HMM against the CPU page tables.
> + */
> + struct xe_device *xe = xe_device_get(fd);
> + uint64_t vm_sync = 0;
> + struct drm_xe_sync sync[1] = {
> + { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE },
> + };
> +
> + sync[0].addr = to_user_pointer(&vm_sync);
> + __xe_vm_bind_assert(fd, vm, 0, 0, 0, 0, 0x1ull << xe->va_bits,
> + DRM_XE_VM_BIND_OP_MAP,
> + DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR,
> + sync, 1, 0, 0);
> + xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
> + }
> +
> exec_queue_id = xe_exec_queue_create(fd, vm, hwe, 0);
>
> - ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm,
> - bb_offset, bb_size);
> + prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> +
> + /* First run: PREFETCH_ADDR is unmapped, so each shader lane raises a prefetch fault. */
> + ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset, bb_size);
> intel_bb_set_lr_mode(ibb, true);
>
> shader = get_prefetch_shader(fd);
> -
> gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
> -
> gpgpu_shader_destroy(shader);
> + intel_bb_sync(ibb);
> + intel_bb_destroy(ibb);
>
> + prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> + igt_assert_eq(prefetch_pos, prefetch_pre + w_dim.x * w_dim.y);
> +
> + /*
> + * Hit-under-miss: ensure the page at PREFETCH_ADDR is already mapped
> + * before the prefetch shader runs again. The fault is resolved
> + * successfully so the prefetch counter must not change.
> + *
> + * SVM: mmap at PREFETCH_ADDR creates a CPU page table entry.
> + * The kernel resolves the GPU pagefault via HMM.
> + * Non-SVM: placing the batch buffer at PREFETCH_ADDR causes the
> + * BO fault path to map the page.
> + */
> + if (svm) {
> + cpu_data = mmap((void *)PREFETCH_ADDR, PAGE_SIZE,
> + PROT_READ | PROT_WRITE,
> + MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
> + -1, 0);
> + igt_assert(cpu_data == (void *)PREFETCH_ADDR);
> + /* Touch the page to populate the CPU PTE so HMM can resolve the GPU fault. */
> + memset(cpu_data, 0xAB, PAGE_SIZE);
> + prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> + } else {
> + prefetch_pre = prefetch_pos;
> + }
> + ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset2, bb_size);
> + intel_bb_set_lr_mode(ibb, true);
> +
> + shader = get_prefetch_shader(fd);
> + gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
> + gpgpu_shader_destroy(shader);
> intel_bb_sync(ibb);
>
> - ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
> + prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> + igt_assert_eq(prefetch_pos, prefetch_pre);
>
> + /* Verify buffer contents */
> + ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
> for (int j = 0; j < w_dim.y; j++)
> for (int i = 0; i < w_dim.x; i++) {
> igt_assert_f(ptr[j * w_dim.x + i] == COLOR_C4,
> "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
> COLOR_C4, ptr[j * w_dim.x + i], i, j);
> }
> - /* Validate prefetch count. */
> - prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
> - igt_assert_eq(prefetch_pos, prefetch_pre + w_dim.x * w_dim.y);
> -
> munmap(ptr, buf->size);
>
> + /* Cleanup */
> + if (svm && cpu_data)
> + munmap(cpu_data, PAGE_SIZE);
> +
> intel_bb_destroy(ibb);
> + intel_buf_destroy(buf);
> + xe_exec_queue_destroy(fd, exec_queue_id);
> + xe_vm_destroy(fd, vm);
> }
>
> int igt_main()
> @@ -201,7 +269,18 @@ int igt_main()
> hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
> igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
> hwe->engine_instance)
> - test_prefetch(fd, hwe);
> + test_prefetch_fault(fd, hwe, false);
> + }
> + }
> + }
> +
> + igt_subtest_with_dynamic("prefetch-fault-svm") {
> + xe_for_each_engine(fd, hwe) {
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER ||
> + hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
> + igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
> + hwe->engine_instance)
> + test_prefetch_fault(fd, hwe, true);
> }
> }
> }
LGTM
Reviewed-by: Nishit Sharma <nishit.sharma@intel.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
` (2 preceding siblings ...)
2026-03-18 9:00 ` [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Sharma, Nishit
@ 2026-03-19 11:56 ` Patchwork
2026-03-19 19:44 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-19 11:56 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138231 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18171_full -> IGTPW_14801_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14801_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#15678])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#3281]) +6 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#7697])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][7] -> [INCOMPLETE][8] ([i915#13356])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#12392] / [i915#13356])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][11] -> [FAIL][12] ([i915#9561]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][13] ([i915#13356])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-snb5/igt@gem_ctx_persistence@idempotent.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4036])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#6334]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#6334]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@gem_exec_fence@submit67.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][33] +13 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@gem_exec_reloc@basic-softpin.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +8 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +15 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#7276])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][40] ([i915#2190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk4/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#12193])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-7/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@gem_mmap@bad-object.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@gem_mmap_gtt@close-race.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][56] ([i915#14702] / [i915#2658])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#13398])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@gem_readwrite@write-bad-handle.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][63] +362 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#8411])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][69] ([i915#13809])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk3/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#3323])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_drm_fdinfo@busy-hang@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#14073]) +6 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@i915_drm_fdinfo@busy-hang@ccs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#11527]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#11527]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#11527]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#14073]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#15479]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#15479]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][86] ([i915#15342]) +1 other test abort
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu-1: NOTRUN -> [ABORT][87] ([i915#15342]) +1 other test abort
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][88] -> [DMESG-WARN][89] ([i915#13029] / [i915#14545])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-5/igt@i915_module_load@reload-no-display.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][90] -> [DMESG-WARN][91] ([i915#13029] / [i915#14545])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-19/igt@i915_module_load@reload-no-display.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#8399])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#6590]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#6590]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6590]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#14498])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][98] ([i915#13356])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#11681])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#4387])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#6188])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6645])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][105] -> [INCOMPLETE][106] ([i915#4817])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#7707])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][113] ([i915#1769])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#5286])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][118] -> [FAIL][119] ([i915#15733] / [i915#5138])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3828])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3828])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3828])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3828])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3828])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][127] +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14544]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6095]) +47 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#6095]) +61 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +92 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4423] / [i915#6095]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][139] +24 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12805]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12805]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +82 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#12805])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#12805])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#12805])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][148] ([i915#15582]) +1 other test incomplete
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][149] -> [INCOMPLETE][150] ([i915#15582])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#6095]) +6 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#6095]) +59 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6095]) +39 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +208 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3742])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3742])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][157] +17 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#9979])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#6944] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116] / [i915#3299])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#15330] / [i915#3299])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15330] / [i915#3116])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#15330] / [i915#3299])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#15330]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#15330])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#15330])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#15330])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#6944]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#6944])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#6944])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][183] -> [FAIL][184] ([i915#13566]) +5 other tests fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][185] ([i915#13566]) +7 other tests fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [PASS][187] -> [FAIL][188] ([i915#13566])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#13049]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8814]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][193] ([i915#13566]) +4 other tests fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#9809]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][196] ([i915#15804]) +1 other test fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9067])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9833])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9723])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9833])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#9723]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3804])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#1769] / [i915#3555] / [i915#3804])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/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][206] ([i915#3804])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#3804])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#13749])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#13707] / [i915#14544])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#13707])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#13707])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8812])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8812])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3955])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#1839]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9337])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#9934]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +9 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#9934]) +14 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#9934]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12745] / [i915#4839])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][228] ([i915#6113]) +1 other test incomplete
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12745])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#15643]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15643])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#15643] / [i915#5190]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#15643]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15643]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8810] / [i915#8813])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8810] / [i915#8813])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#15643])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15643]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#15643]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][240] -> [SKIP][241] ([i915#15672])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-5/igt@kms_force_connector_basic@force-edid.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#8708]) +13 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8708]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#14544] / [i915#1825]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5439])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#10055])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15102])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#15102]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#15102] / [i915#3023]) +23 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15102] / [i915#3458]) +10 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3458]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][252] +29 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#15102]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#15102]) +22 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15104])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15102]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15102]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +20 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708]) +10 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +54 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#1825]) +20 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][262] +66 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][263] -> [SKIP][264] ([i915#13030])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
- shard-mtlp: [PASS][265] -> [SKIP][266] ([i915#15725])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#12713] / [i915#3555] / [i915#8228]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#15459])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15458])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#15460])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#15458])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15638] / [i915#15722])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15638] / [i915#15722])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#15638] / [i915#15722])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#15638] / [i915#15722])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15638] / [i915#15722])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#6301])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][282] +25 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][283] -> [INCOMPLETE][284] ([i915#12756] / [i915#13476])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk10: NOTRUN -> [INCOMPLETE][285] ([i915#12756] / [i915#13409] / [i915#13476])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][286] -> [INCOMPLETE][287] ([i915#13476])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][288] ([i915#13476])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#14712])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#13705])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#13705])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#14544] / [i915#15709])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#15709]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#15709]) +3 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#15709]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#15608]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#15709]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#15608]) +5 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#15608]) +5 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#15608]) +7 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15709])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-dg1: [PASS][303] -> [DMESG-WARN][304] ([i915#4423])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-15/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#13958]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#13958]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-x.html
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#13958])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-x.html
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#13958])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#14259])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#14259])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#15329] / [i915#3555])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#15329]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#15329]) +4 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#15329]) +4 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#15329] / [i915#6953])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15329]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#5354])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#5354]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#9812]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][323] -> [SKIP][324] ([i915#15073])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][325] -> [SKIP][326] ([i915#15073]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#15073]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#6524])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#11520]) +7 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][330] ([i915#11520]) +15 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][331] ([i915#11520]) +2 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9808])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12316]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][334] ([i915#11520]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk11/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#11520]) +8 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#11520]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#14544] / [i915#9683])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-glk11: NOTRUN -> [SKIP][341] +109 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk11/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +10 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@kms_psr@fbc-pr-sprite-render.html
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#9732]) +19 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +23 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9688]) +9 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-4/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +13 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4077] / [i915#9688]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-7/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#12755])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#12755]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#4884])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#4235])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#5289]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#3555]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][355] ([i915#13179]) +1 other test abort
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk2/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#8623])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#8623])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][359] ([i915#12276]) +2 other tests incomplete
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@wait-busy:
- shard-dg1: NOTRUN -> [DMESG-WARN][360] ([i915#4423])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_vblank@wait-busy.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#15243] / [i915#3555]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#8808])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-3/igt@kms_vrr@flipline.html
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#15243] / [i915#3555])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#11920])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#9906])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#9906])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#2436])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@polling@0-rcs0:
- shard-tglu: [PASS][368] -> [FAIL][369] ([i915#10538]) +1 other test fail
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-5/igt@perf@polling@0-rcs0.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@perf@polling@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#2433])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#2433]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][372] +137 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-snb5/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@event-wait:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#8807])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#8807])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#8516])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#3291] / [i915#3708]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9917])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][378] ([i915#13356]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][380] ([i915#4270]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [INCOMPLETE][382] ([i915#13356]) -> [PASS][383] +2 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@gem_workarounds@suspend-resume.html
* igt@i915_hangman@detector:
- shard-mtlp: [ABORT][384] -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-5/igt@i915_hangman@detector.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-5/igt@i915_hangman@detector.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][386] ([i915#12655] / [i915#3555]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-3/igt@kms_color@deep-color.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][388] ([i915#13566]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-mtlp: [ABORT][390] ([i915#13562]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [ABORT][392] -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][394] ([i915#10826]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][396] ([i915#15389] / [i915#6880]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][398] ([i915#10056]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][400] ([i915#3555] / [i915#8228]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-4/igt@kms_hdr@bpc-switch.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][402] ([i915#15073]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: [SKIP][404] ([i915#15073]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2: [ABORT][406] ([i915#15132]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-10/igt@kms_vblank@ts-continuation-suspend.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-8/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][408] ([i915#12276]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] +4 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: [FAIL][412] ([i915#4349]) -> [PASS][413] +5 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [FAIL][414] ([i915#4349]) -> [PASS][415] +3 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][416] ([i915#8411]) -> [SKIP][417] ([i915#14544] / [i915#8411]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][418] ([i915#9323]) -> [SKIP][419] ([i915#14544] / [i915#9323])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][420] ([i915#6335]) -> [SKIP][421] ([i915#14544] / [i915#6335])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][422] ([i915#4525]) -> [SKIP][423] ([i915#14544] / [i915#4525])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [DMESG-FAIL][424] ([i915#15478]) -> [FAIL][425] ([i915#15816])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-4/igt@gem_exec_big@single.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][426] ([i915#14544] / [i915#6344]) -> [SKIP][427] ([i915#6344])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#3281]) -> [SKIP][429] ([i915#3281]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][430] ([i915#3281]) -> [SKIP][431] ([i915#14544] / [i915#3281])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-active.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#4613]) -> [SKIP][433] ([i915#4613]) +2 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: [SKIP][436] ([i915#2527]) -> [SKIP][437] ([i915#14544] / [i915#2527])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#2527]) -> [SKIP][439] ([i915#2527])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: [SKIP][440] ([i915#14544]) -> [SKIP][441] +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][442] ([i915#7984]) -> [SKIP][443] ([i915#14544] / [i915#7984])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-1/igt@i915_power@sanity.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@i915_power@sanity.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][444] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][445] ([i915#12454] / [i915#12712])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#5286]) -> [SKIP][447] ([i915#5286])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][448] ([i915#5286]) -> [SKIP][449] ([i915#14544] / [i915#5286])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: [SKIP][450] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][451] ([i915#4538] / [i915#5286]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][452] ([i915#3638]) -> [SKIP][453] ([i915#14544] / [i915#3638])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][454] -> [SKIP][455] ([i915#14544]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][456] ([i915#6095]) -> [SKIP][457] ([i915#14544] / [i915#6095]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-3/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][458] ([i915#14098] / [i915#6095]) -> [SKIP][459] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#6095]) -> [SKIP][461] ([i915#6095]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][462] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][463] ([i915#14098] / [i915#6095]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][464] ([i915#11151] / [i915#7828]) -> [SKIP][465] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][466] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][467] ([i915#11151] / [i915#7828])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][468] ([i915#15330] / [i915#3116]) -> [SKIP][469] ([i915#14544] / [i915#15330] / [i915#3116])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][470] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][471] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_content_protection@uevent.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#3555]) -> [SKIP][473] ([i915#3555])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][474] ([i915#3555]) -> [SKIP][475] ([i915#14544] / [i915#3555]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][476] ([i915#13049]) -> [SKIP][477] ([i915#13049] / [i915#14544])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][478] ([i915#13691] / [i915#14544]) -> [SKIP][479] ([i915#13691])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#3840]) -> [SKIP][481] ([i915#3840])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][482] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][483] ([i915#12745] / [i915#4839] / [i915#6113])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#9934]) -> [SKIP][485] ([i915#9934]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][486] ([i915#4839]) -> [INCOMPLETE][487] ([i915#4839] / [i915#6113])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: [SKIP][488] ([i915#9934]) -> [SKIP][489] ([i915#14544] / [i915#9934])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: [SKIP][490] ([i915#9934]) -> [SKIP][491] ([i915#4423] / [i915#9934])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-13/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][492] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][493] ([i915#12745] / [i915#4839])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: [SKIP][494] ([i915#15643]) -> [SKIP][495] ([i915#14544] / [i915#15643])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][496] ([i915#4423]) -> [SKIP][497] +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#1825]) -> [SKIP][499] ([i915#1825]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][500] ([i915#15102] / [i915#3458]) -> [SKIP][501] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][503] ([i915#15102] / [i915#3023]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][504] ([i915#15102] / [i915#3023]) -> [SKIP][505] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: [SKIP][506] -> [SKIP][507] ([i915#4423])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][508] ([i915#1825]) -> [SKIP][509] ([i915#14544] / [i915#1825]) +13 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][510] ([i915#12713]) -> [SKIP][511] ([i915#1187] / [i915#12713])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][512] ([i915#12713]) -> [SKIP][513] ([i915#1187] / [i915#12713])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][514] ([i915#1187] / [i915#12713]) -> [SKIP][515] ([i915#12713])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-10/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-rkl: [SKIP][516] ([i915#15709]) -> [SKIP][517] ([i915#14544] / [i915#15709])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][518] ([i915#5354]) -> [SKIP][519] ([i915#14544] / [i915#5354])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][520] ([i915#15128]) -> [FAIL][521] ([i915#15752])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][522] ([i915#15739]) -> [SKIP][523] ([i915#15128])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#9340]) -> [SKIP][525] ([i915#9340])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: [SKIP][526] ([i915#3828]) -> [SKIP][527] ([i915#9340])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][528] ([i915#15073]) -> [SKIP][529] ([i915#14544] / [i915#15073])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: [SKIP][530] ([i915#11520]) -> [SKIP][531] ([i915#11520] / [i915#4423])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][532] ([i915#11520]) -> [SKIP][533] ([i915#11520] / [i915#14544]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][534] ([i915#11520] / [i915#14544]) -> [SKIP][535] ([i915#11520])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][536] ([i915#9683]) -> [SKIP][537] ([i915#14544] / [i915#9683])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-suspend:
- shard-rkl: [SKIP][538] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#9732]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-3/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: [SKIP][540] ([i915#1072] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][542] ([i915#5289]) -> [SKIP][543] ([i915#14544] / [i915#5289]) +1 other test skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][544] ([i915#15243] / [i915#3555]) -> [SKIP][545] ([i915#14544] / [i915#15243] / [i915#3555])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-4/igt@kms_vrr@flip-suspend.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@kms_vrr@flip-suspend.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][546] ([i915#3291] / [i915#3708]) -> [SKIP][547] ([i915#14544] / [i915#3291] / [i915#3708])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-5/igt@prime_vgem@basic-read.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#9917]) -> [SKIP][549] ([i915#9917])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18171/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14801
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18171: 146a21986f74225d0343edeb925095825fa5474f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14801: 14801
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14801/index.html
[-- Attachment #2: Type: text/html, Size: 184036 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
` (3 preceding siblings ...)
2026-03-19 11:56 ` ✓ i915.CI.Full: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
@ 2026-03-19 19:44 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-19 19:44 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 63086 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2)
URL : https://patchwork.freedesktop.org/series/163015/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14801_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14801_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14801_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14801_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html
* {igt@xe_prefetch_fault@prefetch-fault-svm} (NEW):
- shard-bmg: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@xe_prefetch_fault@prefetch-fault-svm.html
- shard-lnl: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-lnl-6/igt@xe_prefetch_fault@prefetch-fault-svm.html
New tests
---------
New tests have been introduced between XEIGT_8807_FULL and XEIGTPW_14801_FULL:
### New IGT tests (1) ###
* igt@xe_prefetch_fault@prefetch-fault-svm:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14801_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_color@ctm-max:
- shard-bmg: [PASS][17] -> [ABORT][18] ([Intel XE#5545]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_color@ctm-max.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_color@ctm-max.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2321] / [Intel XE#7355])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2320]) +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2291]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2291] / [Intel XE#7343])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#4302])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#3009])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_dp_aux_dev.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-panning@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][31] -> [DMESG-FAIL][32] ([Intel XE#5545]) +1 other test dmesg-fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning@ab-dp2-hdmi-a3.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@2x-wf_vblank-ts-check.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#7545])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2311]) +15 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4141]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7061] / [Intel XE#7356])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2313]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2352] / [Intel XE#7399])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2312]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#1503])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_hdr@static-toggle-dpms.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7283])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][47] -> [ABORT][48] ([Intel XE#5545] / [Intel XE#6652])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#4596])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#5021] / [Intel XE#7377])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7376] / [Intel XE#870])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2391] / [Intel XE#6927])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#7340] / [Intel XE#7504])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2505] / [Intel XE#7447])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2387] / [Intel XE#7429])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2414])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1435])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6503])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2168] / [Intel XE#7444])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1499]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#1499])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_vrr@negative-basic.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4837]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7136]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6874]) +15 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_system_allocator@process-many-new-nomemset:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6703]) +20 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_system_allocator@process-many-new-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7138]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1420])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2284] / [Intel XE#7370])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@xe_pm@d3cold-basic.html
* igt@xe_pmu@engine-activity-render-node-load:
- shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#6703]) +135 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_pmu@engine-activity-render-node-load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_pmu@engine-activity-render-node-load.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4733] / [Intel XE#7417])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#944])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-6/igt@xe_query@multigpu-query-engines.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [ABORT][81] ([Intel XE#7578]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: [SKIP][83] ([Intel XE#6779]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][85] ([Intel XE#7445]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][87] ([Intel XE#7621]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][89] ([Intel XE#2291]) -> [PASS][90] +2 other tests pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][91] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][93] ([Intel XE#2316]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][95] ([Intel XE#301]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [INCOMPLETE][97] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3:
- shard-bmg: [DMESG-FAIL][99] ([Intel XE#5545]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][101] ([Intel XE#1503]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_hdr@static-toggle.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][103] ([Intel XE#7086]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][105] ([Intel XE#7340]) -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][107] ([Intel XE#2029] / [Intel XE#7395]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][109] ([Intel XE#1435]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][111] ([Intel XE#6321]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@fault-threads-benchmark:
- shard-bmg: [FAIL][113] -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@xe_exec_system_allocator@fault-threads-benchmark.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-madvise:
- shard-bmg: [SKIP][115] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-madvise.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-madvise.html
* igt@xe_exec_threads@threads-fd-userptr-invalidate-race:
- shard-bmg: [SKIP][117] ([Intel XE#6703]) -> [PASS][118] +107 other tests pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-fd-userptr-invalidate-race.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@xe_exec_threads@threads-fd-userptr-invalidate-race.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][119] ([Intel XE#2327]) -> [SKIP][120] ([Intel XE#6703]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [SKIP][121] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][122] ([Intel XE#6703])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-bmg: [SKIP][123] ([Intel XE#1124]) -> [SKIP][124] ([Intel XE#6703]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#1124]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#7621])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][129] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][130] ([Intel XE#6703])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-bmg: [SKIP][131] ([Intel XE#2887]) -> [SKIP][132] ([Intel XE#6703])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][133] ([Intel XE#3432]) -> [SKIP][134] ([Intel XE#6703])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#2887]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2252]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: [SKIP][139] ([Intel XE#2252]) -> [SKIP][140] ([Intel XE#6703]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#2390] / [Intel XE#6974])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][143] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][144] ([Intel XE#2341])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@legacy.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [FAIL][145] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][146] ([Intel XE#7194])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@legacy-hdcp14.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][147] ([Intel XE#7194]) -> [SKIP][148] ([Intel XE#6703])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][149] ([Intel XE#2341]) -> [FAIL][150] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][151] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][152] ([Intel XE#6705])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@suspend-resume.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: [SKIP][153] ([Intel XE#2320]) -> [SKIP][154] ([Intel XE#6703])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#2320])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#2321] / [Intel XE#7355])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#2291] / [Intel XE#7343])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#2244])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-busy-flip:
- shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2316])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-busy-flip.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [SKIP][165] ([Intel XE#2316]) -> [SKIP][166] ([Intel XE#6703])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#7178] / [Intel XE#7351])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][169] ([Intel XE#2311]) -> [SKIP][170] ([Intel XE#6703]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][171] ([Intel XE#2312]) -> [SKIP][172] ([Intel XE#2311]) +12 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#2311]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#6703])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][177] ([Intel XE#4141]) -> [SKIP][178] ([Intel XE#6703]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][179] ([Intel XE#4141]) -> [SKIP][180] ([Intel XE#2312]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#4141]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-bmg: [SKIP][183] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][184] ([Intel XE#6703]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2312]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][187] ([Intel XE#2311]) -> [SKIP][188] ([Intel XE#2312]) +15 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][189] ([Intel XE#6703]) -> [SKIP][190] ([Intel XE#2352] / [Intel XE#7399])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#2313]) +6 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][193] ([Intel XE#2312]) -> [SKIP][194] ([Intel XE#2313]) +8 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][195] ([Intel XE#2313]) -> [SKIP][196] ([Intel XE#6703]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][197] ([Intel XE#2313]) -> [SKIP][198] ([Intel XE#2312]) +19 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][199] ([Intel XE#3544]) -> [SKIP][200] ([Intel XE#3374] / [Intel XE#3544])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#6901])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#7591])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#7283])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: [SKIP][207] ([Intel XE#7283]) -> [SKIP][208] ([Intel XE#6703]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#2763] / [Intel XE#6886])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][211] ([Intel XE#1489]) -> [SKIP][212] ([Intel XE#6703])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: [SKIP][213] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][214] ([Intel XE#6703]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_psr@fbc-pr-primary-page-flip.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: [SKIP][217] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][218] ([Intel XE#6703])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#6503])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-7/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][221] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][222] ([Intel XE#6703])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flipline:
- shard-bmg: [SKIP][223] ([Intel XE#1499]) -> [SKIP][224] ([Intel XE#6703])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_vrr@flipline.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@kms_vrr@flipline.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable:
- shard-bmg: [SKIP][225] ([Intel XE#4837]) -> [SKIP][226] ([Intel XE#6703])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: [SKIP][227] ([Intel XE#6703]) -> [SKIP][228] ([Intel XE#4837])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-4/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-bmg: [SKIP][229] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][230] ([Intel XE#6703])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: [SKIP][231] ([Intel XE#7140]) -> [SKIP][232] ([Intel XE#6703])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority-cm.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: [SKIP][233] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][234] ([Intel XE#6703])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch:
- shard-bmg: [SKIP][235] ([Intel XE#7136]) -> [SKIP][236] ([Intel XE#6703])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm:
- shard-bmg: [SKIP][237] ([Intel XE#6703]) -> [SKIP][238] ([Intel XE#7136]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: [SKIP][239] ([Intel XE#6703]) -> [SKIP][240] ([Intel XE#6874]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority:
- shard-bmg: [SKIP][241] ([Intel XE#6874]) -> [SKIP][242] ([Intel XE#6703]) +7 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr:
- shard-bmg: [SKIP][243] ([Intel XE#7138]) -> [SKIP][244] ([Intel XE#6703]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-userptr.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-userptr.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: [SKIP][245] ([Intel XE#6703]) -> [SKIP][246] ([Intel XE#7138]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][247] ([Intel XE#6703]) -> [SKIP][248] ([Intel XE#2284] / [Intel XE#7370])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-9/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: [SKIP][249] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][250] ([Intel XE#6703])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_pxp@pxp-optout.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/shard-bmg-2/igt@xe_pxp@pxp-optout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7545
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14801
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4742-146a21986f74225d0343edeb925095825fa5474f
IGTPW_14801: 14801
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4742-146a21986f74225d0343edeb925095825fa5474f: 146a21986f74225d0343edeb925095825fa5474f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14801/index.html
[-- Attachment #2: Type: text/html, Size: 77844 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-19 19:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-18 6:35 [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-18 7:19 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
2026-03-18 7:49 ` ✓ i915.CI.BAT: " Patchwork
2026-03-18 9:00 ` [PATCH i-g-t v2] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Sharma, Nishit
2026-03-19 11:56 ` ✓ i915.CI.Full: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev2) Patchwork
2026-03-19 19:44 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox