* [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing
@ 2026-03-04 11:49 S Sebinraj
2026-03-05 5:09 ` ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: S Sebinraj @ 2026-03-04 11:49 UTC (permalink / raw)
To: igt-dev
Cc: carlos.santa, karthik.b.s, krzysztof.karas, kamil.konieczny,
zbigniew.kempczynski, S Sebinraj
Add a new test to validate explicit fencing.
This test handles multiple planes in a single atomic commit.
This test addresses a critical scenario where drivers must correctly
synchronize planes with mixed fence states.
Test Scenario:
- Creates three planes: one primary, two overlay
- Attaches fences with different states:
- Primary plane: signaled fence (simulating completed GPU work)
- Overlay-1 plane: signaled fence (simulating completed GPU work)
- Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
- Submits all planes in a single atomic commit with IN_FENCE_FD set
- Validates that display waits for ALL fences before updating ANY plane
Bug Detection:
This test catches driver bugs where:
- Planes with signaled fences update prematurely before unsignaled
fences complete, breaking atomic commit semantics
- Fence states are mismanaged across multiple planes causing visual
glitches or corruption
- The driver fails to wait on all IN_FENCE_FDs atomically
The test uses sw_sync timelines to create controllable fence states,
allowing precise validation of fence synchronization behavior. An
OUT_FENCE_PTR is requested to monitor when the display update actually
completes, enabling detection of premature updates.
Implementation Details:
- Uses sw_sync for creating fences with controlled signaling
- Monitors OUT_FENCE to detect premature display updates
- Validates atomic commit integrity across multiple planes
Background:
- A bug regressed for Xe driver on PTL (Android) display handling
of explicit fences when provided two or more buffers at once,
with 1+ already-signaled fences and 1+ not-yet-signaled fences.
https://patchwork.freedesktop.org/patch/662982/
- Adding this test so that IGT contains sufficient testing for the
use of explicit fencing in the KMS Atomic Modesetting APIs.
Changes:
-v6
- Add crc check of expected frame with
reference frame
-v5
- Make overlay plane validation scalable with
overlay count.
- Modify commit message.
-v4
- Fix build errors as per latest API name
-v3
- Add crc check on display update
- Adding proper License entry
- Reduce test description
-v2
- Add crc check instead of visual inspection
- Reduce debug logging which are not needed
- Add a function for initial modset
- Make test not specific to Intel drivers alone
- Sort the included libs in alphabetical order
- Modify set_output func as we want only one
output per pipe
Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
---
tests/kms_explicit_fence.c | 372 +++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 373 insertions(+)
create mode 100644 tests/kms_explicit_fence.c
diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
new file mode 100644
index 000000000..a61ae9889
--- /dev/null
+++ b/tests/kms_explicit_fence.c
@@ -0,0 +1,372 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+/**
+ * TEST: kms explicit fence multiplane
+ * Category: Display
+ * Description: Test explicit fencing with multiple planes and mixed fence states
+ * Driver requirement: i915, xe
+ * Mega feature: General Display Features
+ *
+ * This test validates correct handling of explicit fences when multiple planes
+ * are updated in a single atomic commit with different fence states. This is
+ * critical for catching fence synchronization bugs where the driver might:
+ * 1. Prematurely display buffers with signaled fences before unsignaled fences complete
+ * 2. Mismanage fence states across multiple planes causing visual glitches
+ * 3. Fail to wait on all fences atomically before updating the display
+ */
+
+#include <errno.h>
+#include <poll.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/eventfd.h>
+
+#include "igt.h"
+#include "igt_aux.h"
+#include "sw_sync.h"
+
+/**
+ * SUBTEST: multiplane-atomic-fence-wait
+ * Description: Test 3 planes (1 primary, 2 overlay) with mixed fence states:
+ * 2 planes with signaled fences and 1 plane with unsignaled fence.
+ * Validates that display waits for all fences before updating any plane.
+ */
+
+/* Test configuration macros */
+#define NUM_PLANES 3
+#define PLANE_PRIMARY_IDX 0
+#define PLANE_OVERLAY1_IDX 1
+#define PLANE_OVERLAY2_IDX 2
+#define OVERLAY_COUNT (NUM_PLANES - 1)
+
+#define FENCE_TIMEOUT_MS 2000
+
+#define OVERLAY_SIZE_DIVISOR 3
+#define OVERLAY1_POS_X 100
+#define OVERLAY1_POS_Y 100
+#define OVERLAY2_OFFSET 100
+
+typedef struct {
+ int drm_fd;
+ igt_display_t display;
+ igt_output_t *output;
+ enum pipe pipe;
+ igt_plane_t *primary;
+ igt_plane_t *overlay1;
+ igt_plane_t *overlay2;
+ struct igt_fb primary_fb;
+ struct igt_fb overlay1_fb;
+ struct igt_fb overlay2_fb;
+ drmModeModeInfo *mode;
+ int width, height;
+ igt_pipe_crc_t *pipe_crc;
+} data_t;
+
+static void setup_output(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ igt_crtc_t *crtc;
+ igt_output_t *output;
+
+ for_each_crtc_with_single_output(display, crtc, output) {
+ int overlay_count = 0;
+
+ data->primary = igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY);
+
+ /* Count available overlays - we need at least OVERLAY_COUNT */
+ for (int i = 0; i < OVERLAY_COUNT; i++) {
+ if (igt_crtc_get_plane_type_index(crtc, DRM_PLANE_TYPE_OVERLAY, i))
+ overlay_count++;
+ }
+
+ if (overlay_count >= OVERLAY_COUNT) {
+ data->overlay1 = igt_crtc_get_plane_type_index(crtc,
+ DRM_PLANE_TYPE_OVERLAY,
+ 0);
+ data->overlay2 = igt_crtc_get_plane_type_index(crtc,
+ DRM_PLANE_TYPE_OVERLAY,
+ 1);
+ data->output = output;
+ data->pipe = crtc->pipe;
+ data->mode = igt_output_get_mode(output);
+ data->width = data->mode->hdisplay;
+ data->height = data->mode->vdisplay;
+ return;
+ }
+ }
+
+ igt_skip("Need at least %d overlay planes for this test\n", OVERLAY_COUNT);
+}
+
+static void cleanup_crtc(data_t *data)
+{
+ igt_display_reset(&data->display);
+
+ igt_remove_fb(data->drm_fd, &data->primary_fb);
+ igt_remove_fb(data->drm_fd, &data->overlay1_fb);
+ igt_remove_fb(data->drm_fd, &data->overlay2_fb);
+}
+
+static void create_fbs(data_t *data)
+{
+ int overlay_width = data->width / OVERLAY_SIZE_DIVISOR;
+ int overlay_height = data->height / OVERLAY_SIZE_DIVISOR;
+
+ /* Primary plane - Blue background */
+ igt_create_color_fb(data->drm_fd, data->width, data->height,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 0.0, 0.0, 1.0, /* Blue */
+ &data->primary_fb);
+
+ /* Overlay 1 - Red square */
+ igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 1.0, 0.0, 0.0, /* Red */
+ &data->overlay1_fb);
+
+ /* Overlay 2 - Green square */
+ igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 0.0, 1.0, 0.0, /* Green */
+ &data->overlay2_fb);
+}
+
+static void setup_initial_modeset(data_t *data)
+{
+ /* Initial modeset to establish baseline (no fences) */
+ igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe));
+ igt_plane_set_fb(data->primary, &data->primary_fb);
+ igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
+ igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+ igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
+ igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+ data->overlay2_fb.width, OVERLAY1_POS_Y);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+/**
+ * multiplane_atomic_fence_wait - Test atomic commit with mixed fence states
+ *
+ * This test reproduces the critical scenario where multiple planes are updated
+ * in a single atomic commit with different fence states. The key validation is
+ * that the display does NOT update any plane until ALL fences are signaled.
+ *
+ * Test setup:
+ * - Primary plane: buffer with a signaled fence (already retired)
+ * - Overlay 1 plane: buffer with a signaled fence (already retired)
+ * - Overlay 2 plane: buffer with an UNSIGNALED fence (long-running operation)
+ *
+ * Expected behavior:
+ * - Atomic commit succeeds immediately (non-blocking)
+ * - Display waits internally for ALL fences before updating
+ * - No plane shows its new buffer until the unsignaled fence completes
+ * - After signaling the last fence, all planes update atomically
+ *
+ * Bug detection:
+ * If the driver has a bug, it will either:
+ * 1. Show the primary and overlay1 buffers prematurely (before overlay2's fence signals)
+ * 2. Cause visual glitches from fence mismanagement
+ * 3. Fail the atomic commit
+ */
+static void multiplane_atomic_fence_wait(data_t *data)
+{
+ int timelines[NUM_PLANES];
+ int fences[NUM_PLANES];
+ int ret;
+ int out_fence;
+ igt_plane_t *planes[NUM_PLANES];
+ bool should_signal[NUM_PLANES] = { true, true, false };
+ igt_crc_t crc_before, crc_after, crc_reference, crc_final;
+
+ igt_require_sw_sync();
+
+ setup_initial_modeset(data);
+
+ /* Setup arrays for loop-based processing */
+ planes[PLANE_PRIMARY_IDX] = data->primary;
+ planes[PLANE_OVERLAY1_IDX] = data->overlay1;
+ planes[PLANE_OVERLAY2_IDX] = data->overlay2;
+
+ /* Start CRC capture to verify no premature display updates */
+ igt_pipe_crc_start(data->pipe_crc);
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_before);
+
+ /*
+ * Capture reference CRC of expected final state (swapped overlays).
+ * This allows us to validate not just that the display updated,
+ * but that it shows the correct content without corruption.
+ */
+ igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
+ igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+ igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
+ igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+ data->overlay1_fb.width, OVERLAY1_POS_Y);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_reference);
+
+ /* Reset back to initial state (original overlay positions) */
+ igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
+ igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+ igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
+ igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+ data->overlay2_fb.width, OVERLAY1_POS_Y);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ /* Create timelines and fences for all planes */
+ for (int i = 0; i < NUM_PLANES; i++) {
+ /* Create timeline */
+ timelines[i] = sw_sync_timeline_create();
+ igt_assert(timelines[i] >= 0);
+
+ /* Create fence at sequence 1 */
+ fences[i] = sw_sync_timeline_create_fence(timelines[i], 1);
+ igt_assert(fences[i] >= 0);
+
+ /* Signal fence (first 2 planes) */
+ if (should_signal[i]) {
+ sw_sync_timeline_inc(timelines[i], 1);
+ igt_assert_eq(sync_fence_status(fences[i]), 1);
+ } else {
+ /* Do not signal this fence yet, 3rd plane */
+ igt_assert_eq(sync_fence_status(fences[i]), 0);
+ }
+
+ /* Attach IN_FENCE_FD to plane */
+ igt_plane_set_fence_fd(planes[i], fences[i]);
+ }
+
+ /* Swap overlay colors to detect scanout changes via CRC */
+ igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
+ igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+ igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
+ igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+ data->overlay1_fb.width, OVERLAY1_POS_Y);
+
+ /* Request OUT_FENCE to track when display update completes */
+ igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe));
+
+ /*
+ * The atomic commit should succeed immediately (NONBLOCK mode),
+ * but the display should NOT update any plane until ALL fences
+ * (including the unsignaled overlay2 fence) are signaled.
+ *
+ * A buggy driver might:
+ * - Show primary and overlay1 immediately
+ * - Cause visual corruption
+ * - Fail the commit
+ */
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_NONBLOCK,
+ NULL);
+ igt_assert_eq(ret, 0);
+
+ /* Get the out fence to monitor completion */
+ out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd;
+ igt_assert(out_fence >= 0);
+
+ /* Verify overlay2 fence (last one) is still unsignaled */
+ igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 0);
+
+ /* Verify out fence is also unsignaled (display hasn't updated yet) */
+ ret = sync_fence_status(out_fence);
+ igt_assert_f(ret != 1,
+ "OUT_FENCE already signaled while overlay2 fence is unsignaled - "
+ "driver did not wait for all IN_FENCEs!");
+
+ /*
+ * Wait briefly and verify display hasn't updated via CRC check.
+ * In a buggy implementation, the display might update prematurely.
+ */
+ usleep(100000); /* 100ms */
+
+ /* Check if out fence signaled prematurely */
+ ret = sync_fence_status(out_fence);
+ igt_assert_f(ret != 1,
+ "OUT_FENCE signaled before overlay2 fence - "
+ "driver updated display without waiting for all fences");
+
+ /* CRC verify - check if display has not updated prematurely */
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_after);
+ igt_assert_crc_equal(&crc_before, &crc_after);
+
+ /* Now signal the blocking fence (overlay2) */
+ sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
+
+ /* Wait for overlay2 fence to be signaled */
+ ret = sync_fence_wait(fences[PLANE_OVERLAY2_IDX], FENCE_TIMEOUT_MS);
+ igt_assert_eq(ret, 0);
+ igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 1);
+
+ /* Now wait for the display update to complete (out fence signals) */
+ ret = sync_fence_wait(out_fence, FENCE_TIMEOUT_MS);
+ igt_assert_eq(ret, 0);
+ igt_assert_eq(sync_fence_status(out_fence), 1);
+
+ /* Verify display has now updated (CRC should differ from baseline) */
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
+ igt_assert_f(!igt_check_crc_equal(&crc_before, &crc_final),
+ "Display did not update after all fences signaled");
+
+ /* Validate final CRC matches reference (no corruption) */
+ igt_assert_crc_equal(&crc_final, &crc_reference);
+
+ igt_pipe_crc_stop(data->pipe_crc);
+
+ /* Cleanup */
+ for (int i = 0; i < NUM_PLANES; i++) {
+ close(fences[i]);
+ close(timelines[i]);
+ igt_plane_set_fence_fd(planes[i], -1);
+ }
+ close(out_fence);
+ igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1;
+}
+
+static void reset_display_state(data_t *data)
+{
+ igt_plane_set_fb(data->primary, NULL);
+ igt_plane_set_fb(data->overlay1, NULL);
+ igt_plane_set_fb(data->overlay2, NULL);
+ igt_output_set_crtc(data->output, NULL);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+int igt_main()
+{
+ data_t data = {};
+
+ igt_fixture() {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+
+ setup_output(&data);
+ create_fbs(&data);
+
+ data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe,
+ IGT_PIPE_CRC_SOURCE_AUTO);
+ }
+
+ igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
+ "where 2 planes have signaled fences and 1 plane has an "
+ "unsignaled fence. Validates that display does not update "
+ "any plane until all fences are signaled");
+ igt_subtest("multiplane-atomic-fence-wait")
+ multiplane_atomic_fence_wait(&data);
+
+ igt_fixture() {
+ reset_display_state(&data);
+ igt_pipe_crc_free(data.pipe_crc);
+ cleanup_crtc(&data);
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 7f356de9b..eb7c8b13b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -36,6 +36,7 @@ test_progs = [
'kms_dither',
'kms_display_modes',
'kms_dp_aux_dev',
+ 'kms_explicit_fence',
'kms_feature_discovery',
'kms_flip',
'kms_flip_event_leak',
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
@ 2026-03-05 5:09 ` Patchwork
2026-03-05 7:51 ` Sebinraj, S
2026-03-05 7:10 ` [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing Krzysztof Karas
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2026-03-05 5:09 UTC (permalink / raw)
To: Sebinraj, S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8961 bytes --]
== Series Details ==
Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
URL : https://patchwork.freedesktop.org/series/160078/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8777 -> IGTPW_14667
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14667 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14667, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/index.html
Participating hosts (39 -> 39)
------------------------------
Additional (1): fi-pnv-d510
Missing (1): bat-dg2-13
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14667:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gt_heartbeat:
- bat-arlh-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html
Known issues
------------
Here are the changes found in IGTPW_14667 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-atsm-1: NOTRUN -> [ABORT][3] ([i915#15759]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-dg2-9: [PASS][4] -> [ABORT][5] ([i915#15759]) +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-9/igt@gem_lmem_swapping@parallel-random-engines.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-dg2-9/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#4079])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#4077]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#15657])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arlh-2: [PASS][11] -> [INCOMPLETE][12] ([i915#15707])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-2/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-arlh-2/igt@i915_selftest@live.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6077]) +37 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#6078]) +22 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6093]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#1836]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#7357])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][18] +35 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#6094])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][20] +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_create@basic@lmem0:
- bat-atsm-1: [ABORT][21] ([i915#15759]) -> [PASS][22] +1 other test pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-atsm-1/igt@gem_exec_create@basic@lmem0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-atsm-1/igt@gem_exec_create@basic@lmem0.html
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][23] ([i915#12061]) -> [PASS][24] +1 other test pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-8/igt@i915_selftest@live.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][25] ([i915#13735]) -> [PASS][26] +79 other tests pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][29] ([i915#13735] / [i915#180]) -> [PASS][30] +53 other tests pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15707
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[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#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14667
* Linux: CI_DRM_18075 -> CI_DRM_18094
CI-20190529: 20190529
CI_DRM_18075: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18094: d7689f077339984fa4c23c972f591ee318b3c56f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14667: 1db4df41ade12074cd6089bde31e44257b651ef0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/index.html
[-- Attachment #2: Type: text/html, Size: 10431 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
2026-03-05 5:09 ` ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
@ 2026-03-05 7:10 ` Krzysztof Karas
2026-03-05 9:05 ` Karthik B S
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Karas @ 2026-03-05 7:10 UTC (permalink / raw)
To: S Sebinraj
Cc: igt-dev, carlos.santa, karthik.b.s, kamil.konieczny,
zbigniew.kempczynski
Hi S Sebinraj,
On 2026-03-04 at 17:19:58 +0530, S Sebinraj wrote:
> Add a new test to validate explicit fencing.
> This test handles multiple planes in a single atomic commit.
> This test addresses a critical scenario where drivers must correctly
> synchronize planes with mixed fence states.
>
> Test Scenario:
> - Creates three planes: one primary, two overlay
> - Attaches fences with different states:
> - Primary plane: signaled fence (simulating completed GPU work)
> - Overlay-1 plane: signaled fence (simulating completed GPU work)
> - Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
> - Submits all planes in a single atomic commit with IN_FENCE_FD set
> - Validates that display waits for ALL fences before updating ANY plane
>
> Bug Detection:
> This test catches driver bugs where:
> - Planes with signaled fences update prematurely before unsignaled
> fences complete, breaking atomic commit semantics
> - Fence states are mismanaged across multiple planes causing visual
> glitches or corruption
> - The driver fails to wait on all IN_FENCE_FDs atomically
>
> The test uses sw_sync timelines to create controllable fence states,
> allowing precise validation of fence synchronization behavior. An
> OUT_FENCE_PTR is requested to monitor when the display update actually
> completes, enabling detection of premature updates.
>
> Implementation Details:
> - Uses sw_sync for creating fences with controlled signaling
> - Monitors OUT_FENCE to detect premature display updates
> - Validates atomic commit integrity across multiple planes
>
> Background:
> - A bug regressed for Xe driver on PTL (Android) display handling
> of explicit fences when provided two or more buffers at once,
> with 1+ already-signaled fences and 1+ not-yet-signaled fences.
> https://patchwork.freedesktop.org/patch/662982/
> - Adding this test so that IGT contains sufficient testing for the
> use of explicit fencing in the KMS Atomic Modesetting APIs.
>
> Changes:
> -v6
> - Add crc check of expected frame with
> reference frame
> -v5
> - Make overlay plane validation scalable with
> overlay count.
> - Modify commit message.
> -v4
> - Fix build errors as per latest API name
> -v3
> - Add crc check on display update
> - Adding proper License entry
> - Reduce test description
> -v2
> - Add crc check instead of visual inspection
> - Reduce debug logging which are not needed
> - Add a function for initial modset
> - Make test not specific to Intel drivers alone
> - Sort the included libs in alphabetical order
> - Modify set_output func as we want only one
> output per pipe
>
> Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
LGTM:
Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
--
Best Regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
2026-03-05 5:09 ` ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
@ 2026-03-05 7:51 ` Sebinraj, S
0 siblings, 0 replies; 8+ messages in thread
From: Sebinraj, S @ 2026-03-05 7:51 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 2518 bytes --]
Hi Team,
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, March 5, 2026 10:39 AM
To: Sebinraj, S <s.sebinraj@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
Patch Details
Series:
tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
URL:
https://patchwork.freedesktop.org/series/160078/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/index.html
CI Bug Log - changes from IGT_8777 -> IGTPW_14667
Summary
FAILURE
Serious unknown changes coming with IGTPW_14667 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14667, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/index.html
Participating hosts (39 -> 39)
Additional (1): fi-pnv-d510
Missing (1): bat-dg2-13
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_14667:
IGT changes
Possible regressions
* igt@i915_selftest@live@gt_heartbeat:
*
bat-arlh-2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14667/bat-arlh-2/igt@i915_selftest@live@gt_heartbeat.html>
> This here doesn't have anything to do with the new test that is added. So it is more like a false positive. As from the logs it something related to i915 driver probe issue in b/w and is not related to the test.
With Regards,
S Sebinraj
Known issues
Here are the changes found in IGTPW_14667 that come from known issues:
Build changes
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14667
* Linux: CI_DRM_18075 -> CI_DRM_18094
CI-20190529: 20190529
CI_DRM_18075: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18094: d7689f077339984fa4c23c972f591ee318b3c56f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14667: 1db4df41ade12074cd6089bde31e44257b651ef0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
[-- Attachment #2: Type: text/html, Size: 5937 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
2026-03-05 5:09 ` ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
2026-03-05 7:10 ` [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing Krzysztof Karas
@ 2026-03-05 9:05 ` Karthik B S
2026-03-05 11:47 ` ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
2026-03-05 15:33 ` ✗ Xe.CI.FULL: " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Karthik B S @ 2026-03-05 9:05 UTC (permalink / raw)
To: S Sebinraj, igt-dev
Cc: carlos.santa, krzysztof.karas, kamil.konieczny,
zbigniew.kempczynski
Hi Sebinraj,
On 3/4/2026 5:19 PM, S Sebinraj wrote:
> Add a new test to validate explicit fencing.
> This test handles multiple planes in a single atomic commit.
> This test addresses a critical scenario where drivers must correctly
> synchronize planes with mixed fence states.
>
> Test Scenario:
> - Creates three planes: one primary, two overlay
> - Attaches fences with different states:
> - Primary plane: signaled fence (simulating completed GPU work)
> - Overlay-1 plane: signaled fence (simulating completed GPU work)
> - Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
> - Submits all planes in a single atomic commit with IN_FENCE_FD set
> - Validates that display waits for ALL fences before updating ANY plane
>
> Bug Detection:
> This test catches driver bugs where:
> - Planes with signaled fences update prematurely before unsignaled
> fences complete, breaking atomic commit semantics
> - Fence states are mismanaged across multiple planes causing visual
> glitches or corruption
> - The driver fails to wait on all IN_FENCE_FDs atomically
>
> The test uses sw_sync timelines to create controllable fence states,
> allowing precise validation of fence synchronization behavior. An
> OUT_FENCE_PTR is requested to monitor when the display update actually
> completes, enabling detection of premature updates.
>
> Implementation Details:
> - Uses sw_sync for creating fences with controlled signaling
> - Monitors OUT_FENCE to detect premature display updates
> - Validates atomic commit integrity across multiple planes
>
> Background:
> - A bug regressed for Xe driver on PTL (Android) display handling
> of explicit fences when provided two or more buffers at once,
> with 1+ already-signaled fences and 1+ not-yet-signaled fences.
> https://patchwork.freedesktop.org/patch/662982/
> - Adding this test so that IGT contains sufficient testing for the
> use of explicit fencing in the KMS Atomic Modesetting APIs.
>
> Changes:
> -v6
> - Add crc check of expected frame with
> reference frame
> -v5
> - Make overlay plane validation scalable with
> overlay count.
> - Modify commit message.
> -v4
> - Fix build errors as per latest API name
> -v3
> - Add crc check on display update
> - Adding proper License entry
> - Reduce test description
> -v2
> - Add crc check instead of visual inspection
> - Reduce debug logging which are not needed
> - Add a function for initial modset
> - Make test not specific to Intel drivers alone
> - Sort the included libs in alphabetical order
> - Modify set_output func as we want only one
> output per pipe
>
> Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
> ---
> tests/kms_explicit_fence.c | 372 +++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 373 insertions(+)
> create mode 100644 tests/kms_explicit_fence.c
>
> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
> new file mode 100644
> index 000000000..a61ae9889
> --- /dev/null
> +++ b/tests/kms_explicit_fence.c
> @@ -0,0 +1,372 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms explicit fence multiplane
> + * Category: Display
> + * Description: Test explicit fencing with multiple planes and mixed fence states
> + * Driver requirement: i915, xe
> + * Mega feature: General Display Features
> + *
> + * This test validates correct handling of explicit fences when multiple planes
> + * are updated in a single atomic commit with different fence states. This is
> + * critical for catching fence synchronization bugs where the driver might:
> + * 1. Prematurely display buffers with signaled fences before unsignaled fences complete
> + * 2. Mismanage fence states across multiple planes causing visual glitches
> + * 3. Fail to wait on all fences atomically before updating the display
> + */
> +
> +#include <errno.h>
> +#include <poll.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +#include <sys/eventfd.h>
> +
> +#include "igt.h"
> +#include "igt_aux.h"
> +#include "sw_sync.h"
> +
> +/**
> + * SUBTEST: multiplane-atomic-fence-wait
> + * Description: Test 3 planes (1 primary, 2 overlay) with mixed fence states:
> + * 2 planes with signaled fences and 1 plane with unsignaled fence.
> + * Validates that display waits for all fences before updating any plane.
> + */
> +
> +/* Test configuration macros */
> +#define NUM_PLANES 3
> +#define PLANE_PRIMARY_IDX 0
> +#define PLANE_OVERLAY1_IDX 1
> +#define PLANE_OVERLAY2_IDX 2
> +#define OVERLAY_COUNT (NUM_PLANES - 1)
> +
> +#define FENCE_TIMEOUT_MS 2000
> +
> +#define OVERLAY_SIZE_DIVISOR 3
> +#define OVERLAY1_POS_X 100
> +#define OVERLAY1_POS_Y 100
> +#define OVERLAY2_OFFSET 100
> +
> +typedef struct {
> + int drm_fd;
> + igt_display_t display;
> + igt_output_t *output;
> + enum pipe pipe;
> + igt_plane_t *primary;
> + igt_plane_t *overlay1;
> + igt_plane_t *overlay2;
> + struct igt_fb primary_fb;
> + struct igt_fb overlay1_fb;
> + struct igt_fb overlay2_fb;
> + drmModeModeInfo *mode;
> + int width, height;
> + igt_pipe_crc_t *pipe_crc;
> +} data_t;
> +
> +static void setup_output(data_t *data)
> +{
> + igt_display_t *display = &data->display;
> + igt_crtc_t *crtc;
> + igt_output_t *output;
> +
> + for_each_crtc_with_single_output(display, crtc, output) {
> + int overlay_count = 0;
> +
> + data->primary = igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY);
> +
> + /* Count available overlays - we need at least OVERLAY_COUNT */
> + for (int i = 0; i < OVERLAY_COUNT; i++) {
> + if (igt_crtc_get_plane_type_index(crtc, DRM_PLANE_TYPE_OVERLAY, i))
> + overlay_count++;
> + }
> +
> + if (overlay_count >= OVERLAY_COUNT) {
> + data->overlay1 = igt_crtc_get_plane_type_index(crtc,
> + DRM_PLANE_TYPE_OVERLAY,
> + 0);
> + data->overlay2 = igt_crtc_get_plane_type_index(crtc,
> + DRM_PLANE_TYPE_OVERLAY,
> + 1);
This styling fix has not been done. Please recheck.
> + data->output = output;
> + data->pipe = crtc->pipe;
> + data->mode = igt_output_get_mode(output);
> + data->width = data->mode->hdisplay;
> + data->height = data->mode->vdisplay;
> + return;
> + }
> + }
> +
> + igt_skip("Need at least %d overlay planes for this test\n", OVERLAY_COUNT);
> +}
> +
> +static void cleanup_crtc(data_t *data)
> +{
> + igt_display_reset(&data->display);
> +
> + igt_remove_fb(data->drm_fd, &data->primary_fb);
> + igt_remove_fb(data->drm_fd, &data->overlay1_fb);
> + igt_remove_fb(data->drm_fd, &data->overlay2_fb);
> +}
> +
> +static void create_fbs(data_t *data)
> +{
> + int overlay_width = data->width / OVERLAY_SIZE_DIVISOR;
> + int overlay_height = data->height / OVERLAY_SIZE_DIVISOR;
> +
> + /* Primary plane - Blue background */
> + igt_create_color_fb(data->drm_fd, data->width, data->height,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR,
> + 0.0, 0.0, 1.0, /* Blue */
> + &data->primary_fb);
> +
> + /* Overlay 1 - Red square */
> + igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR,
> + 1.0, 0.0, 0.0, /* Red */
> + &data->overlay1_fb);
> +
> + /* Overlay 2 - Green square */
> + igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR,
> + 0.0, 1.0, 0.0, /* Green */
> + &data->overlay2_fb);
> +}
> +
> +static void setup_initial_modeset(data_t *data)
> +{
> + /* Initial modeset to establish baseline (no fences) */
> + igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe));
> + igt_plane_set_fb(data->primary, &data->primary_fb);
> + igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
> + igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> + igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
> + igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> + data->overlay2_fb.width, OVERLAY1_POS_Y);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +/**
> + * multiplane_atomic_fence_wait - Test atomic commit with mixed fence states
> + *
> + * This test reproduces the critical scenario where multiple planes are updated
> + * in a single atomic commit with different fence states. The key validation is
> + * that the display does NOT update any plane until ALL fences are signaled.
> + *
> + * Test setup:
> + * - Primary plane: buffer with a signaled fence (already retired)
> + * - Overlay 1 plane: buffer with a signaled fence (already retired)
> + * - Overlay 2 plane: buffer with an UNSIGNALED fence (long-running operation)
> + *
> + * Expected behavior:
> + * - Atomic commit succeeds immediately (non-blocking)
> + * - Display waits internally for ALL fences before updating
> + * - No plane shows its new buffer until the unsignaled fence completes
> + * - After signaling the last fence, all planes update atomically
> + *
> + * Bug detection:
> + * If the driver has a bug, it will either:
> + * 1. Show the primary and overlay1 buffers prematurely (before overlay2's fence signals)
> + * 2. Cause visual glitches from fence mismanagement
> + * 3. Fail the atomic commit
> + */
> +static void multiplane_atomic_fence_wait(data_t *data)
> +{
> + int timelines[NUM_PLANES];
> + int fences[NUM_PLANES];
> + int ret;
> + int out_fence;
> + igt_plane_t *planes[NUM_PLANES];
> + bool should_signal[NUM_PLANES] = { true, true, false };
> + igt_crc_t crc_before, crc_after, crc_reference, crc_final;
> +
> + igt_require_sw_sync();
> +
> + setup_initial_modeset(data);
> +
> + /* Setup arrays for loop-based processing */
> + planes[PLANE_PRIMARY_IDX] = data->primary;
> + planes[PLANE_OVERLAY1_IDX] = data->overlay1;
> + planes[PLANE_OVERLAY2_IDX] = data->overlay2;
> +
> + /* Start CRC capture to verify no premature display updates */
> + igt_pipe_crc_start(data->pipe_crc);
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_before);
> +
> + /*
> + * Capture reference CRC of expected final state (swapped overlays).
> + * This allows us to validate not just that the display updated,
> + * but that it shows the correct content without corruption.
> + */
> + igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
> + igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> + igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
> + igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> + data->overlay1_fb.width, OVERLAY1_POS_Y);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_reference);
> +
> + /* Reset back to initial state (original overlay positions) */
> + igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
> + igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> + igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
> + igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> + data->overlay2_fb.width, OVERLAY1_POS_Y);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + /* Create timelines and fences for all planes */
> + for (int i = 0; i < NUM_PLANES; i++) {
> + /* Create timeline */
> + timelines[i] = sw_sync_timeline_create();
> + igt_assert(timelines[i] >= 0);
> +
> + /* Create fence at sequence 1 */
> + fences[i] = sw_sync_timeline_create_fence(timelines[i], 1);
> + igt_assert(fences[i] >= 0);
> +
> + /* Signal fence (first 2 planes) */
> + if (should_signal[i]) {
> + sw_sync_timeline_inc(timelines[i], 1);
> + igt_assert_eq(sync_fence_status(fences[i]), 1);
> + } else {
> + /* Do not signal this fence yet, 3rd plane */
> + igt_assert_eq(sync_fence_status(fences[i]), 0);
> + }
> +
> + /* Attach IN_FENCE_FD to plane */
> + igt_plane_set_fence_fd(planes[i], fences[i]);
> + }
> +
> + /* Swap overlay colors to detect scanout changes via CRC */
> + igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
> + igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> + igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
> + igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> + data->overlay1_fb.width, OVERLAY1_POS_Y);
> +
> + /* Request OUT_FENCE to track when display update completes */
> + igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe));
> +
> + /*
> + * The atomic commit should succeed immediately (NONBLOCK mode),
> + * but the display should NOT update any plane until ALL fences
> + * (including the unsignaled overlay2 fence) are signaled.
> + *
> + * A buggy driver might:
> + * - Show primary and overlay1 immediately
> + * - Cause visual corruption
> + * - Fail the commit
> + */
> + ret = igt_display_try_commit_atomic(&data->display,
> + DRM_MODE_ATOMIC_NONBLOCK,
> + NULL);
> + igt_assert_eq(ret, 0);
> +
> + /* Get the out fence to monitor completion */
> + out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd;
> + igt_assert(out_fence >= 0);
> +
> + /* Verify overlay2 fence (last one) is still unsignaled */
> + igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 0);
> +
> + /* Verify out fence is also unsignaled (display hasn't updated yet) */
> + ret = sync_fence_status(out_fence);
> + igt_assert_f(ret != 1,
> + "OUT_FENCE already signaled while overlay2 fence is unsignaled - "
> + "driver did not wait for all IN_FENCEs!");
> +
> + /*
> + * Wait briefly and verify display hasn't updated via CRC check.
> + * In a buggy implementation, the display might update prematurely.
> + */
> + usleep(100000); /* 100ms */
> +
> + /* Check if out fence signaled prematurely */
> + ret = sync_fence_status(out_fence);
> + igt_assert_f(ret != 1,
> + "OUT_FENCE signaled before overlay2 fence - "
> + "driver updated display without waiting for all fences");
> +
> + /* CRC verify - check if display has not updated prematurely */
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_after);
> + igt_assert_crc_equal(&crc_before, &crc_after);
> +
> + /* Now signal the blocking fence (overlay2) */
> + sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
> +
> + /* Wait for overlay2 fence to be signaled */
> + ret = sync_fence_wait(fences[PLANE_OVERLAY2_IDX], FENCE_TIMEOUT_MS);
> + igt_assert_eq(ret, 0);
> + igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 1);
> +
> + /* Now wait for the display update to complete (out fence signals) */
> + ret = sync_fence_wait(out_fence, FENCE_TIMEOUT_MS);
> + igt_assert_eq(ret, 0);
> + igt_assert_eq(sync_fence_status(out_fence), 1);
> +
> + /* Verify display has now updated (CRC should differ from baseline) */
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
> + igt_assert_f(!igt_check_crc_equal(&crc_before, &crc_final),
> + "Display did not update after all fences signaled");
This check is redundant with the next one, so should be removed.
With these updates, patch LGTM.
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
Thanks and Regards,
Karthik.B.S
> +
> + /* Validate final CRC matches reference (no corruption) */
> + igt_assert_crc_equal(&crc_final, &crc_reference);
> +
> + igt_pipe_crc_stop(data->pipe_crc);
> +
> + /* Cleanup */
> + for (int i = 0; i < NUM_PLANES; i++) {
> + close(fences[i]);
> + close(timelines[i]);
> + igt_plane_set_fence_fd(planes[i], -1);
> + }
> + close(out_fence);
> + igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1;
> +}
> +
> +static void reset_display_state(data_t *data)
> +{
> + igt_plane_set_fb(data->primary, NULL);
> + igt_plane_set_fb(data->overlay1, NULL);
> + igt_plane_set_fb(data->overlay2, NULL);
> + igt_output_set_crtc(data->output, NULL);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +int igt_main()
> +{
> + data_t data = {};
> +
> + igt_fixture() {
> + data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> +
> + setup_output(&data);
> + create_fbs(&data);
> +
> + data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe,
> + IGT_PIPE_CRC_SOURCE_AUTO);
> + }
> +
> + igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
> + "where 2 planes have signaled fences and 1 plane has an "
> + "unsignaled fence. Validates that display does not update "
> + "any plane until all fences are signaled");
> + igt_subtest("multiplane-atomic-fence-wait")
> + multiplane_atomic_fence_wait(&data);
> +
> + igt_fixture() {
> + reset_display_state(&data);
> + igt_pipe_crc_free(data.pipe_crc);
> + cleanup_crtc(&data);
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 7f356de9b..eb7c8b13b 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -36,6 +36,7 @@ test_progs = [
> 'kms_dither',
> 'kms_display_modes',
> 'kms_dp_aux_dev',
> + 'kms_explicit_fence',
> 'kms_feature_discovery',
> 'kms_flip',
> 'kms_flip_event_leak',
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
` (2 preceding siblings ...)
2026-03-05 9:05 ` Karthik B S
@ 2026-03-05 11:47 ` Patchwork
2026-03-05 14:36 ` Sebinraj, S
2026-03-05 15:33 ` ✗ Xe.CI.FULL: " Patchwork
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2026-03-05 11:47 UTC (permalink / raw)
To: S Sebinraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2201 bytes --]
== Series Details ==
Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
URL : https://patchwork.freedesktop.org/series/160078/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8777_BAT -> XEIGTPW_14667_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14667_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14667_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 4)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_14667_BAT prevented too many machines from booting.
Missing (9): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-vm bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7
Known issues
------------
Here are the changes found in XEIGTPW_14667_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14667
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1
IGTPW_14667: 1db4df41ade12074cd6089bde31e44257b651ef0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1: de9130630d2dc4c0f650333605a14d475ee788e1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/index.html
[-- Attachment #2: Type: text/html, Size: 2801 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
2026-03-05 11:47 ` ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
@ 2026-03-05 14:36 ` Sebinraj, S
0 siblings, 0 replies; 8+ messages in thread
From: Sebinraj, S @ 2026-03-05 14:36 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 2519 bytes --]
Hi Team,
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, March 5, 2026 5:17 PM
To: Sebinraj, S <s.sebinraj@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
Patch Details
Series:
tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
URL:
https://patchwork.freedesktop.org/series/160078/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/index.html
CI Bug Log - changes from XEIGT_8777_BAT -> XEIGTPW_14667_BAT
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_14667_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14667_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 4)
ERROR: It appears as if the changes made in XEIGTPW_14667_BAT prevented too many machines from booting.
Missing (9): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-vm bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7
Known issues
Here are the changes found in XEIGTPW_14667_BAT that come from known issues:
IGT changes
Issues hit
* igt@xe_waitfence@abstime:
*
bat-dg2-oem2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-dg2-oem2/igt@xe_waitfence@abstime.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/bat-dg2-oem2/igt@xe_waitfence@abstime.html> (Intel XE#6506<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506>)
> As per my observation this has nothing to do with the test being added with this patch. Its seems from the logs its due to
some other test (timeout) or the device in test.
With Regards,
S Sebinraj
Build changes
* IGT: IGT_8777 -> IGTPW_14667
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1
IGTPW_14667: 1db4df41ade12074cd6089bde31e44257b651ef0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1: de9130630d2dc4c0f650333605a14d475ee788e1
[-- Attachment #2: Type: text/html, Size: 5948 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
` (3 preceding siblings ...)
2026-03-05 11:47 ` ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
@ 2026-03-05 15:33 ` Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-03-05 15:33 UTC (permalink / raw)
To: Sebinraj, S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 99063 bytes --]
== Series Details ==
Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev7)
URL : https://patchwork.freedesktop.org/series/160078/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8777_FULL -> XEIGTPW_14667_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14667_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14667_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_14667_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: NOTRUN -> [INCOMPLETE][1] +2 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@xe_oa@mmio-triggered-reports@oag-0:
- shard-bmg: NOTRUN -> [FAIL][2] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_oa@mmio-triggered-reports@oag-0.html
New tests
---------
New tests have been introduced between XEIGT_8777_FULL and XEIGTPW_14667_FULL:
### New IGT tests (1) ###
* igt@kms_explicit_fence@multiplane-atomic-fence-wait:
- Statuses : 2 pass(s)
- Exec time: [0.37, 0.38] s
Known issues
------------
Here are the changes found in XEIGTPW_14667_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +20 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7059] / [Intel XE#7085]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2328] / [Intel XE#7367]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1467] / [Intel XE#7367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#610] / [Intel XE#7387]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +53 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367] / [Intel XE#7354]) +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367] / [Intel XE#7354])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652]) +52 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3432])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +75 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325] / [Intel XE#7358]) +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306] / [Intel XE#7358])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +51 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6507])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6969]) +10 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3304] / [Intel XE#7374])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][29] ([Intel XE#3304])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-1.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2341]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2390] / [Intel XE#6974]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6974]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +15 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6973])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320]) +25 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2321] / [Intel XE#7355])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321] / [Intel XE#7355]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2286] / [Intel XE#6035]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1508])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4210] / [Intel XE#7467])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1340] / [Intel XE#7435])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4354] / [Intel XE#5882])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4354] / [Intel XE#7386])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4354] / [Intel XE#5870])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4331] / [Intel XE#7227])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2244]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4156] / [Intel XE#7425]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6126] / [Intel XE#776])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2372] / [Intel XE#7359])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#701] / [Intel XE#7359])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2373] / [Intel XE#7448])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1138] / [Intel XE#7344])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2375])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2374] / [Intel XE#6127])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2374] / [Intel XE#6128])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#301]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7178] / [Intel XE#7349]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7178] / [Intel XE#7351])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7178] / [Intel XE#7351]) +21 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7179]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4141]) +71 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#6312])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +158 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7061] / [Intel XE#7356]) +24 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2352] / [Intel XE#7399]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2350] / [Intel XE#7503])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313]) +157 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#656]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#3374] / [Intel XE#3544])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1503])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6901]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4298] / [Intel XE#5873])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6911] / [Intel XE#7378]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4090] / [Intel XE#7443])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2501] / [Intel XE#5852])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2486])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6912] / [Intel XE#7375])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7130]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#7283]) +23 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#7283])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2393]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#5020] / [Intel XE#7348]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2763] / [Intel XE#6886]) +28 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7376] / [Intel XE#870]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2938] / [Intel XE#7376])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2391] / [Intel XE#6927])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#7340])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#3309] / [Intel XE#7368])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2392] / [Intel XE#6927]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2505] / [Intel XE#7447])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2499])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6814] / [Intel XE#7428])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1489]) +39 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2387] / [Intel XE#7429]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406] / [Intel XE#7345])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1406] / [Intel XE#4609])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2234] / [Intel XE#2850]) +65 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1406] / [Intel XE#2414])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#1874] / [Intel XE#7305])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +10 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2413]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1435]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#6503]) +10 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#1729] / [Intel XE#7424])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2426] / [Intel XE#5848])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2450] / [Intel XE#5857])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1499]) +8 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2168] / [Intel XE#7444])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][121] ([Intel XE#6390] / [Intel XE#7461]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-1/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#6599]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@xe_configfs@survivability-mode.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4837]) +45 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4837]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#6665])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#6665] / [Intel XE#6681]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@pagefault-write:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#4837] / [Intel XE#6665])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#4837] / [Intel XE#6665]) +26 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][132] ([Intel XE#6321])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-1/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#7140]) +8 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@once-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#7482]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@xe_exec_balancer@once-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2322] / [Intel XE#7372]) +42 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#7136]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@xe_exec_fault_mode@once-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#7136]) +68 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#6874]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#6874]) +157 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-mmap-prefetch-shared:
- shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#5625])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_exec_system_allocator@many-mmap-prefetch-shared.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][143] ([Intel XE#7098])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#5625])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][146] ([Intel XE#7166])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#7138]) +49 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#7138]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#6281] / [Intel XE#7426])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][150] ([Intel XE#5466] / [Intel XE#6652])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2229])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2833])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#6964]) +15 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@mmio-triggered-reports@oam-2:
- shard-bmg: NOTRUN -> [FAIL][156] ([Intel XE#7522]) +8 other tests fail
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_oa@mmio-triggered-reports@oam-2.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2245])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2236])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#5694] / [Intel XE#7370])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2284] / [Intel XE#7370]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#584] / [Intel XE#7369])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@aspm_link_residency:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#7258])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#4733] / [Intel XE#7417]) +11 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#944]) +14 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-bmg: [SKIP][171] ([Intel XE#6779]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@core_hotunplug@hotrebind-lateclose.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [SKIP][173] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][175] ([Intel XE#6054] / [Intel XE#7509]) -> [PASS][176] +3 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][177] ([Intel XE#7340]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][179] ([Intel XE#6693]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@basic-pci-d3-state.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][181] ([Intel XE#4459]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [PASS][184] +275 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][185] ([Intel XE#5625]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_module_load@force-load:
- shard-bmg: [FAIL][187] -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@force-load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_module_load@force-load.html
* igt@xe_vm@large-split-binds-536870912:
- shard-bmg: [SKIP][189] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][190] +2 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_vm@large-split-binds-536870912.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_vm@large-split-binds-536870912.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#2233])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#2327]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#1124]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][199] ([Intel XE#6703]) -> [SKIP][200] ([Intel XE#2887]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#2652])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2724] / [Intel XE#7449])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#2252]) +5 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#2325] / [Intel XE#7358])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_color@gamma.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_chamelium_color@gamma.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#2390] / [Intel XE#6974])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#2321] / [Intel XE#7355])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#2320]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-lnl: [SKIP][215] ([Intel XE#4354] / [Intel XE#7473]) -> [SKIP][216] ([Intel XE#4354] / [Intel XE#5870])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_dp_link_training@uhbr-sst.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][217] ([Intel XE#4294] / [Intel XE#7472]) -> [SKIP][218] ([Intel XE#4294] / [Intel XE#7477])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#2244])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#4422] / [Intel XE#7442])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][223] ([Intel XE#6703]) -> [SKIP][224] ([Intel XE#6126] / [Intel XE#776])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: [SKIP][225] ([Intel XE#702] / [Intel XE#7462]) -> [SKIP][226] ([Intel XE#702] / [Intel XE#7344])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_feature_discovery@display-2x.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: [SKIP][227] ([Intel XE#1137] / [Intel XE#7438]) -> [SKIP][228] ([Intel XE#1137] / [Intel XE#2375])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_feature_discovery@dp-mst.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][229] ([Intel XE#6703]) -> [SKIP][230] ([Intel XE#2311]) +12 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][231] ([Intel XE#6703]) -> [SKIP][232] ([Intel XE#4141]) +10 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
- shard-bmg: [SKIP][233] ([Intel XE#6703]) -> [SKIP][234] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-bmg: [SKIP][235] ([Intel XE#6703]) -> [SKIP][236] ([Intel XE#2313]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: [SKIP][237] ([Intel XE#7173] / [Intel XE#7294] / [Intel XE#7460]) -> [SKIP][238] ([Intel XE#7173] / [Intel XE#7294])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: [SKIP][239] ([Intel XE#356] / [Intel XE#7465]) -> [SKIP][240] ([Intel XE#356] / [Intel XE#5852])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: [SKIP][241] ([Intel XE#6703]) -> [SKIP][242] ([Intel XE#2486])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][243] ([Intel XE#6703]) -> [SKIP][244] ([Intel XE#7283]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: [SKIP][245] ([Intel XE#4596] / [Intel XE#7458]) -> [SKIP][246] ([Intel XE#4596] / [Intel XE#5854]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][247] ([Intel XE#6703]) -> [SKIP][248] ([Intel XE#2763] / [Intel XE#6886])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][249] ([Intel XE#6703]) -> [SKIP][250] ([Intel XE#7376] / [Intel XE#870])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][251] ([Intel XE#7339] / [Intel XE#7506]) -> [SKIP][252] ([Intel XE#7339])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: [SKIP][253] ([Intel XE#1131] / [Intel XE#7451]) -> [SKIP][254] ([Intel XE#1131])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][255] ([Intel XE#2029] / [Intel XE#7314] / [Intel XE#7395]) -> [FAIL][256] ([Intel XE#2029] / [Intel XE#7395])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: [SKIP][257] ([Intel XE#6693]) -> [SKIP][258] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: [SKIP][259] ([Intel XE#6813] / [Intel XE#7470]) -> [SKIP][260] ([Intel XE#6813])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_pm_rpm@package-g7.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-7/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][261] ([Intel XE#2893]) -> [SKIP][262] ([Intel XE#2893] / [Intel XE#7304])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: [SKIP][263] ([Intel XE#4608]) -> [SKIP][264] ([Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][265] ([Intel XE#2893] / [Intel XE#4608]) -> [SKIP][266] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][267] ([Intel XE#6703]) -> [SKIP][268] ([Intel XE#1489]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: [SKIP][269] ([Intel XE#6703]) -> [SKIP][270] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr@fbc-psr-suspend.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][271] ([Intel XE#6703]) -> [SKIP][272] ([Intel XE#6503]) +2 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_sharpness_filter@filter-basic.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: [SKIP][273] ([Intel XE#330] / [Intel XE#7440]) -> [SKIP][274] ([Intel XE#330] / [Intel XE#5857])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][275] ([Intel XE#6703]) -> [SKIP][276] ([Intel XE#2168] / [Intel XE#7444])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_vrr@cmrr.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@kms_vrr@cmrr.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-bmg: [SKIP][277] ([Intel XE#6703]) -> [SKIP][278] ([Intel XE#4837]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-discovery.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: [SKIP][279] ([Intel XE#6703]) -> [SKIP][280] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [SKIP][281] ([Intel XE#6703]) -> [SKIP][282] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][283] ([Intel XE#6703]) -> [SKIP][284] ([Intel XE#7136]) +6 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr:
- shard-bmg: [SKIP][285] ([Intel XE#6703]) -> [SKIP][286] ([Intel XE#6874]) +11 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: [SKIP][287] ([Intel XE#6703]) -> [SKIP][288] ([Intel XE#7138]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([DMESG-WARN][289], [DMESG-WARN][290], [DMESG-WARN][291], [DMESG-WARN][292], [DMESG-WARN][293], [DMESG-WARN][294], [DMESG-WARN][295], [DMESG-WARN][296], [DMESG-WARN][297], [DMESG-WARN][298], [DMESG-WARN][299], [DMESG-WARN][300], [DMESG-WARN][301], [DMESG-WARN][302], [DMESG-WARN][303], [DMESG-WARN][304], [DMESG-WARN][305], [DMESG-WARN][306], [PASS][307], [PASS][308], [DMESG-WARN][309], [DMESG-WARN][310], [DMESG-WARN][311], [DMESG-WARN][312], [DMESG-WARN][313]) ([Intel XE#7433]) -> ([PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [SKIP][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339]) ([Intel XE#2457] / [Intel XE#7405])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-6/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-2/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-7/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-9/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-1/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-5/igt@xe_module_load@load.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-bmg: [SKIP][340] ([Intel XE#6703]) -> [FAIL][341] ([Intel XE#7522])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_oa@mmio-triggered-reports-read.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][342] ([Intel XE#6703]) -> [SKIP][343] ([Intel XE#1420])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][344] ([Intel XE#6703]) -> [SKIP][345] ([Intel XE#4733] / [Intel XE#7417])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][346] ([Intel XE#6703]) -> [SKIP][347] ([Intel XE#944])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5852]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5852
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[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#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[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#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[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#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
[Intel XE#7314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7314
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7339
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[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#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[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#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[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#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7438]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7438
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7440
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7451
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455
[Intel XE#7458]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7458
[Intel XE#7460]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7460
[Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461
[Intel XE#7462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7462
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7465
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7470
[Intel XE#7472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7472
[Intel XE#7473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7473
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7506
[Intel XE#7509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7509
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7522
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[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_8777 -> IGTPW_14667
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1
IGTPW_14667: 1db4df41ade12074cd6089bde31e44257b651ef0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1: de9130630d2dc4c0f650333605a14d475ee788e1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14667/index.html
[-- Attachment #2: Type: text/html, Size: 116937 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-03-05 15:33 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-04 11:49 [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
2026-03-05 5:09 ` ✗ i915.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
2026-03-05 7:51 ` Sebinraj, S
2026-03-05 7:10 ` [PATCH i-g-t v6] tests/kms_explict_fence: Add Test for Explicit Fencing Krzysztof Karas
2026-03-05 9:05 ` Karthik B S
2026-03-05 11:47 ` ✗ Xe.CI.BAT: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev7) Patchwork
2026-03-05 14:36 ` Sebinraj, S
2026-03-05 15:33 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox