* [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW
@ 2026-06-29 9:26 Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers Sowmiya S
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Sowmiya S @ 2026-06-29 9:26 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
On MST hubs / daisy-chain setups two display streams
share one DP link; a joint atomic commit can be rejected
by the driver if the combined mode bandwidth exceeds the
link capacity. The driver therefore adjusts per-pipe
settings (for example reducing pipe bpp and enabling
dithering) when both streams are committed together,
so tests must pick a mode combination the driver will accept.
Sowmiya S (3):
lib/igt_kms: Add MST bandwidth-fitting support and helpers
tests/kms_plane_multiple: Fix 2-display test for MST shared-link BW
tests/intel/kms_pipe_stress: Fit display modes to MST link budget
lib/igt_kms.c | 74 ++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/intel/kms_pipe_stress.c | 51 +++++++++++++++++++++
tests/kms_plane_multiple.c | 85 +++++++++++++++++++++++++++++------
4 files changed, 197 insertions(+), 14 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
@ 2026-06-29 9:26 ` Sowmiya S
2026-06-29 10:02 ` Jani Nikula
2026-06-29 9:26 ` [PATCH i-g-t v4 2/3] tests/kms_plane_multiple: Fix 2-display test for MST shared-link BW Sowmiya S
` (5 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Sowmiya S @ 2026-06-29 9:26 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
Add helpers to handle shared-link DP bandwidth fitting for
MST/daisy-chain configurations.
On MST hubs/daisy-chains multiple streams share one DP link
and a joint atomic commit can be rejected unless modes are
chosen to fit the link BW. This will centralizes MST detection
and fitting so tests can request fitting only when required.
v2: Remove the flag used for caching values and update the
function name to better describe its functionality (Jani)
v3: Apply mst bw fit for shared link (Kunal)
Remove unused variable (Kunal)
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
lib/igt_kms.c | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 75 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e82d32130..fceca2a1b 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -5472,6 +5472,80 @@ bool igt_fit_modes_in_bw(igt_display_t *display)
return true;
}
+/**
+ * igt_outputs_share_mst_link:
+ * @output_a: first output
+ * @output_b: second output
+ *
+ * Returns: true if both outputs are active DP-MST streams that share the
+ * same upstream link, i.e. their root connector IDs (as encoded in the
+ * MST PATH property) are equal. Returns false if either output is not an
+ * active MST stream or if they are rooted at different connectors.
+ */
+static bool igt_outputs_share_mst_link(igt_output_t *output_a,
+ igt_output_t *output_b)
+{
+ if (!output_a->pending_crtc || !igt_check_output_is_dp_mst(output_a))
+ return false;
+
+ if (!output_b->pending_crtc || !igt_check_output_is_dp_mst(output_b))
+ return false;
+
+ return igt_get_dp_mst_connector_id(output_a) ==
+ igt_get_dp_mst_connector_id(output_b);
+}
+
+/**
+ * igt_require_mst_link_bw:
+ * @display: a pointer to an #igt_display_t structure
+ *
+ * When two or more DP-MST streams share the same upstream link (i.e. they
+ * are both rooted at the same MST hub), a joint atomic commit may be
+ * rejected by the driver if the combined stream bandwidth exceeds the link
+ * capacity. This function detects that situation by comparing the root
+ * connector ID embedded in each output's MST PATH property and, when two
+ * or more active outputs share the same root, calls igt_fit_modes_in_bw()
+ * to select mode overrides that satisfy the shared-link BW budget. The
+ * test is skipped if no valid combination can be found.
+ *
+ * TODO: Extend this function to proactively detect outputs that share a
+ * DP tunnel (USB4/Thunderbolt) and trigger igt_fit_modes_in_bw() for
+ * those too.
+ */
+void igt_require_mst_link_bw(igt_display_t *display)
+{
+ igt_output_t *mst_outputs[IGT_MAX_PIPES];
+ int n_mst = 0;
+ igt_output_t *output;
+ bool shared_link = false;
+ int i, j;
+
+ /* Collect all active MST outputs in one pass. */
+ for_each_output(display, output) {
+ if (output->pending_crtc && igt_check_output_is_dp_mst(output))
+ mst_outputs[n_mst++] = output;
+ }
+
+ /* Need at least two MST outputs before a shared-link is possible. */
+ if (n_mst < 2)
+ return;
+
+ /* Check every pair for a shared upstream root connector. */
+ for (i = 0; i < n_mst && !shared_link; i++)
+ for (j = i + 1; j < n_mst; j++)
+ if (igt_outputs_share_mst_link(mst_outputs[i],
+ mst_outputs[j])) {
+ shared_link = true;
+ break;
+ }
+
+ if (!shared_link)
+ return;
+
+ igt_require_f(igt_fit_modes_in_bw(display),
+ "No valid mode combination fits available MST link BW\n");
+}
+
/**
* igt_crtc_refresh:
* @crtc: CRTC to refresh
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 3df3ba866..f5aff5008 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1370,6 +1370,7 @@ drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
uint64_t igt_get_writeback_fb_id(igt_output_t *output);
void igt_detach_crtc(igt_display_t *display, igt_output_t *output);
void igt_get_and_wait_out_fence(igt_output_t *output);
+void igt_require_mst_link_bw(igt_display_t *display);
igt_colorop_t *igt_find_colorop(igt_display_t *display, uint32_t id);
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v4 2/3] tests/kms_plane_multiple: Fix 2-display test for MST shared-link BW
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers Sowmiya S
@ 2026-06-29 9:26 ` Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget Sowmiya S
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Sowmiya S @ 2026-06-29 9:26 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
Perform joint CRC capture with BW-fitting
Ensure fitted modes are applied before reference capture
so driver-accepted BW-constrained commit matches the test.
v2: Update function name(Jani)
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/kms_plane_multiple.c | 85 +++++++++++++++++++++++++++++++-------
1 file changed, 71 insertions(+), 14 deletions(-)
diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
index 0d338eeb5..0ebf9d391 100644
--- a/tests/kms_plane_multiple.c
+++ b/tests/kms_plane_multiple.c
@@ -473,6 +473,62 @@ static void test_fini_2_display(data_t *data)
igt_display_reset(&data->display);
}
+/*
+ * get_reference_crc_2_display:
+ * Capture reference CRCs for both outputs in a single joint commit so that
+ * the kernel negotiates the same bpp/dithering settings as the actual test
+ * commit. On shared-link configurations (e.g. two MST streams on one DP
+ * connection) the per-pipe bpp is reduced when both streams are active
+ * simultaneously (e.g. 24bpp -> 18bpp with dithering), which changes the
+ * scanout CRC. Capturing refs one pipe at a time would use unconstrained
+ * bpp and produce a mismatching reference.
+ */
+static void get_reference_crc_2_display(data_t *data,
+ igt_output_t *output1, igt_output_t *output2,
+ color_t *color, uint64_t modifier)
+{
+ drmModeModeInfo *mode1, *mode2;
+ igt_plane_t *primary1, *primary2;
+ int ret;
+
+ /*
+ * Display reset, CRTC assignment and igt_require_mst_link_bw() are done
+ * by the caller before this function is invoked so the fitted modes
+ * are already set on the outputs.
+ */
+ mode1 = igt_output_get_mode(output1);
+ mode2 = igt_output_get_mode(output2);
+
+ primary1 = igt_output_get_plane_type(output1, DRM_PLANE_TYPE_PRIMARY);
+ primary2 = igt_output_get_plane_type(output2, DRM_PLANE_TYPE_PRIMARY);
+
+ data->plane1[primary1->index] = primary1;
+ data->plane2[primary2->index] = primary2;
+
+ igt_create_color_fb(data->drm_fd, mode1->hdisplay, mode1->vdisplay,
+ DRM_FORMAT_XRGB8888, modifier,
+ color->red, color->green, color->blue,
+ &data->fb1[primary1->index]);
+ igt_create_color_fb(data->drm_fd, mode2->hdisplay, mode2->vdisplay,
+ DRM_FORMAT_XRGB8888, modifier,
+ color->red, color->green, color->blue,
+ &data->fb2[primary2->index]);
+
+ igt_plane_set_fb(primary1, &data->fb1[primary1->index]);
+ igt_plane_set_fb(primary2, &data->fb2[primary2->index]);
+
+ ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ igt_skip_on(ret != 0);
+
+ igt_pipe_crc_collect_crc(data->pipe_crc1, &data->ref_crc1);
+ igt_pipe_crc_collect_crc(data->pipe_crc2, &data->ref_crc2);
+
+ igt_plane_set_fb(primary1, NULL);
+ igt_plane_set_fb(primary2, NULL);
+ igt_remove_fb(data->drm_fd, &data->fb1[primary1->index]);
+ igt_remove_fb(data->drm_fd, &data->fb2[primary2->index]);
+}
+
static void test_plane_position_2_display(data_t *data, igt_crtc_t *crtc1,
igt_crtc_t *crtc2,
igt_output_t *output1, igt_output_t *output2,
@@ -486,23 +542,23 @@ static void test_plane_position_2_display(data_t *data, igt_crtc_t *crtc1,
if (!opt.all_planes)
n_planes = min(n_planes, DEFAULT_N_PLANES);
+ test_init_2_display(data, crtc1, crtc2, n_planes);
+
/*
- * Note: We could use the dynamic way of calculating the maximum planes here
- * like we've on single display subtest but this consumes a lot of extra time
- * with the number of dynamic subtests in this case. So keeping n_planes to the
- * default value. This might need to be tweaked if we see any bw related failures.
+ * Reset the display, assign CRTCs and compute the fitted modes before
+ * the reference CRC capture. igt_require_mst_link_bw() selects modes that
+ * satisfy shared-link bandwidth constraints (e.g. two MST streams on
+ * one DP connection). Doing this here means get_reference_crc_2_display()
+ * needs no internal reset, so the chosen modes stay in place for the
+ * entire test without having to be saved and re-applied afterwards.
*/
+ igt_display_reset(&data->display);
+ igt_output_set_crtc(output1, crtc1);
+ igt_output_set_crtc(output2, crtc2);
+ igt_require_mst_link_bw(&data->display);
- test_init_2_display(data, crtc1,
- crtc2, n_planes);
- get_reference_crc(data, output1,
- crtc1,
- data->pipe_crc1, &blue,
- data->plane1, DRM_FORMAT_MOD_LINEAR, &data->ref_crc1);
- get_reference_crc(data, output2,
- crtc2,
- data->pipe_crc2, &blue,
- data->plane2, DRM_FORMAT_MOD_LINEAR, &data->ref_crc2);
+ get_reference_crc_2_display(data, output1, output2,
+ &blue, DRM_FORMAT_MOD_LINEAR);
prepare_planes(data, crtc1, &blue,
data->plane1,
@@ -512,6 +568,7 @@ static void test_plane_position_2_display(data_t *data, igt_crtc_t *crtc1,
modifier, 2, output2, data->fb2);
igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
igt_pipe_crc_start(data->pipe_crc1);
igt_pipe_crc_start(data->pipe_crc2);
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 2/3] tests/kms_plane_multiple: Fix 2-display test for MST shared-link BW Sowmiya S
@ 2026-06-29 9:26 ` Sowmiya S
2026-06-29 10:05 ` Jani Nikula
2026-06-29 20:37 ` ✓ i915.CI.BAT: success for Fix 2-display test for MST shared-link BW (rev4) Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Sowmiya S @ 2026-06-29 9:26 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
When multiple displays share a single MST link,
running them at their highest modes can exceed the
available bandwidth.This causes the stress loop to
fail with -ENOSPC when the driver rejects the commit.
Before allocating framebuffers,check that the combined
mode bandwidth fits the link and scale down modes if
needed,so stress loop never commits an impossible config.
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/intel/kms_pipe_stress.c | 51 +++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c
index 36e3842c6..84dcba11f 100644
--- a/tests/intel/kms_pipe_stress.c
+++ b/tests/intel/kms_pipe_stress.c
@@ -763,6 +763,8 @@ static void prepare_test(struct data *data)
int i, j;
int num_connectors;
int num_cpus = (int) sysconf(_SC_NPROCESSORS_ONLN);
+ igt_output_t *output;
+ enum pipe pipe = PIPE_A;
data->number_of_cores = min(num_cpus, MAX_CORES);
@@ -820,6 +822,55 @@ static void prepare_test(struct data *data)
data->num_planes[i], i);
}
+ /*
+ * Assign all connected outputs to their pipes and fit the modes
+ * within the available link bandwidth. On shared-link MST
+ * configurations such as a TBT dock (e.g. 2x4K displays)
+ * the combined DP stream bandwidth can exceed the link capacity
+ * and cause subsequent commits to fail with -ENOSPC.
+ * igt_require_mst_link_bw() detects this and selects the highest
+ * modes that fit the link budget; for non-MST setups it is a
+ * no-op. Update data->highest_mode[] before create_framebuffers()
+ * so that FBs are allocated at the BW-constrained dimensions and
+ * the stress loop commits with a mode the driver will accept.
+ */
+ igt_display_reset(display);
+ for_each_connected_output(display, output) {
+ igt_crtc_t *crtc = igt_crtc_for_pipe(display, pipe);
+
+ if (!crtc || !data->highest_mode[pipe]) {
+ if (++pipe >= IGT_MAX_PIPES)
+ break;
+ continue;
+ }
+
+ igt_output_set_crtc(output, crtc);
+ igt_output_override_mode(output, data->highest_mode[pipe]);
+ pipe++;
+ if (pipe >= IGT_MAX_PIPES)
+ break;
+ }
+
+ igt_require_mst_link_bw(display);
+
+ /* Update highest_mode[] with the (possibly fitted) modes. */
+ for_each_connected_output(display, output) {
+ igt_crtc_t *crtc = output->pending_crtc;
+ enum pipe p;
+
+ if (!crtc)
+ continue;
+
+ p = crtc->pipe;
+ if (!data->highest_mode[p])
+ continue;
+
+ data->highest_mode[p] = igt_output_get_mode(output);
+ igt_assert(data->highest_mode[p]);
+ igt_info("Mode for pipe %d after BW fitting:\n", (int)p);
+ kmstest_dump_mode(data->highest_mode[p]);
+ }
+
create_framebuffers(data);
if (intel_gen(intel_get_drm_devid(data->drm_fd)) > 9)
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers
2026-06-29 9:26 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers Sowmiya S
@ 2026-06-29 10:02 ` Jani Nikula
0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2026-06-29 10:02 UTC (permalink / raw)
To: Sowmiya S, igt-dev
Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
On Mon, 29 Jun 2026, Sowmiya S <sowmiya.s@intel.com> wrote:
> Add helpers to handle shared-link DP bandwidth fitting for
> MST/daisy-chain configurations.
>
> On MST hubs/daisy-chains multiple streams share one DP link
> and a joint atomic commit can be rejected unless modes are
> chosen to fit the link BW. This will centralizes MST detection
> and fitting so tests can request fitting only when required.
>
> v2: Remove the flag used for caching values and update the
> function name to better describe its functionality (Jani)
> v3: Apply mst bw fit for shared link (Kunal)
> Remove unused variable (Kunal)
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
> lib/igt_kms.c | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 1 +
> 2 files changed, 75 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e82d32130..fceca2a1b 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -5472,6 +5472,80 @@ bool igt_fit_modes_in_bw(igt_display_t *display)
> return true;
> }
>
> +/**
> + * igt_outputs_share_mst_link:
> + * @output_a: first output
> + * @output_b: second output
> + *
> + * Returns: true if both outputs are active DP-MST streams that share the
> + * same upstream link, i.e. their root connector IDs (as encoded in the
> + * MST PATH property) are equal. Returns false if either output is not an
> + * active MST stream or if they are rooted at different connectors.
> + */
> +static bool igt_outputs_share_mst_link(igt_output_t *output_a,
> + igt_output_t *output_b)
> +{
> + if (!output_a->pending_crtc || !igt_check_output_is_dp_mst(output_a))
> + return false;
The pending_crtc member is supposed to be private to igt_output_t. You
can use igt_output_get_driving_crtc(). Ditto everywhere.
> +
> + if (!output_b->pending_crtc || !igt_check_output_is_dp_mst(output_b))
> + return false;
> +
> + return igt_get_dp_mst_connector_id(output_a) ==
> + igt_get_dp_mst_connector_id(output_b);
> +}
> +
> +/**
> + * igt_require_mst_link_bw:
> + * @display: a pointer to an #igt_display_t structure
> + *
> + * When two or more DP-MST streams share the same upstream link (i.e. they
> + * are both rooted at the same MST hub), a joint atomic commit may be
> + * rejected by the driver if the combined stream bandwidth exceeds the link
> + * capacity. This function detects that situation by comparing the root
> + * connector ID embedded in each output's MST PATH property and, when two
> + * or more active outputs share the same root, calls igt_fit_modes_in_bw()
> + * to select mode overrides that satisfy the shared-link BW budget. The
> + * test is skipped if no valid combination can be found.
> + *
> + * TODO: Extend this function to proactively detect outputs that share a
> + * DP tunnel (USB4/Thunderbolt) and trigger igt_fit_modes_in_bw() for
> + * those too.
> + */
> +void igt_require_mst_link_bw(igt_display_t *display)
> +{
> + igt_output_t *mst_outputs[IGT_MAX_PIPES];
I've seen the mistake elsewhere, but IGT_MAX_PIPES is not the same as
the max number of outputs (which is based on connectors).
> + int n_mst = 0;
> + igt_output_t *output;
> + bool shared_link = false;
> + int i, j;
> +
> + /* Collect all active MST outputs in one pass. */
> + for_each_output(display, output) {
> + if (output->pending_crtc && igt_check_output_is_dp_mst(output))
> + mst_outputs[n_mst++] = output;
So this could overflow.
> + }
> +
> + /* Need at least two MST outputs before a shared-link is possible. */
> + if (n_mst < 2)
> + return;
> +
> + /* Check every pair for a shared upstream root connector. */
> + for (i = 0; i < n_mst && !shared_link; i++)
> + for (j = i + 1; j < n_mst; j++)
> + if (igt_outputs_share_mst_link(mst_outputs[i],
> + mst_outputs[j])) {
> + shared_link = true;
> + break;
> + }
> +
> + if (!shared_link)
> + return;
> +
> + igt_require_f(igt_fit_modes_in_bw(display),
> + "No valid mode combination fits available MST link BW\n");
> +}
> +
> /**
> * igt_crtc_refresh:
> * @crtc: CRTC to refresh
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 3df3ba866..f5aff5008 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1370,6 +1370,7 @@ drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
> uint64_t igt_get_writeback_fb_id(igt_output_t *output);
> void igt_detach_crtc(igt_display_t *display, igt_output_t *output);
> void igt_get_and_wait_out_fence(igt_output_t *output);
> +void igt_require_mst_link_bw(igt_display_t *display);
>
> igt_colorop_t *igt_find_colorop(igt_display_t *display, uint32_t id);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget
2026-06-29 9:26 ` [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget Sowmiya S
@ 2026-06-29 10:05 ` Jani Nikula
0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2026-06-29 10:05 UTC (permalink / raw)
To: Sowmiya S, igt-dev
Cc: kunal1.joshi, swati2.sharma, ramanaidu.naladala, Sowmiya S
On Mon, 29 Jun 2026, Sowmiya S <sowmiya.s@intel.com> wrote:
> When multiple displays share a single MST link,
> running them at their highest modes can exceed the
> available bandwidth.This causes the stress loop to
> fail with -ENOSPC when the driver rejects the commit.
> Before allocating framebuffers,check that the combined
> mode bandwidth fits the link and scale down modes if
> needed,so stress loop never commits an impossible config.
I don't see any reason in the patch to require the use of enum pipe. It
should be avoided if it's at all possible.
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
> tests/intel/kms_pipe_stress.c | 51 +++++++++++++++++++++++++++++++++++
> 1 file changed, 51 insertions(+)
>
> diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c
> index 36e3842c6..84dcba11f 100644
> --- a/tests/intel/kms_pipe_stress.c
> +++ b/tests/intel/kms_pipe_stress.c
> @@ -763,6 +763,8 @@ static void prepare_test(struct data *data)
> int i, j;
> int num_connectors;
> int num_cpus = (int) sysconf(_SC_NPROCESSORS_ONLN);
> + igt_output_t *output;
> + enum pipe pipe = PIPE_A;
>
> data->number_of_cores = min(num_cpus, MAX_CORES);
>
> @@ -820,6 +822,55 @@ static void prepare_test(struct data *data)
> data->num_planes[i], i);
> }
>
> + /*
> + * Assign all connected outputs to their pipes and fit the modes
> + * within the available link bandwidth. On shared-link MST
> + * configurations such as a TBT dock (e.g. 2x4K displays)
> + * the combined DP stream bandwidth can exceed the link capacity
> + * and cause subsequent commits to fail with -ENOSPC.
> + * igt_require_mst_link_bw() detects this and selects the highest
> + * modes that fit the link budget; for non-MST setups it is a
> + * no-op. Update data->highest_mode[] before create_framebuffers()
> + * so that FBs are allocated at the BW-constrained dimensions and
> + * the stress loop commits with a mode the driver will accept.
> + */
> + igt_display_reset(display);
> + for_each_connected_output(display, output) {
> + igt_crtc_t *crtc = igt_crtc_for_pipe(display, pipe);
> +
> + if (!crtc || !data->highest_mode[pipe]) {
> + if (++pipe >= IGT_MAX_PIPES)
> + break;
> + continue;
> + }
> +
> + igt_output_set_crtc(output, crtc);
> + igt_output_override_mode(output, data->highest_mode[pipe]);
> + pipe++;
> + if (pipe >= IGT_MAX_PIPES)
> + break;
> + }
> +
> + igt_require_mst_link_bw(display);
> +
> + /* Update highest_mode[] with the (possibly fitted) modes. */
> + for_each_connected_output(display, output) {
> + igt_crtc_t *crtc = output->pending_crtc;
> + enum pipe p;
> +
> + if (!crtc)
> + continue;
> +
> + p = crtc->pipe;
> + if (!data->highest_mode[p])
> + continue;
> +
> + data->highest_mode[p] = igt_output_get_mode(output);
> + igt_assert(data->highest_mode[p]);
> + igt_info("Mode for pipe %d after BW fitting:\n", (int)p);
There's a helper for printing pipe name. (But hopefully you can just
switch to using igt_crtc_t and CRTC index.)
> + kmstest_dump_mode(data->highest_mode[p]);
> + }
> +
> create_framebuffers(data);
>
> if (intel_gen(intel_get_drm_devid(data->drm_fd)) > 9)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Fix 2-display test for MST shared-link BW (rev4)
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
` (2 preceding siblings ...)
2026-06-29 9:26 ` [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget Sowmiya S
@ 2026-06-29 20:37 ` Patchwork
2026-06-29 20:48 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 20:37 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2806 bytes --]
== Series Details ==
Series: Fix 2-display test for MST shared-link BW (rev4)
URL : https://patchwork.freedesktop.org/series/165199/
State : success
== Summary ==
CI Bug Log - changes from IGT_8988 -> IGTPW_15445
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15445 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#15673])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8988/bat-adlp-6/igt@core_debugfs@read-all-entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/bat-adlp-6/igt@core_debugfs@read-all-entries.html
* igt@dmabuf@all-tests:
- fi-kbl-8809g: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/fi-kbl-8809g/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8988/bat-adlp-6/igt@core_auth@basic-auth.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/bat-adlp-6/igt@core_auth@basic-auth.html
* igt@core_hotunplug@unbind-rebind:
- fi-kbl-8809g: [ABORT][7] -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8988/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8988 -> IGTPW_15445
* Linux: CI_DRM_18724 -> CI_DRM_18726
CI-20190529: 20190529
CI_DRM_18724: b9aebfff5a3c5049500a7bd4573815090a425f34 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18726: 03288b34f48c3fe60055353c30da4aacab572cdc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15445: 14c22cfa6e9abd73989a8eae70d290fb1d696dd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8988: 8988
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/index.html
[-- Attachment #2: Type: text/html, Size: 3618 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Fix 2-display test for MST shared-link BW (rev4)
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
` (3 preceding siblings ...)
2026-06-29 20:37 ` ✓ i915.CI.BAT: success for Fix 2-display test for MST shared-link BW (rev4) Patchwork
@ 2026-06-29 20:48 ` Patchwork
2026-06-30 4:28 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-30 7:37 ` ✓ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 20:48 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1689 bytes --]
== Series Details ==
Series: Fix 2-display test for MST shared-link BW (rev4)
URL : https://patchwork.freedesktop.org/series/165199/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8988_BAT -> XEIGTPW_15445_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15445_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-vm: [ABORT][1] ([Intel XE#8007] / [Intel XE#8023]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8023
Build changes
-------------
* IGT: IGT_8988 -> IGTPW_15445
* Linux: xe-5304-b9aebfff5a3c5049500a7bd4573815090a425f34 -> xe-5306-03288b34f48c3fe60055353c30da4aacab572cdc
IGTPW_15445: 14c22cfa6e9abd73989a8eae70d290fb1d696dd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8988: 8988
xe-5304-b9aebfff5a3c5049500a7bd4573815090a425f34: b9aebfff5a3c5049500a7bd4573815090a425f34
xe-5306-03288b34f48c3fe60055353c30da4aacab572cdc: 03288b34f48c3fe60055353c30da4aacab572cdc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/index.html
[-- Attachment #2: Type: text/html, Size: 2258 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for Fix 2-display test for MST shared-link BW (rev4)
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
` (4 preceding siblings ...)
2026-06-29 20:48 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-30 4:28 ` Patchwork
2026-06-30 7:37 ` ✓ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-30 4:28 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 24132 bytes --]
== Series Details ==
Series: Fix 2-display test for MST shared-link BW (rev4)
URL : https://patchwork.freedesktop.org/series/165199/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8988_FULL -> XEIGTPW_15445_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15445_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#8007])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
- shard-lnl: [PASS][5] -> [ABORT][6] ([Intel XE#8007])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-5/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-1/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7679])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2325] / [Intel XE#7358])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-10/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7358])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-7/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2321] / [Intel XE#7355])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2286] / [Intel XE#6035])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4422] / [Intel XE#7442])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4156] / [Intel XE#7425])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2374] / [Intel XE#6128])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#301] / [Intel XE#3149])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7351])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7179])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2311]) +23 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2313]) +20 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4298] / [Intel XE#5873])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7283])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_dc@dc3co-vpb-simulation@pr:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#8395]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation@pr.html
* igt@kms_pm_dc@dc3co-vpb-simulation@psr2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#8396])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation@psr2.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#8399])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1489]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_vrr@max-min:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#4227]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-2/igt@kms_vrr@max-min.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1499])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7636]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8374]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8364]) +9 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_reset@multi-queue-cancel:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8369])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-10/igt@xe_exec_reset@multi-queue-cancel.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8378]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6964])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7622])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-6/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-8/igt@xe_peer2peer@write.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#6569])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#6569]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-bmg: [PASS][53] -> [FAIL][54] ([Intel XE#7992])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-up.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][55] ([Intel XE#7571]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][57] ([Intel XE#301]) -> [PASS][58] +2 other tests pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [INCOMPLETE][59] ([Intel XE#8367]) -> [PASS][60] +1 other test pass
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-4/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][61] ([Intel XE#8399]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-bmg: [FAIL][63] ([Intel XE#7850]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-9/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-6/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [FAIL][65] ([Intel XE#7992]) -> [PASS][66] +1 other test pass
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-10/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt0-rcs0.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [FAIL][67] -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-10/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [ABORT][69] ([Intel XE#8007]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][71] ([Intel XE#301]) -> [FAIL][72] ([Intel XE#301] / [Intel XE#3149])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][73] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][74] ([Intel XE#3544])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][75] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][76] ([Intel XE#2426] / [Intel XE#5848])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8988/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[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#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[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#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[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#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#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8367
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
Build changes
-------------
* IGT: IGT_8988 -> IGTPW_15445
* Linux: xe-5304-b9aebfff5a3c5049500a7bd4573815090a425f34 -> xe-5306-03288b34f48c3fe60055353c30da4aacab572cdc
IGTPW_15445: 14c22cfa6e9abd73989a8eae70d290fb1d696dd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8988: 8988
xe-5304-b9aebfff5a3c5049500a7bd4573815090a425f34: b9aebfff5a3c5049500a7bd4573815090a425f34
xe-5306-03288b34f48c3fe60055353c30da4aacab572cdc: 03288b34f48c3fe60055353c30da4aacab572cdc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15445/index.html
[-- Attachment #2: Type: text/html, Size: 26699 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.Full: success for Fix 2-display test for MST shared-link BW (rev4)
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
` (5 preceding siblings ...)
2026-06-30 4:28 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-06-30 7:37 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-30 7:37 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 125955 bytes --]
== Series Details ==
Series: Fix 2-display test for MST shared-link BW (rev4)
URL : https://patchwork.freedesktop.org/series/165199/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18726_full -> IGTPW_15445_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_18726_full and IGTPW_15445_full:
### New IGT tests (2) ###
* igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_cursor_crc@cursor-alpha-transparent@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
Known issues
------------
Here are the changes found in IGTPW_15445_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@api_intel_bb@crc32.html
* igt@dmabuf@all-tests:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#15931])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@dmabuf@all-tests.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#4873])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-6/igt@gem_caching@reads.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#9323])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#13008])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#13356] / [i915#16348])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@engines-hang:
- shard-snb: NOTRUN -> [SKIP][10] ([i915#1099]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-snb6/igt@gem_ctx_persistence@engines-hang.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@kms:
- shard-rkl: [PASS][15] -> [DMESG-WARN][16] ([i915#13363])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@gem_eio@kms.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@gem_eio@kms.html
- shard-tglu: [PASS][17] -> [DMESG-WARN][18] ([i915#13363])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-5/igt@gem_eio@kms.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-3/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-3/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][21] ([i915#11965]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-5/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][22] ([i915#11965]) +4 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][23] ([i915#11965]) +2 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#3281]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-12/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +8 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][29] -> [INCOMPLETE][30] ([i915#13356]) +1 other test incomplete
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
- shard-rkl: NOTRUN -> [INCOMPLETE][31] ([i915#13356]) +3 other tests incomplete
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#4613]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@massive:
- shard-glk: NOTRUN -> [SKIP][34] ([i915#4613]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk8/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#3282]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#284])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4077]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4077]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) +8 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4083]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@gem_mmap_wc@bad-object.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4083]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@gem_mmap_wc@bad-object.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3282]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-13/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3282])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-7/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#13398])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4270]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4270]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-x-tiled:
- shard-snb: NOTRUN -> [SKIP][50] +61 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-snb5/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8428]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5190] / [i915#8428]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4880])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3297])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3297])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#3297]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#2856])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@gen9_exec_parse@batch-invalid-length.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#2527])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#2856])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-3/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#2527]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [ABORT][64] ([i915#15342]) +1 other test abort
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk8/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][65] ([i915#13029] / [i915#14545])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#8399])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#8399])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4387])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#6245])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-15/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#16079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@i915_query@query-topology-unsupported.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#16079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#5723])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#7707])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][74] ([i915#12761]) +1 other test incomplete
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk11/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][75] -> [FAIL][76] ([i915#15662]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#1769] / [i915#3555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][78] ([i915#1769])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#1769] / [i915#3555])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#5286]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#5286]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-glk11: NOTRUN -> [SKIP][82] +153 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#5286]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4538] / [i915#5286]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [FAIL][85] ([i915#15733] / [i915#5138])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3638]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3828])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3638])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#15733] / [i915#5138])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][91] +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg1: [PASS][92] -> [DMESG-WARN][93] ([i915#4423])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5190]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4538])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#6095]) +245 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6095]) +24 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][99] +538 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-glk10: NOTRUN -> [SKIP][100] +117 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#12313])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#12313])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#6095]) +44 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#10307] / [i915#6095]) +82 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6095]) +71 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#6095]) +15 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#6095]) +29 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
- shard-glk: [PASS][109] -> [INCOMPLETE][110] ([i915#14694] / [i915#15582])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#14098] / [i915#6095]) +50 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#11151] / [i915#7828]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#16464] / [i915#16471])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-3/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#16471])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#16471])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-12/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#16471]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#16471]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#14544] / [i915#7828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-16/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#15865]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#15330] / [i915#3116] / [i915#3299])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#15330])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#15330] / [i915#3116])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#15865]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_content_protection@mei-interface.html
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#15865]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#15865]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#3555]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8814]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][134] -> [FAIL][135] ([i915#13566]) +1 other test fail
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][137] ([i915#13566]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: NOTRUN -> [FAIL][138] ([i915#13566]) +1 other test fail
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3555]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#13566]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#13049])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#13049]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][144] ([i915#12358] / [i915#14152] / [i915#7882])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#12358] / [i915#14152])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#9809]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#4103])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#13046] / [i915#5354])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-tglu: [PASS][149] -> [FAIL][150] ([i915#15768])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3804])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#13749])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#13748])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#13707])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#13707])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#16361]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#16361])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#16361])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#16361]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#16361])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][161] ([i915#9878])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#16081])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#9337])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#658])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#9934])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#14544] / [i915#9934])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#9934]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#9934]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-10/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3637] / [i915#9934]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#9934]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][171] ([i915#13027])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][172] -> [INCOMPLETE][173] ([i915#16276] / [i915#6113])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#12314] / [i915#12745] / [i915#4839])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12745] / [i915#4839])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12745])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][177] -> [ABORT][178] ([i915#15132]) +1 other test abort
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][179] ([i915#12314] / [i915#12745])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][180] ([i915#16276] / [i915#6113])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#15643]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#15643])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#15643]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#15643] / [i915#5190]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#15991] / [i915#5354]) +8 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][187] ([i915#10056])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#5439])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][189] -> [SKIP][190] ([i915#15989]) +5 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][191] +45 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][192] +57 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#15990]) +10 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#15989]) +6 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#15989]) +8 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][196] ([i915#16056])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk11/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#5439])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#15104] / [i915#15990])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#15104] / [i915#15990])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][200] +20 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#1825])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#14544] / [i915#1825])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#15991] / [i915#1825]) +9 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#15990] / [i915#8708]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#5439])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#5439])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#15102]) +11 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#15991]) +12 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#15102]) +20 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#15989]) +11 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#15989]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen:
- shard-glk: [PASS][212] -> [SKIP][213] +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#15990]) +7 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#15990]) +8 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#15989]) +19 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#9766])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#15102]) +10 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#15102]) +23 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#15102]) +24 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#15990] / [i915#8708])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#15102] / [i915#3023]) +22 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15989]) +10 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#15102])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][225] +94 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#15991]) +11 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-19/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: NOTRUN -> [ABORT][229] ([i915#15132])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#13688])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#15460])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15458])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15458])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#16451])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][235] +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#14712])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#14712])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#15709]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15709]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#15709]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15709])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#16386]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#16386]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#16386]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#15709]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15709]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [PASS][247] -> [INCOMPLETE][248] ([i915#13026])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][249] ([i915#12178])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][250] ([i915#7862]) +1 other test fail
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#13958])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#13958])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#13958])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#13958])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#13958])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#14259])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][257] -> [SKIP][258] ([i915#6953])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#15329] / [i915#6953])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15329]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#12343] / [i915#9812])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#12343] / [i915#9812])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#12343] / [i915#5354])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#12343] / [i915#5354])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#9685])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15948])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [PASS][267] -> [SKIP][268] ([i915#15073])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][269] -> [SKIP][270] ([i915#15073]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][271] -> [SKIP][272] ([i915#15073]) +2 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15403])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-9/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][274] -> [INCOMPLETE][275] ([i915#14419])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#6524])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#11520]) +8 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][278] ([i915#11520]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][279] ([i915#11520]) +9 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12316]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][281] ([i915#11520]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#11520]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#11520]) +5 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][284] ([i915#11520]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-snb4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#11520]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#11520]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#9683])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#9732]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#9732]) +13 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-7/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +8 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#9688]) +6 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#14544] / [i915#9732])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +8 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-17/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#4077] / [i915#9688]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-5/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +22 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15949])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#15949])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#12755] / [i915#15867])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#12755] / [i915#15867])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#5289]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#5289])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#5289])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#5289]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][306] ([i915#13179]) +1 other test abort
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-7/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][307] ([i915#13179]) +1 other test abort
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk2/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][308] ([i915#12276]) +2 other tests incomplete
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][309] -> [INCOMPLETE][310] ([i915#12276])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][311] ([i915#12276]) +1 other test incomplete
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html
- shard-rkl: [PASS][312] -> [INCOMPLETE][313] ([i915#12276])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#15243] / [i915#3555])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#9906]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#9906])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#2435])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#13356] / [i915#14242] / [i915#16236])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk4/igt@perf_pmu@rc6-suspend.html
* igt@prime_udl@share-import:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#16420])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-1/igt@prime_udl@share-import.html
* igt@prime_udl@share-import-addfb:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#16420])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@prime_udl@share-import-addfb.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#3291] / [i915#3708]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#9917])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][323] ([i915#13356] / [i915#16348]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][325] ([i915#9561]) -> [PASS][326] +1 other test pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][327] ([i915#15816]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-4/igt@gem_exec_big@single.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [INCOMPLETE][329] ([i915#13356]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rpm@reg-read-ioctl:
- shard-dg1: [DMESG-WARN][331] ([i915#4391] / [i915#4423]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-15/igt@i915_pm_rpm@reg-read-ioctl.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-13/igt@i915_pm_rpm@reg-read-ioctl.html
* igt@i915_selftest@live@gt_engines:
- shard-dg2: [ABORT][333] -> [PASS][334] +1 other test pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-8/igt@i915_selftest@live@gt_engines.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@i915_selftest@live@gt_engines.html
- shard-mtlp: [INCOMPLETE][335] ([i915#16229]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-mtlp-5/igt@i915_selftest@live@gt_engines.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-2/igt@i915_selftest@live@gt_engines.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: [FAIL][337] ([i915#14888]) -> [PASS][338] +3 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [INCOMPLETE][339] ([i915#12761]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][341] ([i915#14694] / [i915#15582]) -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][343] ([i915#13566]) -> [PASS][344] +1 other test pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_flip@blocking-wf_vblank:
- shard-dg1: [FAIL][345] ([i915#14600]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-17/igt@kms_flip@blocking-wf_vblank.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-rkl: [SKIP][347] ([i915#15989]) -> [PASS][348] +7 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render:
- shard-glk: [SKIP][349] -> [PASS][350] +4 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [INCOMPLETE][351] ([i915#15436]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [INCOMPLETE][353] ([i915#14412]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][355] ([i915#15073]) -> [PASS][356] +2 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [SKIP][357] ([i915#14544] / [i915#15073]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: [SKIP][359] ([i915#15073]) -> [PASS][360] +1 other test pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][361] ([i915#4423]) -> [PASS][362] +2 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-16/igt@kms_pm_rpm@i2c.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-19/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][363] ([i915#15073]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][365] ([i915#15453]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
#### Warnings ####
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][367] ([i915#7697]) -> [SKIP][368] ([i915#14544] / [i915#7697])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][369] ([i915#14544] / [i915#7697]) -> [SKIP][370] ([i915#7697])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][371] ([i915#8562]) -> [SKIP][372] ([i915#14544] / [i915#8562])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: [SKIP][373] ([i915#280]) -> [SKIP][374] ([i915#14544] / [i915#280])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@gem_ctx_sseu@engines.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][375] ([i915#6344]) -> [SKIP][376] ([i915#14544] / [i915#6344])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: [SKIP][377] ([i915#14544] / [i915#3281]) -> [SKIP][378] ([i915#3281]) +3 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-rkl: [SKIP][379] ([i915#3281]) -> [SKIP][380] ([i915#14544] / [i915#3281])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@gem_exec_reloc@basic-write-cpu-active.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-rkl: [SKIP][381] ([i915#14544] / [i915#4613]) -> [SKIP][382] ([i915#4613])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_pread@display:
- shard-rkl: [SKIP][383] ([i915#14544] / [i915#3282]) -> [SKIP][384] ([i915#3282]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gem_pread@display.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@gem_pread@display.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: [SKIP][385] ([i915#14544]) -> [SKIP][386] +27 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gem_softpin@evict-snoop.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [ABORT][387] ([i915#15131]) -> [INCOMPLETE][388] ([i915#13809] / [i915#16226])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-1/igt@gem_softpin@noreloc-s3.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][389] ([i915#3297] / [i915#3323]) -> [SKIP][390] ([i915#14544] / [i915#3297] / [i915#3323])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][391] ([i915#3297]) -> [SKIP][392] ([i915#14544] / [i915#3297])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: [SKIP][393] ([i915#2527]) -> [SKIP][394] ([i915#14544] / [i915#2527])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@gen9_exec_parse@basic-rejected.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][395] ([i915#14544] / [i915#2527]) -> [SKIP][396] ([i915#2527])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][397] ([i915#14544] / [i915#8399]) -> [SKIP][398] ([i915#8399])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [ABORT][399] ([i915#15131] / [i915#15140]) -> [INCOMPLETE][400] ([i915#4817])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-1/igt@i915_suspend@debugfs-reader.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#5286]) -> [SKIP][402] ([i915#5286]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][403] ([i915#5286]) -> [SKIP][404] ([i915#14544] / [i915#5286])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#6095]) -> [SKIP][406] ([i915#6095]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][407] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][408] ([i915#14098] / [i915#6095]) +4 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][409] ([i915#12313] / [i915#14544]) -> [SKIP][410] ([i915#12313]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: [SKIP][411] ([i915#12313]) -> [SKIP][412] ([i915#12313] / [i915#4423])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: [SKIP][413] ([i915#11151] / [i915#7828]) -> [SKIP][414] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-multiple.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][415] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][416] ([i915#11151] / [i915#7828]) +3 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [ABORT][417] ([i915#13562]) -> [SKIP][418] ([i915#15865])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-8/igt@kms_content_protection@content-type-change.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][419] ([i915#13049]) -> [SKIP][420] ([i915#13049] / [i915#14544])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][421] ([i915#9723]) -> [SKIP][422] ([i915#14544] / [i915#9723])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][423] ([i915#13748] / [i915#14544]) -> [SKIP][424] ([i915#13748])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][425] ([i915#16361]) -> [SKIP][426] ([i915#14544] / [i915#16361])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][427] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][428] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
- shard-rkl: [SKIP][429] ([i915#9934]) -> [SKIP][430] ([i915#14544] / [i915#9934]) +2 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@kms_flip@2x-flip-vs-suspend.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][431] ([i915#12745]) -> [INCOMPLETE][432] ([i915#12314] / [i915#12745])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#9934]) -> [SKIP][434] ([i915#9934]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][435] ([i915#10433] / [i915#15102]) -> [SKIP][436] ([i915#15102]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][438] ([i915#15102] / [i915#3023]) +2 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][439] ([i915#15102] / [i915#3023]) -> [SKIP][440] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][441] ([i915#15102]) -> [SKIP][442] ([i915#10433] / [i915#15102]) +2 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][443] ([i915#1825]) -> [SKIP][444] ([i915#14544] / [i915#1825]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#15102]) -> [SKIP][446] ([i915#15102]) +8 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][447] ([i915#15990] / [i915#8708]) -> [SKIP][448] ([i915#15990] / [i915#4423] / [i915#8708])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][449] -> [SKIP][450] ([i915#14544]) +18 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][451] ([i915#14544] / [i915#1825]) -> [SKIP][452] ([i915#1825]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
- shard-rkl: [SKIP][453] ([i915#15102]) -> [SKIP][454] ([i915#14544] / [i915#15102]) +5 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [INCOMPLETE][455] ([i915#15436]) -> [ABORT][456] ([i915#15132])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#15460]) -> [SKIP][458] ([i915#15460])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][459] ([i915#15458]) -> [SKIP][460] ([i915#14544] / [i915#15458])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][461] ([i915#15709]) -> [SKIP][462] ([i915#14544] / [i915#15709]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_lowres@tiling-4:
- shard-rkl: [SKIP][463] ([i915#3555]) -> [SKIP][464] ([i915#14544] / [i915#3555]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@kms_plane_lowres@tiling-4.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][465] ([i915#15329]) -> [SKIP][466] ([i915#14544] / [i915#15329]) +3 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][467] ([i915#9340]) -> [SKIP][468] ([i915#3828])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][469] ([i915#11520]) -> [SKIP][470] ([i915#11520] / [i915#14544]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-rkl: [SKIP][471] ([i915#11520] / [i915#14544]) -> [SKIP][472] ([i915#11520])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][473] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][474] ([i915#1072] / [i915#9732]) +4 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][475] ([i915#1072] / [i915#9732]) -> [SKIP][476] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-8/igt@kms_psr@psr2-cursor-plane-move.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#15949]) -> [SKIP][478] ([i915#15949])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#3555]) -> [SKIP][480] ([i915#3555]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][481] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][482] ([i915#15243] / [i915#3555])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@kms_vrr@flip-suspend.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-2/igt@kms_vrr@flip-suspend.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][483] ([i915#15778]) -> [ABORT][484] ([i915#13029] / [i915#15778])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg2-5/igt@perf_pmu@module-unload.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg2-5/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][485] ([i915#15778]) -> [ABORT][486] ([i915#13029] / [i915#15778])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-dg1-13/igt@perf_pmu@module-unload.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-dg1-19/igt@perf_pmu@module-unload.html
- shard-tglu: [ABORT][487] ([i915#13029] / [i915#15778]) -> [ABORT][488] ([i915#15778])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-tglu-9/igt@perf_pmu@module-unload.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-tglu-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][489] ([i915#8516]) -> [SKIP][490] ([i915#14544] / [i915#8516])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][491] ([i915#3708]) -> [SKIP][492] ([i915#14544] / [i915#3708])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#9917]) -> [SKIP][494] ([i915#9917])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18726/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16229]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16229
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8988 -> IGTPW_15445
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18726: 03288b34f48c3fe60055353c30da4aacab572cdc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15445: 14c22cfa6e9abd73989a8eae70d290fb1d696dd6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8988: 8988
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15445/index.html
[-- Attachment #2: Type: text/html, Size: 165953 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-06-30 7:37 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-29 9:26 [PATCH i-g-t v4 0/3] Fix 2-display test for MST shared-link BW Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 1/3] lib/igt_kms: Add MST bandwidth-fitting support and helpers Sowmiya S
2026-06-29 10:02 ` Jani Nikula
2026-06-29 9:26 ` [PATCH i-g-t v4 2/3] tests/kms_plane_multiple: Fix 2-display test for MST shared-link BW Sowmiya S
2026-06-29 9:26 ` [PATCH i-g-t v4 3/3] tests/intel/kms_pipe_stress: Fit display modes to MST link budget Sowmiya S
2026-06-29 10:05 ` Jani Nikula
2026-06-29 20:37 ` ✓ i915.CI.BAT: success for Fix 2-display test for MST shared-link BW (rev4) Patchwork
2026-06-29 20:48 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-30 4:28 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-30 7:37 ` ✓ i915.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