* [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
@ 2026-04-10 17:05 Jani Nikula
2026-04-10 19:03 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jani Nikula @ 2026-04-10 17:05 UTC (permalink / raw)
To: igt-dev; +Cc: ville.syrjala, Jani Nikula
Historically, CRTCs and CRTC indexes have been called "pipes" in IGT,
due to IGT's Intel origins. This has been increasingly confusing, and
downright wrong with the idea of not having 1:1 mapping between pipes
and CRTC indexes. While CRTC indexes are always consecutive in the order
the CRTCs were created in the kernel, you could be missing pipes in
between, or create them in different order.
This conflation has been largely fixed in IGT recently (which is
evidenced by the relatively small footprint of this change). But the
idea of "pipe" is still there.
Rename enum pipe to vendor_pipe, and crtc->pipe member to
crtc->vendor_pipe to further emphasize that they're not generic but
rather GPU vendor specific concepts, and should be avoided in generic
code.
The vendor pipe usage remains in some generic lib/kms code for legacy
reasons, but works due to it matching CRTC index by default for
non-Intel.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
"hardware pipe" is another alternative, but I think "vendor pipe" leaves
the door open for a more generic interpretation and application for
non-Intel devices.
---
lib/igt_kms.c | 22 +++++++++---------
lib/igt_kms.h | 20 ++++++++++------
tests/intel/kms_busy.c | 16 ++++++-------
tests/intel/kms_dp_link_training.c | 2 +-
tests/intel/kms_dsc_helper.c | 2 +-
tests/intel/kms_frontbuffer_tracking.c | 2 +-
tests/intel/kms_joiner.c | 32 +++++++++++++-------------
tests/intel/kms_joiner_helper.c | 6 ++---
tests/intel/kms_pipe_b_c_ivb.c | 4 ++--
tests/intel/kms_pipe_stress.c | 22 +++++++++---------
tests/intel/kms_pm_dc.c | 8 +++----
tests/intel/kms_pm_lpsp.c | 2 +-
tests/intel/kms_psr2_sf.c | 4 ++--
tests/intel/perf_pmu.c | 2 +-
tests/kms_cursor_crc.c | 2 +-
tests/kms_cursor_edge_walk.c | 2 +-
tests/kms_panel_fitting.c | 2 +-
tests/kms_plane_scaling.c | 2 +-
18 files changed, 79 insertions(+), 73 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 2dbf9ec38458..f0364d5c723a 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1050,7 +1050,7 @@ static igt_plane_t *igt_get_assigned_primary(igt_output_t *output,
*
* Returns: A string representing @pipe, e.g. "A".
*/
-const char *kmstest_pipe_name(enum pipe pipe)
+const char *kmstest_pipe_name(enum vendor_pipe pipe)
{
static const char str[] = "A\0B\0C\0D\0E\0F\0G\0H\0I\0J\0K\0L\0M\0N\0O\0P";
@@ -3111,7 +3111,7 @@ static int crtc_pipe_compare(const void *_a, const void *_b)
{
const igt_crtc_t *a = _a, *b = _b;
- return a->pipe - b->pipe;
+ return a->vendor_pipe - b->vendor_pipe;
}
/**
@@ -3182,7 +3182,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
crtc->crtc_id = resources->crtcs[crtc_index];
crtc->crtc_index = crtc_index;
- crtc->pipe = is_intel_dev ? __intel_get_pipe_from_crtc_index(drm_fd, crtc_index) : crtc_index;
+ crtc->vendor_pipe = is_intel_dev ? __intel_get_pipe_from_crtc_index(drm_fd, crtc_index) : crtc_index;
}
/* For Intel, sort the CRTCs in pipe order */
@@ -3602,7 +3602,7 @@ static int output_crtc_pipe_compare(const void *_a, const void *_b)
/* pipe order for valid output/crtc combos */
if (a->crtc && b->crtc)
- return a->crtc->pipe - b->crtc->pipe;
+ return a->crtc->vendor_pipe - b->crtc->vendor_pipe;
/* valid combos before empty elements */
return !b->crtc - !a->crtc;
@@ -5295,7 +5295,7 @@ const char *igt_crtc_name(igt_crtc_t *crtc)
if (crtc == NULL)
return "None";
- return kmstest_pipe_name(crtc->pipe);
+ return kmstest_pipe_name(crtc->vendor_pipe);
}
/**
@@ -7009,7 +7009,7 @@ bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
*
* Returns: True if joiner is enabled, false otherwise.
*/
-bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe)
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum vendor_pipe pipe)
{
char buf[16384], master_str[64], slave_str[64];
int dir, res;
@@ -7229,7 +7229,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
igt_crtc_t *crtc;
igt_output_t *output;
struct {
- enum pipe idx;
+ enum vendor_pipe idx;
drmModeModeInfo *mode;
igt_output_t *output;
bool force_joiner;
@@ -7248,7 +7248,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
if (!output->pending_crtc)
continue;
- pipes[pipes_in_use].idx = output->pending_crtc->pipe;
+ pipes[pipes_in_use].idx = output->pending_crtc->vendor_pipe;
pipes[pipes_in_use].mode = igt_output_get_mode(output);
pipes[pipes_in_use].output = output;
pipes[pipes_in_use].force_joiner = igt_check_force_joiner_status(display->drm_fd, output->name);
@@ -8088,12 +8088,12 @@ igt_crtc_t *igt_crtc_for_crtc_index(igt_display_t *display, int crtc_index)
return NULL;
}
-igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum pipe pipe)
+igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum vendor_pipe pipe)
{
igt_crtc_t *crtc;
for_each_crtc(display, crtc) {
- if (crtc->pipe == pipe)
+ if (crtc->vendor_pipe == pipe)
return crtc;
}
@@ -8155,7 +8155,7 @@ igt_crtc_t *igt_next_crtc(igt_display_t *display, igt_crtc_t *crtc)
igt_crtc_t *next;
for_each_crtc(display, next) {
- if (!crtc || next->pipe > crtc->pipe)
+ if (!crtc || next->vendor_pipe > crtc->vendor_pipe)
return next;
}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 9a3fa980d89d..f2720490ae7f 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -49,7 +49,13 @@
#define LOCAL_DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT 6
/**
- * pipe:
+ * vendor_pipe:
+ *
+ * GPU vendor-specific hardware pipe, which may be different from the CRTC
+ * index. Only code and tests that specifically need to know the pipe should use
+ * this, and conditional to the device in question. Defaults to matching the
+ * CRTC index, but do not rely on it.
+ *
* @PIPE_NONE: Invalid pipe, used for disconnecting a output from a pipe.
* @PIPE_A: First crtc.
* @PIPE_B: Second crtc.
@@ -69,7 +75,7 @@
* @PIPE_P: Sixteenth crtc.
* @IGT_MAX_PIPES: Max number of pipes allowed.
*/
-enum pipe {
+enum vendor_pipe {
PIPE_NONE = -1,
PIPE_A = 0,
PIPE_B,
@@ -89,7 +95,7 @@ enum pipe {
PIPE_P,
IGT_MAX_PIPES
};
-const char *kmstest_pipe_name(enum pipe pipe);
+const char *kmstest_pipe_name(enum vendor_pipe pipe);
const char *kmstest_plane_type_name(int plane_type);
enum port {
@@ -472,8 +478,8 @@ typedef struct igt_plane {
*/
struct igt_crtc {
igt_display_t *display;
- /* ID of a hardware pipe */
- enum pipe pipe;
+ /* ID of a hardware pipe. This may be vendor specific. Use crtc_index instead. */
+ enum vendor_pipe vendor_pipe;
int n_planes;
int num_primary_planes;
@@ -573,7 +579,7 @@ const char *igt_crtc_name(igt_crtc_t *crtc);
igt_crtc_t *igt_crtc_for_crtc_id(igt_display_t *display, uint32_t crtc_id);
igt_crtc_t *igt_crtc_for_crtc_index(igt_display_t *display, int crtc_index);
-igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum pipe pipe);
+igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum vendor_pipe pipe);
igt_crtc_t *igt_first_crtc(igt_display_t *display);
igt_crtc_t *igt_first_crtc_with_single_output(igt_display_t *display, igt_output_t **ret_output);
igt_crtc_t *igt_next_crtc(igt_display_t *display, igt_crtc_t *crtc);
@@ -1246,7 +1252,7 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
bool max_non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
-bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe);
+bool igt_is_joiner_enabled_for_pipe(int drmfd, enum vendor_pipe pipe);
bool igt_ultrajoiner_possible(int drmfd, drmModeModeInfo *mode, int max_dotclock);
bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
diff --git a/tests/intel/kms_busy.c b/tests/intel/kms_busy.c
index e82380276666..e1864117d907 100644
--- a/tests/intel/kms_busy.c
+++ b/tests/intel/kms_busy.c
@@ -419,7 +419,7 @@ const char *help_str =
int igt_main_args("e", NULL, help_str, opt_handler, NULL)
{
igt_display_t display = { .drm_fd = -1, .n_crtcs = IGT_MAX_PIPES };
- enum pipe active_pipes[IGT_MAX_PIPES];
+ enum vendor_pipe active_pipes[IGT_MAX_PIPES];
igt_output_t *output;
uint32_t last_pipe = 0;
igt_crtc_t *crtc;
@@ -452,7 +452,7 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
/* Get active pipes. */
for_each_crtc(&display, crtc)
- active_pipes[last_pipe++] = crtc->pipe;
+ active_pipes[last_pipe++] = crtc->vendor_pipe;
last_pipe--;
}
@@ -484,8 +484,8 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
if (!crtc_output_combo_valid(&display, output, crtc))
continue;
- if (!all_pipes && crtc->pipe != active_pipes[0] &&
- crtc->pipe != active_pipes[last_pipe])
+ if (!all_pipes && crtc->vendor_pipe != active_pipes[0] &&
+ crtc->vendor_pipe != active_pipes[last_pipe])
continue;
igt_dynamic_f("flip-pipe-%s", igt_crtc_name(crtc))
@@ -509,8 +509,8 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
if (!crtc_output_combo_valid(&display, output, crtc))
continue;
- if (!all_pipes && crtc->pipe != active_pipes[0] &&
- crtc->pipe != active_pipes[last_pipe])
+ if (!all_pipes && crtc->vendor_pipe != active_pipes[0] &&
+ crtc->vendor_pipe != active_pipes[last_pipe])
continue;
igt_dynamic_f("pipe-%s", igt_crtc_name(crtc))
@@ -544,8 +544,8 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
if (!crtc_output_combo_valid(&display, output, crtc))
continue;
- if (!all_pipes && crtc->pipe != active_pipes[0] &&
- crtc->pipe != active_pipes[last_pipe])
+ if (!all_pipes && crtc->vendor_pipe != active_pipes[0] &&
+ crtc->vendor_pipe != active_pipes[last_pipe])
continue;
igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) {
diff --git a/tests/intel/kms_dp_link_training.c b/tests/intel/kms_dp_link_training.c
index d859db64b4ff..e580a535f2c9 100644
--- a/tests/intel/kms_dp_link_training.c
+++ b/tests/intel/kms_dp_link_training.c
@@ -154,7 +154,7 @@ static void do_modeset(data_t *data, bool mst)
igt_crtc_t *crtc;
for_each_crtc(&data->display, crtc) {
- valid_pipes_mask |= BIT(crtc->pipe);
+ valid_pipes_mask |= BIT(crtc->vendor_pipe);
n_pipes++;
}
diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
index 29b998c2f1d9..3eed7afed2fe 100644
--- a/tests/intel/kms_dsc_helper.c
+++ b/tests/intel/kms_dsc_helper.c
@@ -91,7 +91,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t *output,
drmModeConnector *connector = output->config.connector;
if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) &&
- (crtc->pipe == PIPE_A) && IS_GEN11(devid)) {
+ (crtc->vendor_pipe == PIPE_A) && IS_GEN11(devid)) {
igt_info("DSC not supported on pipe %s on %s in gen11 platforms\n",
igt_crtc_name(crtc), output->name);
return false;
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index c16f63199bdd..f7cac20c1257 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -1171,7 +1171,7 @@ static bool find_connector(bool edp_only, bool pipe_a,
if (edp_only && c->connector_type != DRM_MODE_CONNECTOR_eDP)
continue;
- if (pipe_a && crtc->pipe != PIPE_A)
+ if (pipe_a && crtc->vendor_pipe != PIPE_A)
continue;
if (output == forbidden_output || crtc == forbidden_crtc) {
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 86226a3ba689..3d8d74141e0c 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -99,7 +99,7 @@ typedef struct {
igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
igt_output_t *mixed_output[IGT_MAX_PIPES];
igt_output_t *non_joiner_output[IGT_MAX_PIPES];
- enum pipe pipe_seq[IGT_MAX_PIPES];
+ enum vendor_pipe pipe_seq[IGT_MAX_PIPES];
igt_display_t display;
bool ultra_joiner_supported;
} data_t;
@@ -132,7 +132,7 @@ static void enable_force_joiner_on_all_non_ultra_joiner_outputs(data_t *data)
}
}
-static enum pipe get_next_master_pipe(data_t *data, uint32_t available_pipe_mask)
+static enum vendor_pipe get_next_master_pipe(data_t *data, uint32_t available_pipe_mask)
{
if ((data->master_pipes & available_pipe_mask) == 0)
return PIPE_NONE;
@@ -140,17 +140,17 @@ static enum pipe get_next_master_pipe(data_t *data, uint32_t available_pipe_mask
return ffs(data->master_pipes & available_pipe_mask) - 1;
}
-static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe, uint32_t available_pipe_mask)
+static enum vendor_pipe setup_pipe(data_t *data, igt_output_t *output, enum vendor_pipe pipe, uint32_t available_pipe_mask)
{
igt_display_t *display = &data->display;
igt_crtc_t *crtc;
- enum pipe master_pipe;
+ enum vendor_pipe master_pipe;
uint32_t attempt_mask;
crtc = igt_crtc_for_pipe(display, pipe);
igt_assert_f(crtc, "There is no pipe %s\n", kmstest_pipe_name(pipe));
- attempt_mask = BIT(crtc->pipe);
+ attempt_mask = BIT(crtc->vendor_pipe);
master_pipe = get_next_master_pipe(data, available_pipe_mask & attempt_mask);
if (master_pipe == PIPE_NONE)
@@ -158,7 +158,7 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
igt_info("Using pipe %s as master and %s slave for %s\n",
igt_crtc_name(crtc),
- kmstest_pipe_name(crtc->pipe + 1), output->name);
+ kmstest_pipe_name(crtc->vendor_pipe + 1), output->name);
igt_output_set_crtc(output, crtc);
return master_pipe;
@@ -168,7 +168,7 @@ static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo
{
igt_display_t *display = &data->display;
igt_crtc_t *crtc;
- enum pipe pipe = PIPE_A;
+ enum vendor_pipe pipe = PIPE_A;
igt_plane_t *primary;
igt_fb_t fb;
@@ -224,7 +224,7 @@ static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *o
drmModeModeInfo uj_mode;
int status;
bool ultrajoiner_found;
- enum pipe pipe;
+ enum vendor_pipe pipe;
bool force_joiner_supported;
drmModeConnector *connector = output->config.connector;
@@ -279,7 +279,7 @@ static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *o
static void test_single_joiner(data_t *data, int output_count, bool force_joiner)
{
int i;
- enum pipe pipe, master_pipe;
+ enum vendor_pipe pipe, master_pipe;
uint32_t available_pipe_mask = BIT(data->n_pipes) - 1;
igt_output_t *output;
igt_plane_t *primary;
@@ -314,7 +314,7 @@ static void test_multi_joiner(data_t *data, int output_count, bool force_joiner)
{
int i, cleanup;
uint32_t available_pipe_mask;
- enum pipe pipe, master_pipe;
+ enum vendor_pipe pipe, master_pipe;
igt_output_t **outputs;
igt_output_t *output;
igt_plane_t *primary[output_count];
@@ -360,7 +360,7 @@ static void test_invalid_modeset_two_joiner(data_t *data,
int i, j, ret;
uint32_t available_pipe_mask;
uint32_t attempt_mask;
- enum pipe master_pipe;
+ enum vendor_pipe master_pipe;
igt_output_t **outputs;
igt_output_t *output;
igt_plane_t *primary[INVALID_TEST_OUTPUT];
@@ -382,7 +382,7 @@ static void test_invalid_modeset_two_joiner(data_t *data,
for (j = 0; j < INVALID_TEST_OUTPUT; j++) {
igt_crtc_t *crtc;
- enum pipe pipe = data->pipe_seq[i + j];
+ enum vendor_pipe pipe = data->pipe_seq[i + j];
output = outputs[j];
@@ -435,7 +435,7 @@ static void test_joiner_on_last_pipe(data_t *data, bool force_joiner)
for (i = 0; i < len; i++) {
igt_crtc_t *crtc;
- enum pipe pipe = data->pipe_seq[data->n_pipes - 1];
+ enum vendor_pipe pipe = data->pipe_seq[data->n_pipes - 1];
igt_display_reset(&data->display);
igt_display_commit2(&data->display, COMMIT_ATOMIC);
@@ -502,7 +502,7 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
for (j = 0; j < data->n_pipes; j++) {
igt_crtc_t *crtc;
- enum pipe pipe;
+ enum vendor_pipe pipe;
/* Ultra joiner is only valid on PIPE_A */
if (invalid_pipe && j == PIPE_A)
@@ -573,7 +573,7 @@ static void test_basic_max_non_joiner(data_t *data)
{
igt_display_t *display = &data->display;
int count;
- enum pipe pipe;
+ enum vendor_pipe pipe;
igt_output_t **outputs, *output;
igt_fb_t fb;
igt_plane_t *primary;
@@ -695,7 +695,7 @@ int igt_main()
data.n_pipes = 0;
for_each_crtc(&data.display, crtc) {
data.n_pipes++;
- data.pipe_seq[j] = crtc->pipe;
+ data.pipe_seq[j] = crtc->vendor_pipe;
j++;
}
}
diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
index e24d7ce94f00..a629eed70175 100644
--- a/tests/intel/kms_joiner_helper.c
+++ b/tests/intel/kms_joiner_helper.c
@@ -75,7 +75,7 @@ static int find_consecutive_pipes(int n_pipes,
return -1;
}
-static enum pipe get_next_master_pipe(uint32_t pipe_mask)
+static enum vendor_pipe get_next_master_pipe(uint32_t pipe_mask)
{
int i;
@@ -101,7 +101,7 @@ static enum pipe get_next_master_pipe(uint32_t pipe_mask)
*/
void igt_set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes)
{
- enum pipe pipe;
+ enum vendor_pipe pipe;
*master_pipes = 0;
for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) {
@@ -137,7 +137,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
{
int i = 0, idx = 0, needed = 0, start = 0;
uint32_t available_pipes_mask = 0;
- enum pipe mp = PIPE_NONE;
+ enum vendor_pipe mp = PIPE_NONE;
igt_output_t *out;
for (idx = 0; idx < num_outputs; idx++) {
diff --git a/tests/intel/kms_pipe_b_c_ivb.c b/tests/intel/kms_pipe_b_c_ivb.c
index a39b46ca23e0..54cfd8c61dae 100644
--- a/tests/intel/kms_pipe_b_c_ivb.c
+++ b/tests/intel/kms_pipe_b_c_ivb.c
@@ -160,10 +160,10 @@ find_outputs(data_t *data, igt_output_t **output1, igt_output_t **output2)
*output2 = NULL;
for_each_crtc_with_valid_output(&data->display, crtc, output) {
- if (crtc->pipe == PIPE_B && !*output1 && output != *output2)
+ if (crtc->vendor_pipe == PIPE_B && !*output1 && output != *output2)
*output1 = output;
- if (crtc->pipe == PIPE_C && output != *output1 && !*output2)
+ if (crtc->vendor_pipe == PIPE_C && output != *output1 && !*output2)
*output2 = output;
igt_output_set_crtc(output, NULL);
diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c
index 36e3842c6195..29d5ec50fc9a 100644
--- a/tests/intel/kms_pipe_stress.c
+++ b/tests/intel/kms_pipe_stress.c
@@ -386,8 +386,8 @@ static void cleanup_plane_fbs(struct data *data, igt_crtc_t *crtc, int start,
while (i < end) {
igt_remove_fb(data->display.drm_fd,
- &data->fb[crtc->pipe * MAX_PLANES + i]);
- data->fb[crtc->pipe * MAX_PLANES + i].fb_id = 0;
+ &data->fb[crtc->vendor_pipe * MAX_PLANES + i]);
+ data->fb[crtc->vendor_pipe * MAX_PLANES + i].fb_id = 0;
i++;
}
}
@@ -407,14 +407,14 @@ static int crtc_stress(struct data *data, igt_output_t *output,
if (!mode)
mode = igt_output_get_mode(output);
- if (data->last_mode[crtc->pipe] != mode) {
+ if (data->last_mode[crtc->vendor_pipe] != mode) {
ret = commit_mode(data, output,
crtc, mode);
if (!ret)
return ret;
- data->last_mode[crtc->pipe] = mode;
+ data->last_mode[crtc->vendor_pipe] = mode;
new_mode = true;
}
@@ -422,7 +422,7 @@ static int crtc_stress(struct data *data, igt_output_t *output,
* Looks like we can't have planes on that pipe at all
* or mode hasn't changed
*/
- if (!data->num_planes[crtc->pipe] || !new_mode)
+ if (!data->num_planes[crtc->vendor_pipe] || !new_mode)
return 0;
for_each_plane_on_crtc(crtc,
@@ -430,13 +430,13 @@ static int crtc_stress(struct data *data, igt_output_t *output,
int plane_width, plane_height;
if (plane->type == DRM_PLANE_TYPE_CURSOR) {
cursor_plane_set_fb(plane,
- &data->cursor_fb[crtc->pipe],
+ &data->cursor_fb[crtc->vendor_pipe],
cursor_width, cursor_height);
plane_width = cursor_width;
plane_height = cursor_height;
} else {
universal_plane_set_fb(plane,
- &data->fb[crtc->pipe * MAX_PLANES + i],
+ &data->fb[crtc->vendor_pipe * MAX_PLANES + i],
mode->hdisplay, mode->vdisplay);
plane_width = (mode->hdisplay * 3) / 4;
@@ -458,10 +458,10 @@ static int crtc_stress(struct data *data, igt_output_t *output,
}
if (ret) {
igt_info("Plane %d pipe %d try commit failed, exiting\n", i,
- crtc->pipe);
- data->num_planes[crtc->pipe] = i;
+ crtc->vendor_pipe);
+ data->num_planes[crtc->vendor_pipe] = i;
igt_info("Max num planes for pipe %d set to %d\n",
- crtc->pipe, i);
+ crtc->vendor_pipe, i);
/*
* We have now determined max amount of full sized planes, we will just
* keep it in mind and be smarter next time. Also lets remove unneeded fbs.
@@ -474,7 +474,7 @@ static int crtc_stress(struct data *data, igt_output_t *output,
MAX_PLANES);
}
- if (++i >= data->num_planes[crtc->pipe])
+ if (++i >= data->num_planes[crtc->vendor_pipe])
break;
}
}
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 8138933d43b1..7c09e43d3f29 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -122,7 +122,7 @@ static void set_output_on_pipe_b(data_t *data)
drmModeConnectorPtr c = output->config.connector;
/* DC5 with PIPE_B transaction */
- if (crtc->pipe != PIPE_B)
+ if (crtc->vendor_pipe != PIPE_B)
continue;
if (c->connector_type != DRM_MODE_CONNECTOR_eDP)
@@ -150,11 +150,11 @@ static void setup_output(data_t *data)
if (disp_ver >= 13) {
if (disp_ver == 20 || IS_BATTLEMAGE(data->devid) || IS_DG2(data->devid))
- is_low_power = (crtc->pipe == PIPE_A);
+ is_low_power = (crtc->vendor_pipe == PIPE_A);
else
- is_low_power = (crtc->pipe == PIPE_A || crtc->pipe == PIPE_B);
+ is_low_power = (crtc->vendor_pipe == PIPE_A || crtc->vendor_pipe == PIPE_B);
} else {
- is_low_power = (crtc->pipe == PIPE_A);
+ is_low_power = (crtc->vendor_pipe == PIPE_A);
}
igt_skip_on_f(!is_low_power, "Low power pipe was not selected for the DC5 transaction.\n");
diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c
index 6d4e64da01fe..e7dd10a80983 100644
--- a/tests/intel/kms_pm_lpsp.c
+++ b/tests/intel/kms_pm_lpsp.c
@@ -234,7 +234,7 @@ int igt_main()
continue;
/* LPSP is low power single pipe usages i.e. PIPE_A */
- if (crtc->pipe != PIPE_A)
+ if (crtc->vendor_pipe != PIPE_A)
continue;
if (connector->connector_type != DRM_MODE_CONNECTOR_eDP)
diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
index 1cc57ad35a1c..4d60dee8f3be 100644
--- a/tests/intel/kms_psr2_sf.c
+++ b/tests/intel/kms_psr2_sf.c
@@ -1039,11 +1039,11 @@ static void cleanup(data_t *data)
static bool sel_fetch_pipe_combo_valid(data_t *data)
{
- if (data->devid < 14 && !IS_ALDERLAKE_P(data->devid) && data->crtc->pipe != PIPE_A)
+ if (data->devid < 14 && !IS_ALDERLAKE_P(data->devid) && data->crtc->vendor_pipe != PIPE_A)
return false;
if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP &&
- data->crtc->pipe != PIPE_A && data->crtc->pipe != PIPE_B)
+ data->crtc->vendor_pipe != PIPE_A && data->crtc->vendor_pipe != PIPE_B)
return false;
return true;
diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
index 661ead32dc29..240279d85e36 100644
--- a/tests/intel/perf_pmu.c
+++ b/tests/intel/perf_pmu.c
@@ -1173,7 +1173,7 @@ event_wait(int gem_fd, const intel_ctx_t *ctx,
uint64_t val[2];
batch[6] = MI_WAIT_FOR_EVENT;
- switch (crtc->pipe) {
+ switch (crtc->vendor_pipe) {
case PIPE_A:
batch[6] |= MI_WAIT_FOR_PIPE_A_VBLANK;
batch[5] = ~(1 << 3);
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 1e062c38b668..78fda7b53246 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -240,7 +240,7 @@ static bool chv_cursor_broken(data_t *data, int x)
if (x >= 0)
return false;
- return IS_CHERRYVIEW(devid) && data->crtc->pipe == PIPE_C;
+ return IS_CHERRYVIEW(devid) && data->crtc->vendor_pipe == PIPE_C;
}
static bool cursor_visible(data_t *data, int x, int y)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 8036d43d5eef..98934076c2b5 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -123,7 +123,7 @@ static void cursor_move(data_t *data, int x, int y, int i)
* fails). So let's accept a failure from the ioctl in that case.
*/
igt_assert(drmModeMoveCursor(data->drm_fd, crtc_id, x, y) == 0 ||
- (IS_CHERRYVIEW(data->devid) && data->crtc->pipe == PIPE_C &&
+ (IS_CHERRYVIEW(data->devid) && data->crtc->vendor_pipe == PIPE_C &&
x < 0 && x > -data->curw));
igt_wait_for_vblank(data->crtc);
}
diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
index bc78d9a6f41d..36884d817e92 100644
--- a/tests/kms_panel_fitting.c
+++ b/tests/kms_panel_fitting.c
@@ -170,7 +170,7 @@ test_panel_fitting_legacy(data_t *d, igt_display_t *display, igt_crtc_t *crtc,
*/
if (IS_GEN8(devid) ||
(IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
- (IS_GEN9(devid) && crtc->pipe == PIPE_C)) {
+ (IS_GEN9(devid) && crtc->vendor_pipe == PIPE_C)) {
is_plane_scaling_active = false;
}
}
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index fde8b8370c9f..90b2982d49d8 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -695,7 +695,7 @@ static bool test_crtc_iteration(data_t *data, igt_crtc_t *crtc, int iteration)
data->extended)
return true;
- if ((crtc->pipe > PIPE_B) && (iteration >= 2))
+ if ((crtc->vendor_pipe > PIPE_B) && (iteration >= 2))
return false;
return true;
--
2.47.3
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Xe.CI.BAT: success for lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
2026-04-10 17:05 [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe Jani Nikula
@ 2026-04-10 19:03 ` Patchwork
2026-04-10 19:21 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 19:03 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1775 bytes --]
== Series Details ==
Series: lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
URL : https://patchwork.freedesktop.org/series/164705/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8854_BAT -> XEIGTPW_14965_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14965_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#6520])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8854 -> IGTPW_14965
IGTPW_14965: 14965
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/index.html
[-- Attachment #2: Type: text/html, Size: 2377 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✓ i915.CI.BAT: success for lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
2026-04-10 17:05 [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe Jani Nikula
2026-04-10 19:03 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-10 19:21 ` Patchwork
2026-04-11 8:01 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-11 20:26 ` ✗ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 19:21 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2732 bytes --]
== Series Details ==
Series: lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
URL : https://patchwork.freedesktop.org/series/164705/
State : success
== Summary ==
CI Bug Log - changes from IGT_8854 -> IGTPW_14965
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14965 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fence@basic-await@bcs0:
- bat-twl-2: [PASS][1] -> [FAIL][2] ([i915#15263]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-twl-2/igt@gem_exec_fence@basic-await@bcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/bat-twl-2/igt@gem_exec_fence@basic-await@bcs0.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][3] -> [FAIL][4] ([i915#14867])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15263
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8854 -> IGTPW_14965
CI-20190529: 20190529
CI_DRM_18313: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14965: 14965
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/index.html
[-- Attachment #2: Type: text/html, Size: 3468 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ Xe.CI.FULL: failure for lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
2026-04-10 17:05 [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe Jani Nikula
2026-04-10 19:03 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-10 19:21 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-11 8:01 ` Patchwork
2026-04-11 20:26 ` ✗ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-11 8:01 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 28709 bytes --]
== Series Details ==
Series: lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
URL : https://patchwork.freedesktop.org/series/164705/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8854_FULL -> XEIGTPW_14965_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14965_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14965_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14965_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-5/igt@kms_fbcon_fbt@psr-suspend.html
Known issues
------------
Here are the changes found in XEIGTPW_14965_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3658] / [Intel XE#7360])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7679])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3432])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#306] / [Intel XE#7358])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-3/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2320]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#309] / [Intel XE#7343])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1508])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1421]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7179])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#6312])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4141])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2311]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2313]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#656]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061] / [Intel XE#7356])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6911] / [Intel XE#7378])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6900] / [Intel XE#7362])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7591])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7283])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7283])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2685] / [Intel XE#3307])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2234] / [Intel XE#2850])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-7/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1406])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-3/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-5/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1127] / [Intel XE#5813])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#4459]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1447] / [Intel XE#7471])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-7/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7636])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-3/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7140])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7482]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-1/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2322] / [Intel XE#7372])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1392])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7136]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html
* igt@xe_exec_multi_queue@many-queues-close-fd:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6874]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-close-fd.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#6874]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic.html
* igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap:
- shard-bmg: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#7725]) +5 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7138]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7138]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7599])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#944])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#4130] / [Intel XE#7366])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Possible fixes ####
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-bmg: [DMESG-WARN][51] ([Intel XE#7725]) -> [PASS][52] +2 other tests pass
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-0.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][53] ([Intel XE#7571]) -> [PASS][54] +1 other test pass
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][55] ([Intel XE#4227]) -> [PASS][56] +1 other test pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][57] ([Intel XE#5625]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [FAIL][59] ([Intel XE#5937]) -> [PASS][60] +1 other test pass
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][61] ([Intel XE#4141]) -> [SKIP][62] ([Intel XE#2312])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][63] ([Intel XE#2312]) -> [SKIP][64] ([Intel XE#2313])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][65] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][66] ([Intel XE#3544])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [SKIP][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [SKIP][109], [PASS][110], [PASS][111], [PASS][112], [DMESG-WARN][113], [PASS][114], [DMESG-WARN][115], [PASS][116], [PASS][117], [PASS][118]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-10/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-10/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-9/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-2/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-1/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-1/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-2/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-9/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-10/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-5/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-9/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-7/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-7/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-6/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/shard-bmg-8/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[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#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[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#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8854 -> IGTPW_14965
IGTPW_14965: 14965
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14965/index.html
[-- Attachment #2: Type: text/html, Size: 31486 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ i915.CI.Full: failure for lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
2026-04-10 17:05 [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe Jani Nikula
` (2 preceding siblings ...)
2026-04-11 8:01 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-11 20:26 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-11 20:26 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 136305 bytes --]
== Series Details ==
Series: lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe
URL : https://patchwork.freedesktop.org/series/164705/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8854_full -> IGTPW_14965_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14965_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14965_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14965_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-glk: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-glk5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
Known issues
------------
Here are the changes found in IGTPW_14965_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#3936])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#3936])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3936])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#13356])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#12392] / [i915#13356])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][17] -> [FAIL][18] ([i915#9561]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][19] ([i915#13356]) +1 other test incomplete
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@gem_exec_fence@submit67.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@gem_exec_fence@submit67.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][33] +118 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-snb7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +11 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3281])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@gem_exec_reloc@basic-wc-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][44] -> [INCOMPLETE][45] ([i915#13356]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
- shard-rkl: [PASS][46] -> [INCOMPLETE][47] ([i915#13356]) +1 other test incomplete
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@gem_exec_suspend@basic-s0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [PASS][48] -> [INCOMPLETE][49] ([i915#13196] / [i915#13356]) +1 other test incomplete
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-glk5/igt@gem_exec_suspend@basic-s3.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk5/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#14544] / [i915#2190])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#12193]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4565]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8289])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#8289])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-19/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@gem_mmap_wc@coherency.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][67] ([i915#14702] / [i915#2658])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#13398]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#14544] / [i915#3282]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@read-write:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@gem_readwrite@read-write.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@gem_readwrite@write-bad-handle.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-4/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@gem_render_tiled_blits@basic.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_fence_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-4/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#15657])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@gem_tiled_pread_basic@basic.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4879])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][87] +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@load-register-reg:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#14544] / [i915#2527])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#14118])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#13786])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][98] ([i915#15481])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#8399]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#6590]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#6590]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#6590]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6590]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][106] +29 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][107] ([i915#13790] / [i915#2681]) +1 other test warn
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#7984])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live:
- shard-mtlp: [PASS][110] -> [DMESG-FAIL][111] ([i915#12061] / [i915#15560])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-3/igt@i915_selftest@live.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][112] -> [DMESG-FAIL][113] ([i915#12061])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) +1 other test incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: [PASS][115] -> [INCOMPLETE][116] ([i915#4817])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-glk2/igt@i915_suspend@fence-restore-untiled.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk6/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk11: NOTRUN -> [INCOMPLETE][117] ([i915#4817])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4212])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][121] ([i915#12761]) +1 other test incomplete
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#9531])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#9531])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][125] ([i915#1769]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#5286])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][133] -> [FAIL][134] ([i915#15733] / [i915#5138])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [DMESG-WARN][135] ([i915#4423])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3828])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3828])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +14 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +82 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#6095]) +92 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +99 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#12805])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +224 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
- shard-glk: NOTRUN -> [INCOMPLETE][150] ([i915#15582]) +1 other test incomplete
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#6095]) +33 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#12313])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#14544] / [i915#6095]) +10 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14098] / [i915#6095]) +68 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#6095]) +59 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#12313])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#13783]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +10 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][161] +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +14 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#12655] / [i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#9979])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#15330] / [i915#3116] / [i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#15330])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15330])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#15865]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#14544] / [i915#15865])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#15865])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#15865]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#15865])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#15865])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#15865]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#13049])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][183] -> [FAIL][184] ([i915#13566]) +1 other test fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][185] -> [FAIL][186] ([i915#13566]) +5 other tests fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][187] ([i915#13566]) +5 other tests fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544] / [i915#3555])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][191] ([i915#13566]) +1 other test fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#13049])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#13046] / [i915#5354])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9809])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][195] ([i915#15804])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#4103]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#4103])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#4103])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#4213])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9723])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#13691])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#13749])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13748])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_dp_link_training@uhbr-mst.html
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#13748])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#13748] / [i915#14544])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#13748])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_draw_crc@draw-method-render:
- shard-dg1: [PASS][209] -> [DMESG-WARN][210] ([i915#4423]) +1 other test dmesg-warn
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg1-12/igt@kms_draw_crc@draw-method-render.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-12/igt@kms_draw_crc@draw-method-render.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#9878])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-rkl: [PASS][214] -> [ABORT][215] ([i915#15132])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3955])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#3469])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#1839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_feature_discovery@display-4x.html
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9337])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#9337])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#9934]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-16/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +9 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#9934]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9934])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#12745])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#9934]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: [PASS][235] -> [FAIL][236] ([i915#10826])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][237] ([i915#10826])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][238] ([i915#12745] / [i915#4839])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][239] ([i915#12745])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15643]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15643])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#15643]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15643]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#15643]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#15643]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15643] / [i915#5190])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [PASS][247] -> [SKIP][248] ([i915#15672])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-6/igt@kms_force_connector_basic@force-connector-state.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15104])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][250] +44 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#1825]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#1825]) +10 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#5439])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#15102]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15102]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#15102]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3458]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-glk11: NOTRUN -> [SKIP][258] +110 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#1825]) +41 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][260] +18 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#15102] / [i915#3023]) +28 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#5439])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15102]) +11 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#14544] / [i915#15102])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#15102]) +32 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#5354]) +12 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][270] +74 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3458]) +6 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#8708]) +8 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#12713])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#6403] / [i915#8826])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#9457]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8826] / [i915#9457])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#13688])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#13688])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#14544] / [i915#15458])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15458])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#15460])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#15459])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15459])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15458])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#15638] / [i915#15722])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#6301])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#6301])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][290] -> [INCOMPLETE][291] ([i915#12756] / [i915#13476])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#12756] / [i915#13409] / [i915#13476])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][293] ([i915#13476])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][294] ([i915#13409] / [i915#13476])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#14712]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#14712])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][297] +222 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#15709]) +5 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#15709]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15709])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#15709]) +4 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#14544] / [i915#15709]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#15709]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#15608]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15608]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#15608]) +5 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#15608]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#13958])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#13958])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#14259])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#14259])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#15329]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#15329]) +14 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#15329]) +9 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#14544] / [i915#15329]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15329] / [i915#6953]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15329]) +12 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#12343])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#14544] / [i915#5354]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#9812]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9812])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#3828])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#15751])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [FAIL][325] ([i915#15752])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#3361])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#8430])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#14544] / [i915#8430])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#8430])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#8430])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#8430])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][332] -> [SKIP][333] ([i915#14544] / [i915#15073])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#15073])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#15073])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#4077]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#15073])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#15073])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#15073]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][340] -> [SKIP][341] ([i915#15073])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][342] -> [SKIP][343] ([i915#15073])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#15403])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: NOTRUN -> [INCOMPLETE][345] ([i915#14419])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#6524])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-9/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#11520] / [i915#14544]) +2 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][348] ([i915#11520]) +14 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520]) +9 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#11520]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][351] ([i915#11520]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#11520]) +8 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11520]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12316]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][355] ([i915#11520]) +7 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][356] ([i915#11520]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-snb1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#11520]) +3 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-16/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#9683]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#9683])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +29 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +12 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +12 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9732]) +10 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][364] +362 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk2/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9688]) +7 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +22 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-5/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#9685]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#14544] / [i915#9685])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk10: NOTRUN -> [INCOMPLETE][370] ([i915#15492])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][371] ([i915#15492])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#15867])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#15867])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#5289]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#5289]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#3555]) +9 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][377] ([i915#13179]) +1 other test abort
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk11: NOTRUN -> [FAIL][379] ([i915#10959])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#14544] / [i915#8623])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#8623])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][382] -> [INCOMPLETE][383] ([i915#12276])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][384] ([i915#12276]) +1 other test incomplete
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
- shard-rkl: NOTRUN -> [INCOMPLETE][385] ([i915#12276])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#15243] / [i915#3555])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#9906]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#8516])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][390] ([i915#13356])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk8/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#3708])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#14544] / [i915#3291] / [i915#3708])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#9917]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][395] ([i915#12910]) +8 other tests fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][396] ([i915#13356]) -> [PASS][397] +3 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-rkl: [ABORT][398] ([i915#15131]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- shard-rkl: [ABORT][400] ([i915#15542]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-tglu: [ABORT][402] ([i915#15652]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-tglu-10/igt@gem_exec_suspend@basic-s3@smem.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-4/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][404] ([i915#13356]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][406] ([i915#14545]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-3/igt@i915_module_load@resize-bar.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@i915_module_load@resize-bar.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][408] ([i915#4817]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-dg2: [ABORT][410] ([i915#15140]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-10/igt@i915_suspend@forcewake.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@i915_suspend@forcewake.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][412] ([i915#5956]) -> [PASS][413] +1 other test pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][414] ([i915#15733] / [i915#5138]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][416] ([i915#13566]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu-1: [FAIL][418] ([i915#13566]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_edge_walk@64x64-right-edge:
- shard-dg1: [DMESG-WARN][420] ([i915#4423]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg1-15/igt@kms_cursor_edge_walk@64x64-right-edge.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-18/igt@kms_cursor_edge_walk@64x64-right-edge.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][422] ([i915#6113]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][424] ([i915#15389]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [SKIP][426] ([i915#15725]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-2/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [FAIL][428] ([i915#14867]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][430] ([i915#15073]) -> [PASS][431] +1 other test pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-17/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][432] ([i915#15073]) -> [PASS][433] +2 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][434] ([i915#15073]) -> [PASS][435] +2 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
#### Warnings ####
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][436] ([i915#3555] / [i915#9323]) -> [SKIP][437] ([i915#14544] / [i915#3555] / [i915#9323])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][438] ([i915#6335]) -> [SKIP][439] ([i915#14544] / [i915#6335])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: [SKIP][440] ([i915#3281]) -> [SKIP][441] ([i915#14544] / [i915#3281]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@gem_exec_reloc@basic-wc.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][442] ([i915#7276]) -> [SKIP][443] ([i915#14544] / [i915#7276])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][444] ([i915#4613] / [i915#7582]) -> [SKIP][445] ([i915#14544] / [i915#4613] / [i915#7582])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive:
- shard-rkl: [SKIP][446] ([i915#4613]) -> [SKIP][447] ([i915#14544] / [i915#4613])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@gem_lmem_swapping@massive.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_lmem_swapping@massive.html
* igt@gem_pread@exhaustion:
- shard-tglu: [ABORT][448] ([i915#15647]) -> [WARN][449] ([i915#2658])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-tglu-8/igt@gem_pread@exhaustion.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-tglu-2/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][450] ([i915#3282]) -> [SKIP][451] ([i915#14544] / [i915#3282]) +4 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@gem_pread@snoop.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gem_pread@snoop.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3282]) -> [SKIP][453] ([i915#3282]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][456] -> [ABORT][457] ([i915#15481]) +1 other test abort
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg1-13/igt@i915_module_load@fault-injection.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg1-15/igt@i915_module_load@fault-injection.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][458] ([i915#6245]) -> [SKIP][459] ([i915#14544] / [i915#6245])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@i915_query@hwconfig_table.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544] / [i915#5286]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][462] ([i915#3638]) -> [SKIP][463] ([i915#14544] / [i915#3638]) +3 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][464] ([i915#6095]) -> [SKIP][465] ([i915#14544] / [i915#6095]) +9 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][466] ([i915#14098] / [i915#6095]) -> [SKIP][467] ([i915#14098] / [i915#14544] / [i915#6095]) +12 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][468] ([i915#12313]) -> [SKIP][469] ([i915#12313] / [i915#14544])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][470] ([i915#3742]) -> [SKIP][471] ([i915#14544] / [i915#3742])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@kms_cdclk@mode-transition.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][472] ([i915#11151] / [i915#7828]) -> [SKIP][473] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][474] ([i915#15330]) -> [SKIP][475] ([i915#14544] / [i915#15330])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: [SKIP][476] ([i915#15865]) -> [SKIP][477] ([i915#14544] / [i915#15865])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_content_protection@lic-type-0.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][478] ([i915#13049] / [i915#3359]) -> [SKIP][479] ([i915#13049])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][480] ([i915#13049]) -> [SKIP][481] ([i915#13049] / [i915#14544])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: [SKIP][482] ([i915#3555]) -> [SKIP][483] ([i915#14544] / [i915#3555]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_cursor_crc@cursor-random-max-size.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][484] -> [SKIP][485] ([i915#14544]) +7 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-rkl: [SKIP][486] ([i915#14544]) -> [SKIP][487]
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][488] ([i915#4103]) -> [SKIP][489] ([i915#14544] / [i915#4103])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][490] ([i915#3555] / [i915#3804]) -> [SKIP][491] ([i915#14544] / [i915#3555] / [i915#3804])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][492] ([i915#3804]) -> [SKIP][493] ([i915#14544] / [i915#3804])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][494] ([i915#9934]) -> [SKIP][495] ([i915#14544] / [i915#9934]) +3 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][496] ([i915#15643]) -> [SKIP][497] ([i915#14544] / [i915#15643]) +2 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][498] ([i915#15102]) -> [SKIP][499] ([i915#14544] / [i915#15102])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][500] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][501] ([i915#15102] / [i915#3458])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][502] ([i915#15102] / [i915#3023]) -> [SKIP][503] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#1825]) -> [SKIP][505] ([i915#1825]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][506] ([i915#15102] / [i915#3458]) -> [SKIP][507] ([i915#10433] / [i915#15102] / [i915#3458])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][509] ([i915#15102] / [i915#3023])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][510] ([i915#1825]) -> [SKIP][511] ([i915#14544] / [i915#1825]) +13 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][512] ([i915#12713]) -> [SKIP][513] ([i915#1187] / [i915#12713])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][514] ([i915#12713]) -> [SKIP][515] ([i915#1187] / [i915#12713])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][516] ([i915#15709]) -> [SKIP][517] ([i915#14544] / [i915#15709])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][518] ([i915#11520] / [i915#14544]) -> [SKIP][519] ([i915#11520])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][520] ([i915#11520]) -> [SKIP][521] ([i915#11520] / [i915#14544]) +5 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@pr-cursor-render:
- shard-rkl: [SKIP][522] ([i915#1072] / [i915#9732]) -> [SKIP][523] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@kms_psr@pr-cursor-render.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@psr-no-drrs:
- shard-rkl: [SKIP][524] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][525] ([i915#1072] / [i915#9732]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_psr@psr-no-drrs.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-3/igt@kms_psr@psr-no-drrs.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#5289]) -> [SKIP][527] ([i915#5289])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][528] ([i915#5289]) -> [SKIP][529] ([i915#14544] / [i915#5289])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][530] ([i915#15243] / [i915#3555]) -> [SKIP][531] ([i915#14544] / [i915#15243] / [i915#3555])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-2/igt@kms_vrr@flipline.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][532] ([i915#2434]) -> [SKIP][533] ([i915#14544] / [i915#2434])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@perf@mi-rpc.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][534] ([i915#2435]) -> [SKIP][535] ([i915#14544] / [i915#2435])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-8/igt@perf@per-context-mode-unprivileged.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][536] ([i915#9917]) -> [SKIP][537] ([i915#14544] / [i915#9917])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[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#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15647
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[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#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
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8854 -> IGTPW_14965
CI-20190529: 20190529
CI_DRM_18313: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14965: 14965
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14965/index.html
[-- Attachment #2: Type: text/html, Size: 180113 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-04-11 20:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-10 17:05 [RFC] lib/kms: rename enum pipe to vendor_pipe, crtc->pipe to crtc->vendor_pipe Jani Nikula
2026-04-10 19:03 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-10 19:21 ` ✓ i915.CI.BAT: " Patchwork
2026-04-11 8:01 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-11 20:26 ` ✗ 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