* [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
@ 2026-08-05 8:44 Sowmiya S
2026-08-05 8:44 ` [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params Sowmiya S
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Sowmiya S @ 2026-08-05 8:44 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, Sowmiya S
DP 2.x links use 128b/132b channel encoding for UHBR rates (UHBR10/13.5/20,
i.e. link rate >= 10 Gbps) and 8b/10b for legacy HBR3 and below. The
transition between the two encodings goes through a port-slice reset on the
source side. The existing dp-fallback subtest only covers 8b/10b-to-8b/10b
fallback; this series adds a dedicated subtest for the UHBR->HBR direction.
Adds two library helpers to lib/i915/i915_dp:
- i915_dp_is_uhbr_rate(): mirrors the kernel's drm_dp_is_uhbr_rate()
- i915_dp_get_next_lower_rate(): parses the force_link_rate debugfs list
with proper strtok_r/strtol/errno handling
const char * signature for i915_dp_set_link_params() so string literals
can be passed directly without a writable-array workaround.
Fixes a pre-existing bug where the file-static traversed_mst_output_count
was never reset between subtests, causing all MST outputs to be silently
skipped as "already visited" in a full-binary run.
Adds the uhbr-to-hbr-fallback subtest. The subtest pins the link at the
highest sustainable UHBR rate (stepping down if the cable cannot sustain
the sink's max), forces repeated LT_FAILURE_REDUCED_CAPS failures, and
asserts the rate drops below UHBR10. MST topologies are supported since
all siblings share the physical link. The existing run_lt_fallback_test()
is extended with force_uhbr parameter to avoid ~45 lines of duplication.
v2: Resets MST traversal state per test run
v3:
- Drop "exercising the port slice reset path" from SUBTEST description
- Revert unrelated cosmetic hunk in setup_mst_outputs()
- Single UHBR capability gate using i915_dp_get_max_link_rate()
- remove duplicate gate using i915_dp_get_max_supported_rate()
- Fix link rate log units (10 kbit/s, not kbps)
- Add igt_reset_connectors() to pin-loop early-return path
- Replace UHBR10_LINK_RATE define with i915_dp_is_uhbr_rate() helper
- Replace open-coded strtok() parsing with i915_dp_get_next_lower_rate()
- Hard-assert "fallback not reached" instead of returning false
- Remove dead traversed_mst_output_count reset in run_dsc path
- Merge run_uhbr_to_hbr_fallback_test() into run_lt_fallback_test()
- Use "auto" string literal directly (const char * param fix)
- Move reset before UHBR capability gate read in run_lt_fallback_test()
- Document force_uhbr parameter and "clear the pin" reset behaviour
Sowmiya S (3):
lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params
tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak
between subtests
tests/intel/kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback
subtest
lib/i915/i915_dp.c | 62 +++++++-
lib/i915/i915_dp.h | 4 +-
tests/intel/kms_dp_linktrain_fallback.c | 201 +++++++++++++++++++++---
3 files changed, 243 insertions(+), 24 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
@ 2026-08-05 8:44 ` Sowmiya S
2026-08-10 4:39 ` Joshi, Kunal1
2026-08-05 8:44 ` [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests Sowmiya S
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Sowmiya S @ 2026-08-05 8:44 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, Sowmiya S
- const char * for i915_dp_set_link_params() to allow string literals
- Add i915_dp_is_uhbr_rate(): returns true for link rates >= 10 Gbps
- Add i915_dp_get_next_lower_rate(): parses force_link_rate debugfs list
using strtok_r(), base-10 strtol() with errno/endptr checks
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
lib/i915/i915_dp.c | 62 +++++++++++++++++++++++++++++++++++++++++++++-
lib/i915/i915_dp.h | 4 ++-
2 files changed, 64 insertions(+), 2 deletions(-)
diff --git a/lib/i915/i915_dp.c b/lib/i915/i915_dp.c
index e54058580..bf66347f5 100644
--- a/lib/i915/i915_dp.c
+++ b/lib/i915/i915_dp.c
@@ -334,7 +334,7 @@ void i915_dp_reset_link_params(int drm_fd, igt_output_t *output)
* to set link rate and lane count to auto on exit
*/
void i915_dp_set_link_params(int drm_fd, igt_output_t *output,
- char *link_rate, char *lane_count)
+ const char *link_rate, const char *lane_count)
{
bool valid;
drmModeConnector *temp;
@@ -390,3 +390,63 @@ int i915_dp_get_max_supported_rate(int drm_fd, const igt_output_t *output)
return max_rate;
}
+
+/**
+ * i915_dp_is_uhbr_rate:
+ * @link_rate: DP link rate in 10 kbit/s units, as reported by the
+ * i915_dp_*_link_rate debugfs files
+ *
+ * UHBR (Ultra High Bit Rate) link rates use 128b/132b channel encoding,
+ * everything below uses legacy 8b/10b. UHBR10 is 10 Gbps, i.e. 1000000 in
+ * 10 kbit/s units. Mirrors the kernel's drm_dp_is_uhbr_rate().
+ *
+ * Returns: true if @link_rate is a UHBR rate, false otherwise.
+ */
+bool i915_dp_is_uhbr_rate(int link_rate)
+{
+ return link_rate >= 1000000;
+}
+
+/**
+ * i915_dp_get_next_lower_rate:
+ * @drm_fd: A drm file descriptor
+ * @output: Target output
+ * @rate: reference link rate in 10 kbit/s units
+ *
+ * Parses the i915_dp_force_link_rate debugfs list (the source rates, printed
+ * with an "auto" entry and "[..]"/"*" markers) and returns the highest
+ * supported link rate strictly below @rate.
+ *
+ * Returns: highest supported rate below @rate in 10 kbit/s units, or 0 if none.
+ */
+int i915_dp_get_next_lower_rate(int drm_fd, igt_output_t *output, int rate)
+{
+ char buf[512], *token, *saveptr = NULL;
+ int res, next = 0;
+
+ res = igt_debugfs_read_connector_file(drm_fd, igt_output_name(output),
+ "i915_dp_force_link_rate",
+ buf, sizeof(buf));
+ igt_assert_f(res == 0, "Unable to read %s/i915_dp_force_link_rate\n",
+ igt_output_name(output));
+
+ /* Delimiters strip the "auto" whitespace and the [ ] * markers. */
+ for (token = strtok_r(buf, " \t\n[]*", &saveptr); token;
+ token = strtok_r(NULL, " \t\n[]*", &saveptr)) {
+ char *endptr;
+ long r;
+
+ if (!strcmp(token, "auto"))
+ continue;
+
+ errno = 0;
+ r = strtol(token, &endptr, 10);
+ if (errno || endptr == token || *endptr)
+ continue;
+
+ if (r < rate && r > next)
+ next = r;
+ }
+
+ return next;
+}
diff --git a/lib/i915/i915_dp.h b/lib/i915/i915_dp.h
index b13629147..6b39d0560 100644
--- a/lib/i915/i915_dp.h
+++ b/lib/i915/i915_dp.h
@@ -17,7 +17,9 @@ int i915_dp_get_pending_lt_failures(int drm_fd, igt_output_t *output);
int i915_dp_get_pending_retrain(int drm_fd, igt_output_t *output);
void i915_dp_reset_link_params(int drm_fd, igt_output_t *output);
void i915_dp_set_link_params(int drm_fd, igt_output_t *output,
- char *link_rate, char *lane_count);
+ const char *link_rate, const char *lane_count);
int i915_dp_get_max_supported_rate(int drm_fd, const igt_output_t *output);
+int i915_dp_get_next_lower_rate(int drm_fd, igt_output_t *output, int rate);
+bool i915_dp_is_uhbr_rate(int link_rate);
#endif
--
2.51.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
2026-08-05 8:44 ` [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params Sowmiya S
@ 2026-08-05 8:44 ` Sowmiya S
2026-08-10 4:53 ` Joshi, Kunal1
2026-08-05 8:44 ` [PATCH i-g-t v3 3/3] tests/intel/kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
` (4 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Sowmiya S @ 2026-08-05 8:44 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, Sowmiya S
traversed_mst_output_count is file-static and was never reset between
subtests. In a full-binary run the count from dp-fallback causes
setup_mst_outputs() to skip all MST outputs in subsequent subtests.
Reset it at the top of run_lt_fallback_test(). The DSC path never
reaches setup_mst_outputs() so run_dsc_sst_fallaback_test() does not
need the reset.
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 115183d2d..44b875ab9 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -431,6 +431,13 @@ static bool run_lt_fallback_test(data_t *data)
bool ran = false;
igt_output_t *output;
+ /*
+ * Reset per invocation so MST traversal state from a previous subtest
+ * (e.g. dp-fallback followed by dsc-fallback) doesn't leak and cause
+ * MST siblings to be silently skipped as "already visited".
+ */
+ traversed_mst_output_count = 0;
+
for_each_connected_output(&data->display, output) {
data->output = output;
--
2.51.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t v3 3/3] tests/intel/kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
2026-08-05 8:44 ` [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params Sowmiya S
2026-08-05 8:44 ` [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests Sowmiya S
@ 2026-08-05 8:44 ` Sowmiya S
2026-08-05 23:05 ` ✓ Xe.CI.BAT: success for kms_dp_linktrain_fallback: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Sowmiya S @ 2026-08-05 8:44 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, kunal1.joshi, Sowmiya S
Add 'uhbr-to-hbr-fallback' to verify the 128b/132b->8b/10b encoding
transition on UHBR-capable DP connectors by pinning the link at the
highest sustainable UHBR rate, forcing LT_FAILURE_REDUCED_CAPS failures
and asserting the rate drops below UHBR10. Supports SST and MST.
v2: resets MST traversal state per test run
v3: - use i915_dp_is_uhbr_rate()/i915_dp_get_next_lower_rate()
from lib
- single UHBR capability gate using max_link_rate after reset
- add igt_reset_connectors() on pin-loop early-return
- hard-assert for 'fallback not reached'
- remove dead run_dsc reset; merge run_* funcs
- fix link rate log units (10 kbit/s).
- Extend run_lt_fallback_test() with a force_uhbr parameter
- and remove the duplicate run_uhbr_to_hbr_fallback_test()
Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
---
tests/intel/kms_dp_linktrain_fallback.c | 198 +++++++++++++++++++++---
1 file changed, 174 insertions(+), 24 deletions(-)
diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
index 44b875ab9..2e72957e1 100644
--- a/tests/intel/kms_dp_linktrain_fallback.c
+++ b/tests/intel/kms_dp_linktrain_fallback.c
@@ -24,6 +24,15 @@
*
* SUBTEST: dsc-fallback
* Description: Test fallback to DSC when BW isn't sufficient
+ *
+ * SUBTEST: uhbr-to-hbr-fallback
+ * Description: Verify fallback from UHBR (128b/132b, link rate >= 10 Gbps) to
+ * HBR3 or lower (8b/10b) on a UHBR-capable DP connector by
+ * pinning the link at the highest sustainable UHBR rate, forcing
+ * repeated link training failures and checking that the rate
+ * drops below UHBR10. Supports both SST and MST (topology-wide)
+ * outputs; MST siblings share the physical link so fallback
+ * applies to the whole topology.
*/
#define RETRAIN_COUNT 1
@@ -347,7 +356,20 @@ static bool fix_link_status_and_recommit(data_t *data,
return true;
}
-static void test_fallback(data_t *data, bool is_mst)
+/*
+ * test_fallback:
+ * @force_uhbr: when false (dp-fallback), the output is always counted as
+ * exercised. When true (uhbr-to-hbr-fallback), the link is first
+ * pinned at the highest sustainable UHBR rate; the return value
+ * then reports whether the run was skippable (false, e.g. no
+ * sustainable UHBR rate) so the caller can turn it into a SKIP.
+ * A genuine failure (UHBR reached but never dropped to HBR) is
+ * asserted here rather than returned.
+ *
+ * Returns: true if the output was exercised/verified, false for the
+ * skippable cases.
+ */
+static bool test_fallback(data_t *data, bool is_mst, bool force_uhbr)
{
int output_count, retries;
int max_link_rate, curr_link_rate, prev_link_rate;
@@ -361,14 +383,84 @@ static void test_fallback(data_t *data, bool is_mst)
retries = SPURIOUS_HPD_RETRY;
igt_display_reset(&data->display);
- i915_dp_reset_link_params(data->drm_fd, data->output);
- if (!setup_outputs(data, is_mst, outputs,
- &output_count, modes, fbs,
- primaries))
- return;
- igt_info("Testing link training fallback on %s\n",
- igt_output_name(data->output));
+ /*
+ * For the UHBR-to-HBR fallback case, pin the link at the highest
+ * sustainable UHBR rate before forcing failures. The caller
+ * (run_lt_fallback_test()) has already reset the link params for the
+ * UHBR gate, so i915_dp_get_max_link_rate() here returns the full
+ * sink-negotiated max and not a value already reduced by an earlier
+ * fallback. If the physical link can't sustain that rate (cable
+ * limit), step down to the next-lower supported UHBR rate and retry.
+ * Skip the test if no UHBR rate can be sustained.
+ */
+ if (force_uhbr) {
+ int try_rate = i915_dp_get_max_link_rate(data->drm_fd,
+ data->output);
+ char rate_str[16];
+ /* Preserve MST state for fallback retries. */
+ int saved_mst_count = traversed_mst_output_count;
+
+ curr_link_rate = 0;
+ while (i915_dp_is_uhbr_rate(try_rate)) {
+ /* Allow MST re-discovery on every UHBR-rate attempt. */
+ traversed_mst_output_count = saved_mst_count;
+
+ snprintf(rate_str, sizeof(rate_str), "%d", try_rate);
+ i915_dp_set_link_params(data->drm_fd, data->output,
+ rate_str, "auto");
+
+ if (!setup_outputs(data, is_mst, outputs,
+ &output_count, modes, fbs, primaries)) {
+ i915_dp_reset_link_params(data->drm_fd,
+ data->output);
+ igt_reset_connectors();
+ return false;
+ }
+
+ curr_link_rate = i915_dp_get_current_link_rate(data->drm_fd,
+ data->output);
+ if (i915_dp_is_uhbr_rate(curr_link_rate)) {
+ igt_info("Link trained at UHBR (link rate %d) on %s\n",
+ curr_link_rate,
+ igt_output_name(data->output));
+ break;
+ }
+
+ igt_info("Link rate %d not sustained (got %d) on %s, trying next-lower UHBR\n",
+ try_rate, curr_link_rate,
+ igt_output_name(data->output));
+ igt_display_reset(&data->display);
+
+ try_rate = i915_dp_get_next_lower_rate(data->drm_fd,
+ data->output,
+ try_rate);
+ }
+
+ if (!i915_dp_is_uhbr_rate(curr_link_rate)) {
+ igt_info("Output %s cannot sustain any UHBR rate, skipping\n",
+ igt_output_name(data->output));
+ i915_dp_reset_link_params(data->drm_fd, data->output);
+ return false;
+ }
+
+ /*
+ * Clear the pin so the forced-failure loop below can reduce the
+ * rate. This re-enables all link configs, so max_link_rate
+ * (read next) is the full negotiated max, not the pinned rate.
+ * The "curr == max" spurious-HPD escape below therefore won't
+ * trigger on this path, which is fine - we only care that the
+ * rate drops out of UHBR.
+ */
+ i915_dp_reset_link_params(data->drm_fd, data->output);
+ } else {
+ i915_dp_reset_link_params(data->drm_fd, data->output);
+
+ if (!setup_outputs(data, is_mst, outputs,
+ &output_count, modes, fbs,
+ primaries))
+ return false;
+ }
max_link_rate = i915_dp_get_max_link_rate(data->drm_fd, data->output);
max_lane_count = i915_dp_get_max_lane_count(data->drm_fd, data->output);
prev_link_rate = i915_dp_get_current_link_rate(data->drm_fd, data->output);
@@ -389,8 +481,11 @@ static void test_fallback(data_t *data, bool is_mst)
if (i915_dp_get_link_retrain_disabled(data->drm_fd,
data->output)) {
+ igt_assert_f(!force_uhbr,
+ "Link retrain disabled before UHBR to HBR fallback on %s\n",
+ igt_output_name(data->output));
igt_reset_connectors();
- return;
+ return false;
}
igt_assert_f(wait_for_hotplug_and_check_bad(data->drm_fd,
@@ -421,24 +516,57 @@ static void test_fallback(data_t *data, bool is_mst)
((curr_link_rate == max_link_rate && curr_lane_count == max_lane_count) && --retries),
"Fallback unsuccessful\n");
+ /*
+ * This subtest only cares about the single UHBR -> HBR
+ * transition (128b/132b to 8b/10b encoding). Stop as soon as
+ * we've dropped below UHBR10, instead of cascading all the
+ * way down through the legacy HBR/HBR2/HBR3 rates, which is
+ * already covered by dp-fallback.
+ */
+ if (force_uhbr && !i915_dp_is_uhbr_rate(curr_link_rate)) {
+ igt_info("UHBR to HBR fallback confirmed on %s: link rate %d -> %d\n",
+ igt_output_name(data->output),
+ prev_link_rate, curr_link_rate);
+ /*
+ * Link params are already 'auto' (the pin was cleared
+ * before this loop) and the per-output UHBR gate in
+ * run_lt_fallback_test() resets again for the next
+ * output, so this run is already self-contained.
+ */
+ return true;
+ }
+
prev_link_rate = curr_link_rate;
prev_lane_count = curr_lane_count;
}
+
+ /*
+ * force_uhbr: the loop only exits here if link retrain got disabled
+ * before the rate ever dropped out of UHBR, i.e. we trained at UHBR and
+ * forced failures but never saw the UHBR -> HBR transition. That is a
+ * real failure, not a skip.
+ */
+ igt_assert_f(!force_uhbr,
+ "UHBR to HBR fallback not reached on %s (last link rate %d)\n",
+ igt_output_name(data->output), prev_link_rate);
+
+ return true;
}
-static bool run_lt_fallback_test(data_t *data)
+static bool run_lt_fallback_test(data_t *data, bool force_uhbr)
{
bool ran = false;
igt_output_t *output;
/*
* Reset per invocation so MST traversal state from a previous subtest
- * (e.g. dp-fallback followed by dsc-fallback) doesn't leak and cause
- * MST siblings to be silently skipped as "already visited".
+ * doesn't leak into this run.
*/
traversed_mst_output_count = 0;
for_each_connected_output(&data->display, output) {
+ bool is_mst, tested;
+
data->output = output;
if (!i915_dp_has_force_link_training_failure_debugfs(data->drm_fd,
@@ -450,23 +578,40 @@ static bool run_lt_fallback_test(data_t *data)
if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) {
igt_info("Skipping output %s as it's not DP\n", output->name);
+ continue;
+ }
+
+ if (force_uhbr) {
+ /*
+ * Single UHBR-capability gate: reset first so the max
+ * link rate reflects the full sink-negotiated caps and
+ * not a value already reduced by an earlier fallback.
+ */
+ i915_dp_reset_link_params(data->drm_fd, data->output);
+ if (!i915_dp_is_uhbr_rate(i915_dp_get_max_link_rate(data->drm_fd,
+ data->output))) {
+ igt_info("Skipping output %s: does not support UHBR\n",
+ igt_output_name(data->output));
continue;
+ }
}
- ran = true;
+ is_mst = igt_check_output_is_dp_mst(data->output);
+ igt_info("Testing %s%s output %s\n",
+ force_uhbr ? "UHBR-to-HBR fallback on " : "",
+ is_mst ? "MST" : "DP",
+ igt_output_name(data->output));
+
+ tested = test_fallback(data, is_mst, force_uhbr);
/*
- * Check output is MST
+ * dp-fallback counts every capable output as exercised; the
+ * UHBR subtest only counts outputs where fallback was actually
+ * driven (test_fallback() returns false for the skippable
+ * cases, e.g. no sustainable UHBR rate).
*/
- if (igt_check_output_is_dp_mst(data->output)) {
- igt_info("Testing MST output %s\n",
- igt_output_name(data->output));
- test_fallback(data, true);
- } else {
- igt_info("Testing DP output %s\n",
- igt_output_name(data->output));
- test_fallback(data, false);
- }
+ if (!force_uhbr || tested)
+ ran = true;
}
return ran;
}
@@ -644,7 +789,7 @@ int igt_main()
}
igt_subtest("dp-fallback") {
- igt_require_f(run_lt_fallback_test(&data),
+ igt_require_f(run_lt_fallback_test(&data, false),
"Skipping test as no output found or none supports fallback\n");
}
@@ -653,6 +798,11 @@ int igt_main()
"Skipping test as DSC fallback conditions not met.\n");
}
+ igt_subtest("uhbr-to-hbr-fallback") {
+ igt_require_f(run_lt_fallback_test(&data, true),
+ "Skipping test: no UHBR-capable DP output found\n");
+ }
+
igt_fixture() {
igt_remove_fb(data.drm_fd, &data.fb);
igt_display_fini(&data.display);
--
2.51.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
` (2 preceding siblings ...)
2026-08-05 8:44 ` [PATCH i-g-t v3 3/3] tests/intel/kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
@ 2026-08-05 23:05 ` Patchwork
2026-08-05 23:19 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-08-05 23:05 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11177 bytes --]
== Series Details ==
Series: kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
URL : https://patchwork.freedesktop.org/series/171645/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9038_BAT -> XEIGTPW_15635_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 15)
------------------------------
Additional (4): bat-bmg-1 bat-bmg-2 bat-ptl-vm bat-nvls-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15635_BAT:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@basic:
- {bat-nvls-2}: [SKIP][1] ([Intel XE#8740]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/bat-nvls-2/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-nvls-2/igt@kms_frontbuffer_tracking@basic.html
Known issues
------------
Here are the changes found in XEIGTPW_15635_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2233])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-1: NOTRUN -> [SKIP][5] ([Intel XE#2233])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#8265])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2482]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][12] ([Intel XE#5764]) +10 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@no-exec-cm-virtual-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][13] ([Intel XE#7482]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html
* igt@xe_exec_multi_queue@exec-sanity:
- bat-bmg-1: NOTRUN -> [SKIP][14] ([Intel XE#8364]) +13 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@xe_exec_multi_queue@exec-sanity.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
- bat-ptl-vm: NOTRUN -> [SKIP][15] ([Intel XE#8364]) +13 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][16] ([Intel XE#8364]) +13 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][17] ([Intel XE#2229])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- bat-bmg-1: NOTRUN -> [SKIP][18] ([Intel XE#2229])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][19] ([Intel XE#5775])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][20] ([Intel XE#5776])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][21] ([Intel XE#5777] / [Intel XE#7590])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-2: NOTRUN -> [SKIP][22] ([Intel XE#1420] / [Intel XE#7590])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-1: NOTRUN -> [SKIP][23] ([Intel XE#1420] / [Intel XE#7590])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][24] ([Intel XE#2245] / [Intel XE#7590])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: NOTRUN -> [SKIP][25] ([Intel XE#2245] / [Intel XE#7590])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-ptl-vm: NOTRUN -> [SKIP][26] ([Intel XE#5771] / [Intel XE#7590])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][27] ([Intel XE#5780] / [Intel XE#7590])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-2: NOTRUN -> [SKIP][28] ([Intel XE#2236] / [Intel XE#7590])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-1: NOTRUN -> [SKIP][29] ([Intel XE#2236] / [Intel XE#7590])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@kms_addfb_basic@addfb25-4-tiled:
- {bat-nvls-2}: [SKIP][30] ([Intel XE#8740]) -> [PASS][31] +38 other tests pass
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/bat-nvls-2/igt@kms_addfb_basic@addfb25-4-tiled.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/bat-nvls-2/igt@kms_addfb_basic@addfb25-4-tiled.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8740
[Intel XE#8741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8741
[Intel XE#8743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8743
[Intel XE#8744]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8744
[Intel XE#8745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8745
[Intel XE#8746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8746
[Intel XE#8747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8747
[Intel XE#8748]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8748
[Intel XE#8755]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8755
[Intel XE#8756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8756
[Intel XE#8757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8757
[Intel XE#8758]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8758
[Intel XE#8759]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8759
Build changes
-------------
* IGT: IGT_9038 -> IGTPW_15635
* Linux: xe-5544-ae224fc6fb21a5ff9481d608839e03f1f2c13b22 -> xe-5548-ff9b76577dfe70713faaa2f19a30424ec9a51a18
IGTPW_15635: 15635
IGT_9038: 9038
xe-5544-ae224fc6fb21a5ff9481d608839e03f1f2c13b22: ae224fc6fb21a5ff9481d608839e03f1f2c13b22
xe-5548-ff9b76577dfe70713faaa2f19a30424ec9a51a18: ff9b76577dfe70713faaa2f19a30424ec9a51a18
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/index.html
[-- Attachment #2: Type: text/html, Size: 12463 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
` (3 preceding siblings ...)
2026-08-05 23:05 ` ✓ Xe.CI.BAT: success for kms_dp_linktrain_fallback: " Patchwork
@ 2026-08-05 23:19 ` Patchwork
2026-08-06 8:24 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-06 10:29 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-08-05 23:19 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2819 bytes --]
== Series Details ==
Series: kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
URL : https://patchwork.freedesktop.org/series/171645/
State : success
== Summary ==
CI Bug Log - changes from IGT_9038 -> IGTPW_15635
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/index.html
Participating hosts (41 -> 37)
------------------------------
Missing (4): bat-dg2-13 fi-glk-j4005 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_15635 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9038/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][3] ([i915#15673]) -> [PASS][4] +78 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9038/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-adlp-9: [DMESG-WARN][5] ([i915#16404]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9038/bat-adlp-9/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/bat-adlp-9/igt@i915_selftest@live.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [SKIP][7] ([i915#13030]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9038/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#16404]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16404
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9038 -> IGTPW_15635
* Linux: CI_DRM_18945 -> CI_DRM_18948
CI-20190529: 20190529
CI_DRM_18945: 814bd7de7f09446c4b9401eecb8b30c3285af78b @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18948: 4c13a67db118ee0019231dbc1362bcb8115ac660 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15635: 15635
IGT_9038: 9038
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/index.html
[-- Attachment #2: Type: text/html, Size: 3509 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
` (4 preceding siblings ...)
2026-08-05 23:19 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-08-06 8:24 ` Patchwork
2026-08-06 10:29 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-08-06 8:24 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 23874 bytes --]
== Series Details ==
Series: kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
URL : https://patchwork.freedesktop.org/series/171645/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9038_FULL -> XEIGTPW_15635_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15635_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15635_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_15635_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback (NEW):
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-10/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-lnl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-1/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
#### Warnings ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][3] ([Intel XE#4294] / [Intel XE#7477]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
New tests
---------
New tests have been introduced between XEIGT_9038_FULL and XEIGTPW_15635_FULL:
### New IGT tests (1) ###
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- Statuses : 2 skip(s)
- Exec time: [0.02, 0.07] s
Known issues
------------
Here are the changes found in XEIGTPW_15635_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2328] / [Intel XE#7367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2321] / [Intel XE#7355])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#309] / [Intel XE#7343])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#8265])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#301])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7178] / [Intel XE#7351])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#656] / [Intel XE#7905]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2311]) +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4141]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7865]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2313]) +20 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7283])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2393])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_dc@dc3co-vpb-framegap@pr-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-framegap@pr-xrgb8888.html
* igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#8396]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7794])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#8399])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1489])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1406])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-4/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6503])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-5/igt@kms_sharpness_filter@filter-dpms.html
* igt@xe_evict@evict-small-multi-queue-priority:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8370])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8374]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-queues-userptr:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#8364])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-6/igt@xe_exec_multi_queue@many-queues-userptr.html
* igt@xe_exec_multi_queue@one-queue-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#8364]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-9/igt@xe_exec_multi_queue@one-queue-dyn-priority.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#8369])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-5/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_reset@multi-queue-cat-error-on-secondary:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8369])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-6/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind-err:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8378]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-userptr-rebind-err.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][46] -> [ABORT][47] ([Intel XE#8007]) +2 other tests abort
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6964])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#584] / [Intel XE#7369])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-6/igt@xe_pm@s3-mocs.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#7992])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7599])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][53] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [FAIL][55] ([Intel XE#6078]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][57] ([Intel XE#3321]) -> [PASS][58] +1 other test pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][59] ([Intel XE#301]) -> [PASS][60] +1 other test pass
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][61] ([Intel XE#7308]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][63] ([Intel XE#8399]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_fault_mode@atomic-many:
- shard-bmg: [FAIL][65] ([Intel XE#8578]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@xe_exec_fault_mode@atomic-many.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [ABORT][67] ([Intel XE#8007]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_oa@buffer-size:
- shard-bmg: [FAIL][69] ([Intel XE#7334]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-3/igt@xe_oa@buffer-size.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-7/igt@xe_oa@buffer-size.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-bmg: [FAIL][71] ([Intel XE#7992]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-9/igt@xe_sriov_vram@vf-access-beyond.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-4/igt@xe_sriov_vram@vf-access-beyond.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][73] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][74] ([Intel XE#1729] / [Intel XE#7424])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9038/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7334]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7334
[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#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
Build changes
-------------
* IGT: IGT_9038 -> IGTPW_15635
* Linux: xe-5544-ae224fc6fb21a5ff9481d608839e03f1f2c13b22 -> xe-5548-ff9b76577dfe70713faaa2f19a30424ec9a51a18
IGTPW_15635: 15635
IGT_9038: 9038
xe-5544-ae224fc6fb21a5ff9481d608839e03f1f2c13b22: ae224fc6fb21a5ff9481d608839e03f1f2c13b22
xe-5548-ff9b76577dfe70713faaa2f19a30424ec9a51a18: ff9b76577dfe70713faaa2f19a30424ec9a51a18
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15635/index.html
[-- Attachment #2: Type: text/html, Size: 26302 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
` (5 preceding siblings ...)
2026-08-06 8:24 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-08-06 10:29 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-08-06 10:29 UTC (permalink / raw)
To: Sowmiya S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 181168 bytes --]
== Series Details ==
Series: kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest
URL : https://patchwork.freedesktop.org/series/171645/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18948_full -> IGTPW_15635_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15635_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15635_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_15635/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_15635_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback (NEW):
- shard-dg2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-tglu: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
#### Warnings ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][6] ([i915#13707]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: [SKIP][8] ([i915#13707]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: [SKIP][10] ([i915#13707]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: [SKIP][12] ([i915#13707]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
New tests
---------
New tests have been introduced between CI_DRM_18948_full and IGTPW_15635_full:
### New IGT tests (1) ###
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- Statuses : 7 skip(s)
- Exec time: [0.01, 0.05] s
Known issues
------------
Here are the changes found in IGTPW_15635_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#11078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@device_reset@cold-reset-bound.html
* igt@fbdev@info:
- shard-dg2: [PASS][16] -> [SKIP][17] ([i915#1849] / [i915#2582])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@fbdev@info.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@fbdev@info.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13356] / [i915#16466]) +1 other test incomplete
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-snb4/igt@gem_ctx_persistence@processes.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][21] ([i915#8898]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-snb6/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#15314])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4036])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [FAIL][27] ([i915#15816])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@gem_exec_flush@basic-wb-set-default.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +9 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue.html
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#2190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#284])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@gem_media_vme.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@gem_mmap@pf-nonblock.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@medium-copy:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@gem_mmap_gtt@medium-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@gem_mmap_wc@bad-size.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#3282]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][57] ([i915#14702] / [i915#2658])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4079])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#3323])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@gen9_exec_parse@batch-without-end.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#2527])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gpu_buddy@gpu_buddy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#15678])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@gpu_buddy@gpu_buddy.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#15678])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@gpu_buddy@gpu_buddy.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#15678])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@gpu_buddy@gpu_buddy.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#15678])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@gpu_buddy@gpu_buddy.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#15678] / [i915#16638])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@gpu_buddy@gpu_buddy.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#14073]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#14073]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#14073]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_module_load@fault-injection:
- shard-dg2: NOTRUN -> [ABORT][85] ([i915#15342] / [i915#15481])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-dg2: NOTRUN -> [ABORT][86] ([i915#15481])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-dg2: NOTRUN -> [DMESG-WARN][87] ([i915#15342])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][88] ([i915#13029] / [i915#14545])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#16080] / [i915#16166])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: NOTRUN -> [INCOMPLETE][93] ([i915#13356])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][94] -> [SKIP][95] ([i915#7984])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-mtlp-8/igt@i915_power@sanity.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#6245])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#16109])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#16182] / [i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk8/igt@i915_suspend@debugfs-reader.html
- shard-rkl: NOTRUN -> [INCOMPLETE][99] ([i915#4817])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4077]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-7/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][101] -> [INCOMPLETE][102] ([i915#4817])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@i915_suspend@forcewake.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#5190])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#12454] / [i915#12712])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][106] ([i915#14888]) +2 other tests fail
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][107] ([i915#1769])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#16707]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#5286])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#3638])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#3828])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: [PASS][118] -> [FAIL][119] ([i915#15733] / [i915#5138])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#16707] / [i915#5190])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][124] +107 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][125] +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_busy@basic:
- shard-dg2: [PASS][126] -> [SKIP][127] ([i915#11190] / [i915#16707]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_busy@basic.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_busy@basic.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +210 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +102 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +44 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +74 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-glk: NOTRUN -> [SKIP][135] +327 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +12 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#15582]) +1 other test incomplete
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14098] / [i915#6095]) +51 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +73 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +14 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#11151])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#11151])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][146] +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#16471]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#16464] / [i915#16471])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#16471])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-13/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#16471]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#16471]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#16471]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#14544] / [i915#7828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#12655] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_color@deep-color.html
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#9979])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_color@gamma:
- shard-dg2: [PASS][162] -> [SKIP][163] ([i915#12655])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_color@gamma.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_color@gamma.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4:
- shard-dg2: [PASS][164] -> [SKIP][165] ([i915#15529])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_color_pipeline@plane-lut1d-ctm3x4.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#15865]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#15330] / [i915#3299])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3116] / [i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15330])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#15865]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15865]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#14544] / [i915#15865])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#15865])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_content_protection@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#15865])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#15865])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-7/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][179] ([i915#13566]) +4 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8814]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][181] ([i915#13566]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#14544] / [i915#3555])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][184] -> [FAIL][185] ([i915#13566]) +1 other test fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#13049])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#13049])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#4103])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#4103])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#16119] / [i915#4213])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9809])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#9067])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#9723])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#13749])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#13749])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#13749])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13749])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#13749])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#13748])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13748]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#13707])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#14544] / [i915#16361])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#16361])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#16361]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-bigjoiner:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#16361]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-bigjoiner.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#16680])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#16084])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#16081])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#16081])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#16599])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934]) +8 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3637] / [i915#9934])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-dpms-on-nop:
- shard-dg2: [PASS][222] -> [SKIP][223] ([i915#16724])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_flip@flip-vs-dpms-on-nop.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_flip@flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg1: [PASS][224] -> [FAIL][225] ([i915#13027])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
- shard-snb: [PASS][226] -> [FAIL][227] ([i915#13027]) +1 other test fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-snb1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-snb4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][228] ([i915#13027])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][229] ([i915#13027])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][230] ([i915#12745] / [i915#4839]) +1 other test incomplete
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk11/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][231] -> [INCOMPLETE][232] ([i915#16276] / [i915#6113]) +1 other test incomplete
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][233] ([i915#12745]) +1 other test incomplete
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [FAIL][234] ([i915#14600]) +1 other test fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#5354]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_flip@wf_vblank-ts-check.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#15643])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15643])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15643] / [i915#5190])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#15643]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#15643]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][243] -> [SKIP][244] ([i915#3555] / [i915#8813]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][245] +34 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite:
- shard-dg2: [PASS][246] -> [SKIP][247] ([i915#16708] / [i915#5354]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15989]) +9 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-shrfb-fliptrack-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#15989]) +21 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15991]) +14 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544]) +9 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt:
- shard-rkl: [PASS][252] -> [SKIP][253] ([i915#15989]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][254] ([i915#16056] / [i915#16593])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15990] / [i915#8708]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +10 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#15990] / [i915#8708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#1825])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#16708] / [i915#5354])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][262] +114 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15990]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#15990]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#15990]) +7 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15102]) +37 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#15102]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][268] +69 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#15102]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#5439])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15989]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#15989]) +16 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15989]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#15991]) +15 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#16708]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#9766])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9766])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#9766])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#15102]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15102]) +30 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#15104] / [i915#15990])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15104] / [i915#15990])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#15104] / [i915#15990])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#10433] / [i915#15102])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15102] / [i915#3023]) +16 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#15991] / [i915#5354]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15991] / [i915#1825]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15989]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render:
- shard-glk11: NOTRUN -> [SKIP][289] +138 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][290] +121 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15102]) +52 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-10/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-pwrite.html
* igt@kms_getfb@getfb-handle-protection:
- shard-dg1: [PASS][292] -> [DMESG-WARN][293] ([i915#4423]) +2 other tests dmesg-warn
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-14/igt@kms_getfb@getfb-handle-protection.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-13/igt@kms_getfb@getfb-handle-protection.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#16644] / [i915#3555] / [i915#8228])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_hdr@static-swap.html
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#15459])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_lease@lease-revoke:
- shard-dg2: [PASS][298] -> [SKIP][299] ([i915#16707]) +43 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_lease@lease-revoke.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_lease@lease-revoke.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#6301])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#6301])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][302] -> [ABORT][303] ([i915#15132]) +1 other test abort
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk10: NOTRUN -> [INCOMPLETE][304] ([i915#12756] / [i915#13409] / [i915#13476])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][305] ([i915#13409] / [i915#13476])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#14712])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#14712])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#14712])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#14712])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#14712])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15709]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#15709]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15709]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#16386]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#15709]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-linear-modifier:
- shard-dg2: [PASS][316] -> [SKIP][317] ([i915#8825]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_plane@pixel-format-linear-modifier.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane@pixel-format-linear-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#16386]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#15709]) +5 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#14544] / [i915#15709])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#15709]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#16112])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][323] ([i915#12178])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][324] ([i915#7862]) +1 other test fail
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][325] ([i915#10647] / [i915#12177])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][326] ([i915#10647]) +1 other test fail
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#3555]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#13958])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#13958])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#13958])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#6953] / [i915#9423])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#6953])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#6953])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#6953])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#15329]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#15329]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#15329] / [i915#3555])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#15329]) +13 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#15329] / [i915#9423])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#15329]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#15329]) +4 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: [PASS][342] -> [SKIP][343] ([i915#15329] / [i915#3555] / [i915#9423])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2: [PASS][344] -> [SKIP][345] ([i915#15329] / [i915#3555] / [i915#6953] / [i915#9423]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-dg2: [PASS][346] -> [SKIP][347] ([i915#15329]) +15 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#12343] / [i915#5354])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#12343] / [i915#9812]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#9685])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9685])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#9685])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#15948])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#15739])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#14544] / [i915#9340])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][356] -> [SKIP][357] ([i915#15073])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#15073])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#15073]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][360] -> [SKIP][361] ([i915#15073]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#15073]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][363] ([i915#10553])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-dg2: [PASS][364] -> [SKIP][365] ([i915#3547])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_pm_rpm@system-suspend-modeset.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-rkl: NOTRUN -> [INCOMPLETE][366] ([i915#14419])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#14544] / [i915#6524])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#11520]) +9 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#11520]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-snb: NOTRUN -> [SKIP][370] ([i915#11520]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-snb5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#9808]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][372] ([i915#11520]) +5 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][373] ([i915#11520]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk11/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#11520]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#11520] / [i915#14544])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#11520]) +7 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-glk10: NOTRUN -> [SKIP][377] ([i915#11520]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#11520]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#9683])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#9683])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9688]) +5 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-2/igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#9732]) +9 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-12/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +5 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#9732]) +11 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-basic:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#9732]) +20 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#1072] / [i915#9732]) +18 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#15949])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#15949])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#15949])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk10: NOTRUN -> [INCOMPLETE][391] ([i915#15492] / [i915#16184])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk11: NOTRUN -> [INCOMPLETE][392] ([i915#15492] / [i915#16184])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#5289])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#5289]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#3555]) +9 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [PASS][396] -> [INCOMPLETE][397] ([i915#12276])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][398] ([i915#12276])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#15243] / [i915#3555])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#15243] / [i915#3555])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#3555] / [i915#8808])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#14544] / [i915#3555] / [i915#9906])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][403] ([i915#9906])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#2433])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [ABORT][405] ([i915#15778])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][406] ([i915#8516])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [PASS][407] -> [FAIL][408] ([i915#4349]) +5 other tests fail
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][409] -> [FAIL][410] ([i915#4349]) +3 other tests fail
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#3291] / [i915#3708]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][412] ([i915#3291] / [i915#3708])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#3708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][414] ([i915#3708])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-17/igt@prime_vgem@fence-read-hang.html
- shard-mtlp: NOTRUN -> [SKIP][415] ([i915#3708])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][416] ([i915#9917])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][417] ([i915#9917]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][418] ([i915#9917])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-19/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [SKIP][419] ([i915#16066]) +10 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-9/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [SKIP][420] ([i915#16066]) +9 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-4/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sysfs_heartbeat_interval@precise:
- shard-snb: NOTRUN -> [SKIP][421] +113 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-snb5/igt@sysfs_heartbeat_interval@precise.html
#### Possible fixes ####
* igt@fbdev@unaligned-read:
- shard-dg2: [SKIP][422] ([i915#2582]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@fbdev@unaligned-read.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@fbdev@unaligned-read.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][424] ([i915#13356] / [i915#16348]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@gem_ccs@suspend-resume.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [ABORT][426] ([i915#15131]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [ABORT][428] ([i915#15152]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-1/igt@gem_workarounds@suspend-resume.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@gem_workarounds@suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [INCOMPLETE][430] ([i915#12761]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-dg2: [SKIP][432] ([i915#16707]) -> [PASS][433] +38 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][434] -> [PASS][435] +4 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-tglu-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-10/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][436] ([i915#5956]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][438] ([i915#12655]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_color@ctm-max.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_color@ctm-max.html
* igt@kms_color_pipeline@plane-lut1d-lut1d:
- shard-dg2: [SKIP][440] ([i915#15529]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_color_pipeline@plane-lut1d-lut1d.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][442] ([i915#13566]) -> [PASS][443] +1 other test pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][444] ([i915#9878]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [SKIP][446] ([i915#5354]) -> [PASS][447] +2 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][448] ([i915#16276] / [i915#6113]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: [SKIP][450] ([i915#3555] / [i915#8813]) -> [PASS][451] +3 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][452] ([i915#16708]) -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][454] ([i915#16708] / [i915#5354]) -> [PASS][455] +2 other tests pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][456] ([i915#15989]) -> [PASS][457] +9 other tests pass
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-fullscreen:
- shard-glk: [SKIP][458] -> [PASS][459] +1 other test pass
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-glk4/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-fullscreen.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: [SKIP][460] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-dg2: [SKIP][462] ([i915#16746] / [i915#3555]) -> [PASS][463] +1 other test pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_invalid_mode@bad-vtotal.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- shard-dg2: [SKIP][464] ([i915#11190] / [i915#16707]) -> [PASS][465] +1 other test pass
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_pipe_crc_basic@hang-read-crc.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: [SKIP][466] ([i915#8825]) -> [PASS][467]
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-dg2: [SKIP][468] ([i915#3555] / [i915#6953] / [i915#9423]) -> [PASS][469]
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane_scaling@invalid-num-scalers.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2: [SKIP][470] ([i915#15329] / [i915#9423]) -> [PASS][471] +4 other tests pass
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg2: [SKIP][472] ([i915#15329] / [i915#6953] / [i915#9423]) -> [PASS][473] +1 other test pass
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-dg2: [SKIP][474] ([i915#15329]) -> [PASS][475] +27 other tests pass
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [SKIP][476] ([i915#15073]) -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-12/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][478] ([i915#15073]) -> [PASS][479]
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2: [SKIP][480] ([i915#3547]) -> [PASS][481]
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_pm_rpm@drm-resources-equal.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][482] ([i915#15073]) -> [PASS][483] +1 other test pass
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_properties@colorop-properties-legacy:
- shard-dg2: [SKIP][484] ([i915#15347]) -> [PASS][485]
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_properties@colorop-properties-legacy.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_properties@colorop-properties-legacy.html
* igt@kms_properties@plane-properties-atomic:
- shard-dg2: [SKIP][486] ([i915#11521]) -> [PASS][487] +1 other test pass
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_properties@plane-properties-atomic.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][488] ([i915#9323]) -> [SKIP][489] ([i915#14544] / [i915#9323])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-rkl: [SKIP][490] ([i915#3281]) -> [SKIP][491] ([i915#14544] / [i915#3281])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@gem_exec_reloc@basic-wc-noreloc.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#3281]) -> [SKIP][493] ([i915#3281]) +5 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#4613]) -> [SKIP][495] ([i915#4613])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][496] ([i915#13717]) -> [SKIP][497] ([i915#13717] / [i915#14544])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [FAIL][498] ([i915#15169]) -> [SKIP][499] ([i915#13717])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#3282]) -> [SKIP][501] ([i915#3282]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-rkl: [SKIP][502] ([i915#3282]) -> [SKIP][503] ([i915#14544] / [i915#3282])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@gem_tiled_pread_pwrite.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#3297]) -> [SKIP][505] ([i915#3297])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][506] ([i915#14544] / [i915#2527]) -> [SKIP][507] ([i915#2527]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][508] ([i915#15479]) -> [SKIP][509] ([i915#14544] / [i915#15479]) +4 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#16109]) -> [SKIP][511] ([i915#16109])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: [SKIP][512] ([i915#16707]) -> [SKIP][513] ([i915#1769] / [i915#3555]) +1 other test skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2: [SKIP][514] -> [SKIP][515] ([i915#16707])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#3638]) -> [SKIP][517] ([i915#3638])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: [SKIP][518] ([i915#3828]) -> [SKIP][519] ([i915#16707])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][520] ([i915#16707]) -> [SKIP][521] +2 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][522] ([i915#16707] / [i915#5190]) -> [SKIP][523] ([i915#4538] / [i915#5190]) +9 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][524] ([i915#14544]) -> [SKIP][525] +25 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: [SKIP][526] ([i915#4538] / [i915#5190]) -> [SKIP][527] ([i915#16707] / [i915#5190]) +7 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][528] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][529] ([i915#14098] / [i915#6095]) +4 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][530] ([i915#6095]) -> [SKIP][531] ([i915#14544] / [i915#6095]) +3 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][532] ([i915#16707]) -> [SKIP][533] ([i915#10307] / [i915#6095]) +7 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][534] ([i915#12313]) -> [SKIP][535] ([i915#16707]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-rkl: [SKIP][536] ([i915#12313]) -> [SKIP][537] ([i915#12313] / [i915#14544])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][538] ([i915#14098] / [i915#6095]) -> [SKIP][539] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][540] ([i915#16707]) -> [SKIP][541] ([i915#12313]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][542] ([i915#16707]) -> [SKIP][543] ([i915#10307] / [i915#10434] / [i915#6095])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][544] ([i915#16707]) -> [SKIP][545] ([i915#12805])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-dg2: [SKIP][546] ([i915#6095]) -> [SKIP][547] ([i915#16707])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][548] ([i915#12313] / [i915#14544]) -> [SKIP][549] ([i915#12313])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][550] ([i915#10307] / [i915#6095]) -> [SKIP][551] ([i915#16707]) +5 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][552] ([i915#14544] / [i915#6095]) -> [SKIP][553] ([i915#6095]) +2 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][554] ([i915#13783]) -> [SKIP][555] ([i915#16707])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-4/igt@kms_cdclk@plane-scaling.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_cdclk@plane-scaling.html
- shard-rkl: [SKIP][556] ([i915#3742]) -> [SKIP][557] ([i915#14544] / [i915#3742])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][558] ([i915#11151] / [i915#7828]) -> [SKIP][559] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: [SKIP][560] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][561] ([i915#11151] / [i915#7828]) +2 other tests skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: [SKIP][562] ([i915#15865]) -> [SKIP][563] ([i915#16707]) +1 other test skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: [SKIP][564] ([i915#15865]) -> [SKIP][565] ([i915#14544] / [i915#15865])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][566] ([i915#16707]) -> [SKIP][567] ([i915#15865]) +1 other test skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_content_protection@type1.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2: [SKIP][568] ([i915#16707]) -> [SKIP][569] ([i915#3555])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_cursor_crc@cursor-random-32x32.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][570] ([i915#13049]) -> [SKIP][571] ([i915#16707])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][572] ([i915#3555]) -> [SKIP][573] ([i915#14544] / [i915#3555])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: [SKIP][574] ([i915#16707]) -> [SKIP][575] ([i915#13049])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-rkl: [SKIP][576] ([i915#13049]) -> [SKIP][577] ([i915#13049] / [i915#14544])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][578] ([i915#16707]) -> [SKIP][579] ([i915#13046] / [i915#5354]) +4 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: [SKIP][580] ([i915#13046] / [i915#5354]) -> [SKIP][581] ([i915#16707]) +1 other test skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: [SKIP][582] ([i915#16707]) -> [SKIP][583] ([i915#4103])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#4103]) -> [SKIP][585] ([i915#4103])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][586] ([i915#9833]) -> [SKIP][587] ([i915#16707])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: [SKIP][588] ([i915#11190] / [i915#16707]) -> [SKIP][589] ([i915#16361])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_dsc@dsc-basic.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][590] ([i915#16361]) -> [SKIP][591] ([i915#14544] / [i915#16361])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-dg2: [SKIP][592] ([i915#16361]) -> [SKIP][593] ([i915#16707]) +2 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-dg2: [SKIP][594] ([i915#16707]) -> [SKIP][595] ([i915#16361]) +3 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_feature_discovery@dsc:
- shard-rkl: [SKIP][596] ([i915#16600]) -> [SKIP][597] ([i915#14544] / [i915#16600])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_feature_discovery@dsc.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][598] ([i915#658]) -> [SKIP][599] ([i915#14544] / [i915#658])
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@kms_feature_discovery@psr2.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][600] ([i915#9934]) -> [SKIP][601] ([i915#14544] / [i915#9934]) +3 other tests skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][602] ([i915#14544] / [i915#9934]) -> [SKIP][603] ([i915#9934]) +1 other test skip
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2: [SKIP][604] ([i915#5354]) -> [FAIL][605] ([i915#13027])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: [SKIP][606] ([i915#14544] / [i915#15643]) -> [SKIP][607] ([i915#15643])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][608] ([i915#15643]) -> [SKIP][609] ([i915#14544] / [i915#15643]) +1 other test skip
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][610] ([i915#15104] / [i915#15990]) -> [SKIP][611] ([i915#16708]) +1 other test skip
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: [SKIP][612] ([i915#16708] / [i915#5354]) -> [SKIP][613] ([i915#15991] / [i915#5354]) +24 other tests skip
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][614] ([i915#15990] / [i915#8708]) -> [SKIP][615] ([i915#16708] / [i915#5354]) +12 other tests skip
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][616] ([i915#16708] / [i915#5354]) -> [SKIP][617] ([i915#15990] / [i915#8708]) +12 other tests skip
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][618] ([i915#16708]) -> [SKIP][619] ([i915#15991]) +25 other tests skip
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-dg2: [SKIP][620] ([i915#16708]) -> [SKIP][621] ([i915#15989]) +18 other tests skip
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-dg2: [SKIP][622] ([i915#10055]) -> [SKIP][623] ([i915#16708])
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][624] ([i915#16708]) -> [SKIP][625] ([i915#15104] / [i915#15990])
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][626] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][627] ([i915#15102] / [i915#3023]) +5 other tests skip
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][628] ([i915#10433] / [i915#15102]) -> [SKIP][629] ([i915#15102]) +1 other test skip
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][630] ([i915#15991] / [i915#5354]) -> [SKIP][631] ([i915#16708] / [i915#5354]) +22 other tests skip
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][632] ([i915#14544] / [i915#1825]) -> [SKIP][633] ([i915#1825]) +2 other tests skip
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][634] ([i915#15102]) -> [SKIP][635] ([i915#10433] / [i915#15102])
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][636] ([i915#10055]) -> [SKIP][637] ([i915#16708] / [i915#5354])
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][638] ([i915#15102]) -> [SKIP][639] ([i915#14544] / [i915#15102]) +5 other tests skip
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][640] ([i915#14544] / [i915#15102]) -> [SKIP][641] ([i915#15102]) +4 other tests skip
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][642] -> [SKIP][643] ([i915#14544]) +32 other tests skip
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
- shard-dg2: [SKIP][644] ([i915#15102]) -> [SKIP][645] ([i915#16708]) +15 other tests skip
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange:
- shard-dg2: [SKIP][646] ([i915#16708]) -> [SKIP][647] ([i915#15102]) +15 other tests skip
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][648] ([i915#16708]) -> [SKIP][649] ([i915#15990]) +11 other tests skip
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][650] ([i915#15989]) -> [SKIP][651] ([i915#16708]) +7 other tests skip
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [SKIP][652] ([i915#15991]) -> [SKIP][653] ([i915#16708]) +24 other tests skip
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][654] ([i915#16708] / [i915#5354]) -> [SKIP][655] ([i915#10433] / [i915#15102])
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: [SKIP][656] ([i915#15102]) -> [SKIP][657] ([i915#16708] / [i915#5354]) +6 other tests skip
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][658] ([i915#1825]) -> [SKIP][659] ([i915#14544] / [i915#1825]) +1 other test skip
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: [SKIP][660] ([i915#16708] / [i915#5354]) -> [SKIP][661] ([i915#15102]) +7 other tests skip
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][662] ([i915#15102] / [i915#3023]) -> [SKIP][663] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][664] ([i915#15990]) -> [SKIP][665] ([i915#16708]) +22 other tests skip
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][666] ([i915#12713] / [i915#16644]) -> [SKIP][667] ([i915#1187] / [i915#12713] / [i915#16644])
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg2: [SKIP][668] ([i915#16707]) -> [SKIP][669] ([i915#16518] / [i915#3555] / [i915#8228])
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_hdr@static-swap.html
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][670] ([i915#16518] / [i915#3555] / [i915#8228]) -> [SKIP][671] ([i915#16707]) +2 other tests skip
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][672] ([i915#15460]) -> [SKIP][673] ([i915#14544] / [i915#15460])
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][674] ([i915#14544] / [i915#15458]) -> [SKIP][675] ([i915#15458])
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][676] ([i915#6301]) -> [SKIP][677] ([i915#16707])
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: [SKIP][678] ([i915#6301]) -> [SKIP][679] ([i915#14544] / [i915#6301])
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: [SKIP][680] ([i915#16707]) -> [SKIP][681] ([i915#6301])
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_panel_fitting@legacy.html
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: [SKIP][682] ([i915#16707]) -> [SKIP][683] ([i915#13705])
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][684] ([i915#15709]) -> [SKIP][685] ([i915#14544] / [i915#15709])
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][686] ([i915#14544] / [i915#15709]) -> [SKIP][687] ([i915#15709])
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-4:
- shard-rkl: [SKIP][688] ([i915#14544] / [i915#3555]) -> [SKIP][689] ([i915#3555])
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-7/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: [SKIP][690] ([i915#16707]) -> [SKIP][691] ([i915#13958])
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-x.html
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][692] ([i915#14544] / [i915#15329]) -> [SKIP][693] ([i915#15329]) +3 other tests skip
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][694] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][695] ([i915#12343] / [i915#5354])
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][696] ([i915#12343]) -> [SKIP][697] ([i915#12343] / [i915#14544])
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][698] ([i915#11520]) -> [SKIP][699] ([i915#11520] / [i915#14544]) +1 other test skip
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][700] ([i915#11520] / [i915#14544]) -> [SKIP][701] ([i915#11520]) +1 other test skip
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-rkl: [SKIP][702] ([i915#1072] / [i915#9732]) -> [SKIP][703] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-3/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-rkl: [SKIP][704] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][705] ([i915#1072] / [i915#9732]) +4 other tests skip
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][706] ([i915#12755] / [i915#15867]) -> [SKIP][707] ([i915#16707]) +1 other test skip
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][708] ([i915#16707]) -> [SKIP][709] ([i915#12755] / [i915#15867])
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: [SKIP][710] ([i915#16707] / [i915#5190]) -> [SKIP][711] ([i915#5190])
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][712] ([i915#16707] / [i915#5190]) -> [SKIP][713] ([i915#12755] / [i915#15867] / [i915#5190])
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][714] ([i915#12755] / [i915#15867] / [i915#5190]) -> [SKIP][715] ([i915#16707] / [i915#5190])
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg2: [SKIP][716] ([i915#3555]) -> [SKIP][717] ([i915#16707]) +1 other test skip
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-center.html
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: [SKIP][718] ([i915#16707]) -> [SKIP][719] ([i915#8623])
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][720] ([i915#14544] / [i915#9906]) -> [SKIP][721] ([i915#9906])
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-dg2: [SKIP][722] ([i915#15243] / [i915#3555]) -> [SKIP][723] ([i915#16707])
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-3/igt@kms_vrr@flipline.html
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][724] ([i915#3555] / [i915#9906]) -> [SKIP][725] ([i915#16707])
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-3/igt@kms_vrr@negative-basic.html
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-10/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: [SKIP][726] ([i915#16707]) -> [SKIP][727] ([i915#9906])
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][728] ([i915#15778]) -> [ABORT][729] ([i915#13029] / [i915#15778])
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-4/igt@perf_pmu@module-unload.html
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-7/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][730] ([i915#15778]) -> [ABORT][731] ([i915#13029] / [i915#15778])
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg1-16/igt@perf_pmu@module-unload.html
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg1-15/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][732] ([i915#8516]) -> [SKIP][733] ([i915#14544] / [i915#8516])
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: [SKIP][734] ([i915#16707] / [i915#3708]) -> [SKIP][735] ([i915#3708])
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][736] ([i915#9917]) -> [SKIP][737] ([i915#14544] / [i915#9917])
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18948/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[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#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[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#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[i915#15169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15169
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15347]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15347
[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#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15529]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15529
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16638
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16707
[i915#16708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16708
[i915#16724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16724
[i915#16746]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16746
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3547]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3547
[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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#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#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#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_9038 -> IGTPW_15635
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18948: 4c13a67db118ee0019231dbc1362bcb8115ac660 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15635: 15635
IGT_9038: 9038
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15635/index.html
[-- Attachment #2: Type: text/html, Size: 243787 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params
2026-08-05 8:44 ` [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params Sowmiya S
@ 2026-08-10 4:39 ` Joshi, Kunal1
0 siblings, 0 replies; 11+ messages in thread
From: Joshi, Kunal1 @ 2026-08-10 4:39 UTC (permalink / raw)
To: Sowmiya S, igt-dev; +Cc: karthik.b.s
Hello Sowmiya,
On 05-08-2026 14:14, Sowmiya S wrote:
> - const char * for i915_dp_set_link_params() to allow string literals
> - Add i915_dp_is_uhbr_rate(): returns true for link rates >= 10 Gbps
> - Add i915_dp_get_next_lower_rate(): parses force_link_rate debugfs list
> using strtok_r(), base-10 strtol() with errno/endptr checks
The message is a bare bullet list of what changed, with no "why". For a lib
patch that is fine as far as it goes, but please add a line saying these are
prep for 3/3 - as it stands, 1/3 adds two exported functions with no
caller in
the tree, and a bisector landing here has no idea they are about to be
used.
Also, imperative mood for the subject/body is the usual convention here
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
> lib/i915/i915_dp.c | 62 +++++++++++++++++++++++++++++++++++++++++++++-
> lib/i915/i915_dp.h | 4 ++-
> 2 files changed, 64 insertions(+), 2 deletions(-)
>
> diff --git a/lib/i915/i915_dp.c b/lib/i915/i915_dp.c
> index e54058580..bf66347f5 100644
> --- a/lib/i915/i915_dp.c
> +++ b/lib/i915/i915_dp.c
> @@ -334,7 +334,7 @@ void i915_dp_reset_link_params(int drm_fd, igt_output_t *output)
> * to set link rate and lane count to auto on exit
> */
> void i915_dp_set_link_params(int drm_fd, igt_output_t *output,
> - char *link_rate, char *lane_count)
> + const char *link_rate, const char *lane_count)
> {
> bool valid;
> drmModeConnector *temp;
> @@ -390,3 +390,63 @@ int i915_dp_get_max_supported_rate(int drm_fd, const igt_output_t *output)
>
> return max_rate;
> }
> +
> +/**
> + * i915_dp_is_uhbr_rate:
> + * @link_rate: DP link rate in 10 kbit/s units, as reported by the
> + * i915_dp_*_link_rate debugfs files
> + *
> + * UHBR (Ultra High Bit Rate) link rates use 128b/132b channel encoding,
> + * everything below uses legacy 8b/10b. UHBR10 is 10 Gbps, i.e. 1000000 in
> + * 10 kbit/s units. Mirrors the kernel's drm_dp_is_uhbr_rate().
> + *
> + * Returns: true if @link_rate is a UHBR rate, false otherwise.
> + */
> +bool i915_dp_is_uhbr_rate(int link_rate)
> +{
> + return link_rate >= 1000000;
> +}
The magic 1000000 is now spelled out only in the doc block above. A named
constant next to it would make the body self-documenting and would
give the
next test something to print in an error message:
/* 10 kbit/s units */
#define I915_DP_UHBR10_LINK_RATE 1000000
Since this is a one-line predicate on an int, static inline in i915_dp.h
(which is what I suggested last time) avoids a cross-TU call for a
comparison. Not important, purely a preference - if you keep it
out-of-line,
fine.
> +
> +/**
> + * i915_dp_get_next_lower_rate:
> + * @drm_fd: A drm file descriptor
> + * @output: Target output
> + * @rate: reference link rate in 10 kbit/s units
> + *
> + * Parses the i915_dp_force_link_rate debugfs list (the source rates, printed
> + * with an "auto" entry and "[..]"/"*" markers) and returns the highest
> + * supported link rate strictly below @rate.
> + *
> + * Returns: highest supported rate below @rate in 10 kbit/s units, or 0 if none.
> + */
> +int i915_dp_get_next_lower_rate(int drm_fd, igt_output_t *output, int rate)
> +{
> + char buf[512], *token, *saveptr = NULL;
> + int res, next = 0;
> +
> + res = igt_debugfs_read_connector_file(drm_fd, igt_output_name(output),
> + "i915_dp_force_link_rate",
> + buf, sizeof(buf));
> + igt_assert_f(res == 0, "Unable to read %s/i915_dp_force_link_rate\n",
> + igt_output_name(output));
> +
> + /* Delimiters strip the "auto" whitespace and the [ ] * markers. */
> + for (token = strtok_r(buf, " \t\n[]*", &saveptr); token;
> + token = strtok_r(NULL, " \t\n[]*", &saveptr)) {
> + char *endptr;
> + long r;
> +
> + if (!strcmp(token, "auto"))
> + continue;
> +
> + errno = 0;
> + r = strtol(token, &endptr, 10);
> + if (errno || endptr == token || *endptr)
> + continue;
> +
> + if (r < rate && r > next)
> + next = r;
> + }
> +
> + return next;
> +}
this is still the source-rate list, which was point (b) on the v2 posting,
and I do not think it survives contract with the kernel.
i915_dp_force_link_rate
is written by i915_dp_force_link_rate_write() ->
static int parse_link_rate(...)
{
...
if (intel_dp_rate_index(intel_dp->source_rates,
intel_dp->num_source_rates,
rate) < 0)
ret = -EINVAL;
}
i.e. the write only validates against source_rates and *succeeds* for a rate
the sink never advertised. It is then consumed by:
static int forced_link_rate(struct intel_dp_link_caps *link_caps)
{
...
len = intel_dp_common_len_rate_limit(link_caps,
link_caps->forced_params.rate);
if (len == 0)
return intel_dp_common_rate(link_caps, 0);
return intel_dp_common_rate(link_caps, len - 1);
}
so the effective pin is silently clamped down to the highest *common*
(source AND sink) rate <= what you wrote. Concretely, on a sink that
advertises
UHBR20 and UHBR10 but not UHBR13.5 - which is legal, the three UHBR
rates are
advertised independently - the caller in 3/3 does:
write 2000000 -> pinned at 2000000, not sustained
write 1350000 -> silently pinned at 1000000, logs
"Link rate 1350000 not sustained (got ...)"
write 1000000 -> pinned at 1000000 again
so you get one log line naming a rate the hardware was never at, and one
full extra modeset (plus a fresh FB set - see my comment on 3/3)
re-testing a
configuration that already failed.
intel_dp_allowed_link_configs is the file that gives you source AND sink AND
the current limits, printed as "<lanes>x<rate>". Parsing that instead would
make this function do what its name says.
Minor while you are here: r is a long and next is an int, so "next = r"
is an
implicit narrowing. Harmless for link rates, but making r an int (or next a
long) keeps -Wconversion-clean builds happy for whoever turns that on.
Thanks and Regards
Kunal Joshi
> diff --git a/lib/i915/i915_dp.h b/lib/i915/i915_dp.h
> index b13629147..6b39d0560 100644
> --- a/lib/i915/i915_dp.h
> +++ b/lib/i915/i915_dp.h
> @@ -17,7 +17,9 @@ int i915_dp_get_pending_lt_failures(int drm_fd, igt_output_t *output);
> int i915_dp_get_pending_retrain(int drm_fd, igt_output_t *output);
> void i915_dp_reset_link_params(int drm_fd, igt_output_t *output);
> void i915_dp_set_link_params(int drm_fd, igt_output_t *output,
> - char *link_rate, char *lane_count);
> + const char *link_rate, const char *lane_count);
> int i915_dp_get_max_supported_rate(int drm_fd, const igt_output_t *output);
> +int i915_dp_get_next_lower_rate(int drm_fd, igt_output_t *output, int rate);
> +bool i915_dp_is_uhbr_rate(int link_rate);
>
> #endif
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests
2026-08-05 8:44 ` [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests Sowmiya S
@ 2026-08-10 4:53 ` Joshi, Kunal1
2026-08-10 6:56 ` S, Sowmiya
0 siblings, 1 reply; 11+ messages in thread
From: Joshi, Kunal1 @ 2026-08-10 4:53 UTC (permalink / raw)
To: Sowmiya S, igt-dev; +Cc: karthik.b.s
Hello Sowmiya,
On 05-08-2026 14:14, Sowmiya S wrote:
> traversed_mst_output_count is file-static and was never reset between
> subtests. In a full-binary run the count from dp-fallback causes
> setup_mst_outputs() to skip all MST outputs in subsequent subtests.
>
> Reset it at the top of run_lt_fallback_test(). The DSC path never
> reaches setup_mst_outputs() so run_dsc_sst_fallaback_test() does not
> need the reset.
In the tree this patch applies to there are exactly two subtests,
dp-fallback
and dsc-fallback. setup_mst_outputs() is only reachable from setup_outputs()
(tests/intel/kms_dp_linktrain_fallback.c:184), setup_outputs() is only
called
from test_fallback() (:365), and test_fallback() is only called from
run_lt_fallback_test(). So run_lt_fallback_test() is the only path that ever
touches traversed_mst_output_count, and igt_main() calls it exactly
once. The
counter starts at 0 (file-static), and as you say yourself in the next
paragraph the DSC path never reaches setup_mst_outputs().
So "the count from dp-fallback causes setup_mst_outputs() to skip all MST
outputs in subsequent subtests" describes something that cannot happen, and
this patch is a no-op standalone. It only becomes live in 3/3, where
run_lt_fallback_test() acquires a second caller.
That is fine for a prep patch - please just say so:
run_lt_fallback_test() tracks which MST outputs it has already
traversed in a file-static counter that is never cleared. Today it
has a single caller so the counter is implicitly zero, but a second
caller would silently inherit the first run's state and skip every
MST sibling as "already visited".
Reset the counter on entry so the function is safe to call more
than
once per binary. The DSC path never reaches setup_mst_outputs(), so
run_dsc_sst_fallaback_test() does not need the same treatment.
Thanks and Regards
Kunal Joshi
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> ---
> tests/intel/kms_dp_linktrain_fallback.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/tests/intel/kms_dp_linktrain_fallback.c b/tests/intel/kms_dp_linktrain_fallback.c
> index 115183d2d..44b875ab9 100644
> --- a/tests/intel/kms_dp_linktrain_fallback.c
> +++ b/tests/intel/kms_dp_linktrain_fallback.c
> @@ -431,6 +431,13 @@ static bool run_lt_fallback_test(data_t *data)
> bool ran = false;
> igt_output_t *output;
>
> + /*
> + * Reset per invocation so MST traversal state from a previous subtest
> + * (e.g. dp-fallback followed by dsc-fallback) doesn't leak and cause
> + * MST siblings to be silently skipped as "already visited".
> + */
> + traversed_mst_output_count = 0;
> +
> for_each_connected_output(&data->display, output) {
> data->output = output;
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests
2026-08-10 4:53 ` Joshi, Kunal1
@ 2026-08-10 6:56 ` S, Sowmiya
0 siblings, 0 replies; 11+ messages in thread
From: S, Sowmiya @ 2026-08-10 6:56 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
Hi Kunal,
> -----Original Message-----
> From: Joshi, Kunal1 <kunal1.joshi@intel.com>
> Sent: 10 August 2026 10:24
> To: S, Sowmiya <sowmiya.s@intel.com>; igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>
> Subject: Re: [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST
> traversal state leak between subtests
>
> Hello Sowmiya,
>
> On 05-08-2026 14:14, Sowmiya S wrote:
> > traversed_mst_output_count is file-static and was never reset between
> > subtests. In a full-binary run the count from dp-fallback causes
> > setup_mst_outputs() to skip all MST outputs in subsequent subtests.
> >
> > Reset it at the top of run_lt_fallback_test(). The DSC path never
> > reaches setup_mst_outputs() so run_dsc_sst_fallaback_test() does not
> > need the reset.
> In the tree this patch applies to there are exactly two subtests, dp-fallback and
> dsc-fallback. setup_mst_outputs() is only reachable from setup_outputs()
> (tests/intel/kms_dp_linktrain_fallback.c:184), setup_outputs() is only called
> from test_fallback() (:365), and test_fallback() is only called from
> run_lt_fallback_test(). So run_lt_fallback_test() is the only path that ever
> touches traversed_mst_output_count, and igt_main() calls it exactly once. The
> counter starts at 0 (file-static), and as you say yourself in the next paragraph the
> DSC path never reaches setup_mst_outputs().
>
> So "the count from dp-fallback causes setup_mst_outputs() to skip all MST
> outputs in subsequent subtests" describes something that cannot happen, and
> this patch is a no-op standalone. It only becomes live in 3/3, where
> run_lt_fallback_test() acquires a second caller.
>
> That is fine for a prep patch - please just say so:
>
> run_lt_fallback_test() tracks which MST outputs it has already
> traversed in a file-static counter that is never cleared. Today it
> has a single caller so the counter is implicitly zero, but a second
> caller would silently inherit the first run's state and skip every
> MST sibling as "already visited".
>
> Reset the counter on entry so the function is safe to call more than
> once per binary. The DSC path never reaches setup_mst_outputs(), so
> run_dsc_sst_fallaback_test() does not need the same treatment.
>
>
> Thanks and Regards
> Kunal Joshi
>
I will correct the commit message as this is a no-op without 3/3 patch.
Regards,
Sowmiya.
> >
> > Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
> > ---
> > tests/intel/kms_dp_linktrain_fallback.c | 7 +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git a/tests/intel/kms_dp_linktrain_fallback.c
> b/tests/intel/kms_dp_linktrain_fallback.c
> > index 115183d2d..44b875ab9 100644
> > --- a/tests/intel/kms_dp_linktrain_fallback.c
> > +++ b/tests/intel/kms_dp_linktrain_fallback.c
> > @@ -431,6 +431,13 @@ static bool run_lt_fallback_test(data_t *data)
> > bool ran = false;
> > igt_output_t *output;
> >
> > + /*
> > + * Reset per invocation so MST traversal state from a previous subtest
> > + * (e.g. dp-fallback followed by dsc-fallback) doesn't leak and cause
> > + * MST siblings to be silently skipped as "already visited".
> > + */
> > + traversed_mst_output_count = 0;
> > +
> > for_each_connected_output(&data->display, output) {
> > data->output = output;
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-08-10 6:57 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-05 8:44 [PATCH i-g-t v3 0/3] kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
2026-08-05 8:44 ` [PATCH i-g-t v3 1/3] lib/i915/i915_dp: add UHBR helpers and const-correct set_link_params Sowmiya S
2026-08-10 4:39 ` Joshi, Kunal1
2026-08-05 8:44 ` [PATCH i-g-t v3 2/3] tests/intel/kms_dp_linktrain_fallback: fix MST traversal state leak between subtests Sowmiya S
2026-08-10 4:53 ` Joshi, Kunal1
2026-08-10 6:56 ` S, Sowmiya
2026-08-05 8:44 ` [PATCH i-g-t v3 3/3] tests/intel/kms_dp_linktrain_fallback: Add UHBR-to-HBR fallback subtest Sowmiya S
2026-08-05 23:05 ` ✓ Xe.CI.BAT: success for kms_dp_linktrain_fallback: " Patchwork
2026-08-05 23:19 ` ✓ i915.CI.BAT: " Patchwork
2026-08-06 8:24 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-06 10:29 ` ✗ 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