* [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with
@ 2025-03-06 18:59 Sk Anirban
2025-03-06 18:59 ` [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban
` (9 more replies)
0 siblings, 10 replies; 13+ messages in thread
From: Sk Anirban @ 2025-03-06 18:59 UTC (permalink / raw)
To: igt-dev; +Cc: sk.anirban
Leverage IGT spinner to trigger frequency scaling and
set RPS minimum frequency to RP0 for achieving peak frequency.
This method replaces the existing waitboost mechanism used
to reach maximum frequency.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Sk Anirban (2):
tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
HAX: Add rc6-idle tests to fast feedback list
tests/intel-ci/fast-feedback.testlist | 1 +
tests/intel/i915_pm_rc6_residency.c | 127 ++++++++++++++++++--------
2 files changed, 89 insertions(+), 39 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
@ 2025-03-06 18:59 ` Sk Anirban
2025-03-20 5:29 ` Riana Tauro
2025-03-06 18:59 ` [i-g-t,v3,2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban
` (8 subsequent siblings)
9 siblings, 1 reply; 13+ messages in thread
From: Sk Anirban @ 2025-03-06 18:59 UTC (permalink / raw)
To: igt-dev; +Cc: sk.anirban
Leverage IGT spinner to trigger frequency scaling and
set RPS minimum frequency to RP0 for achieving peak frequency.
This method replaces the existing waitboost mechanism used
to reach maximum frequency.
v2:
- Disable power consumption check for dgfx
v3:
- Implement igt exit handler
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 127 +++++++++++++++++++---------
1 file changed, 88 insertions(+), 39 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index c9128481d..7d31e2cc0 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd)
return false;
}
-static uint32_t batch_create(int fd)
-{
- const uint32_t bbe = MI_BATCH_BUFFER_END;
- uint32_t handle;
-
- handle = gem_create(fd, 4096);
- gem_write(fd, handle, 0, &bbe, sizeof(bbe));
-
- return handle;
-}
-
static int open_pmu(int i915, uint64_t config)
{
int fd;
@@ -286,45 +275,85 @@ static int open_pmu(int i915, uint64_t config)
return fd;
}
-#define WAITBOOST 0x1
+#define FREQUENT_BOOST 0x1
#define ONCE 0x2
static void sighandler(int sig)
{
}
-static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl)
+static uint32_t get_freq(int dirfd, uint8_t id)
+{
+ uint32_t val;
+
+ igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1);
+
+ return val;
+}
+
+static int set_freq(int dirfd, uint8_t id, uint32_t val)
+{
+ return igt_sysfs_rps_printf(dirfd, id, "%u", val);
+}
+
+uint32_t *stash_min;
+
+static void restore_freq(int sig)
+{
+ int i915 = -1;
+ int gt_num;
+ int dirfd;
+
+ i915 = drm_open_driver(DRIVER_INTEL);
+ for_each_sysfs_gt_dirfd(i915, dirfd, gt_num) {
+ igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min[gt_num]));
+ }
+ close(dirfd);
+}
+
+static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd, uint64_t engine_flags,
+ unsigned int flags, unsigned long *ctl, unsigned int gt)
{
const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8;
- struct drm_i915_gem_exec_object2 obj = {
- .handle = batch_create(i915),
- };
- struct drm_i915_gem_execbuffer2 execbuf = {
- .buffers_ptr = to_user_pointer(&obj),
- .buffer_count = 1,
- .flags = engine_flags,
- .rsvd1 = ctx_id,
- };
struct sigaction act = {
.sa_handler = sighandler
};
+ int64_t timeout = 1;
+ uint64_t ahnd;
+ int rp0;
+ ahnd = get_reloc_ahnd(i915, ctx->id);
+ rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ);
sigaction(SIGINT, &act, NULL);
do {
uint64_t submit, wait, elapsed;
struct timespec tv = {};
+ igt_spin_t *spin;
igt_nsec_elapsed(&tv);
-
- gem_execbuf(i915, &execbuf);
+ spin = igt_spin_new(i915,
+ .ahnd = ahnd,
+ .ctx = ctx,
+ .engine = engine_flags);
submit = igt_nsec_elapsed(&tv);
- if (flags & WAITBOOST) {
- gem_sync(i915, obj.handle);
+ if (flags & FREQUENT_BOOST) {
+ /* Set MIN freq to RP0 to achieve the peak freq */
+ igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0));
+ igt_assert(gem_bo_busy(i915, spin->handle));
+ gem_wait(i915, spin->handle, &timeout);
+
+ /* Restore the MIN freq back to default */
+ igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min[gt]));
+ igt_spin_end(spin);
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
if (flags & ONCE)
- flags &= ~WAITBOOST;
+ flags &= ~FREQUENT_BOOST;
} else {
- while (gem_bo_busy(i915, obj.handle))
- usleep(0);
+ igt_assert(gem_bo_busy(i915, spin->handle));
+ igt_spin_end(spin);
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
}
wait = igt_nsec_elapsed(&tv);
@@ -350,6 +379,7 @@ static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned i
/* aim for ~1% busy */
usleep(min_t(elapsed, elapsed / 10, 50 * 1000));
} while (!READ_ONCE(*ctl));
+ put_ahnd(ahnd);
}
static void kill_children(int sig)
@@ -361,25 +391,29 @@ static void kill_children(int sig)
signal(sig, old);
}
-static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
+static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t flags, unsigned int gt)
{
- const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
+ const int64_t duration_ns = 2 * SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
const int tolerance = 20; /* Some RC6 is better than none! */
const unsigned int gen = intel_gen(intel_get_drm_devid(i915));
+ int num_gts = igt_sysfs_get_num_gt(i915);
struct {
const char *name;
unsigned int flags;
double power;
} phases[] = {
+ { "once", FREQUENT_BOOST | ONCE },
{ "normal", 0 },
- { "boost", WAITBOOST },
- { "once", WAITBOOST | ONCE },
+ { "boost", FREQUENT_BOOST }
};
+ int dirfd = igt_sysfs_gt_open(i915, gt);
struct power_sample sample[2];
unsigned long slept, cycles;
unsigned long *done;
uint64_t rc6, ts[2];
struct igt_power gpu;
+ int sysfs_dirfd;
+ int gt_num;
int fd;
fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
@@ -409,10 +443,16 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+ stash_min = (uint32_t *)malloc(sizeof(uint32_t) * num_gts);
+ for_each_sysfs_gt_dirfd(i915, sysfs_dirfd, gt_num) {
+ stash_min[gt_num] = get_freq(sysfs_dirfd, RPS_MIN_FREQ_MHZ);
+ igt_pm_ignore_slpc_efficient_freq(i915, sysfs_dirfd, true);
+ }
+
for (int p = 0; p < ARRAY_SIZE(phases); p++) {
memset(done, 0, 2 * sizeof(*done));
igt_fork(child, 1) /* Setup up a very light load */
- bg_load(i915, ctx_id, flags, phases[p].flags, done);
+ bg_load(i915, ctx, dirfd, flags, phases[p].flags, done, gt);
igt_power_get_energy(&gpu, &sample[0]);
cycles = -READ_ONCE(done[1]);
@@ -451,15 +491,17 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
munmap(done, 4096);
close(fd);
+ close(dirfd);
+ close(sysfs_dirfd);
igt_power_close(&gpu);
- if (phases[1].power - phases[0].power > 10) {
- igt_assert_f(2 * phases[2].power - phases[0].power <= phases[1].power,
+ if (phases[2].power - phases[1].power > 20 && !gt && !gem_has_lmem(i915)) {
+ igt_assert_f(2 * phases[0].power - phases[1].power <= phases[2].power,
"Exceeded energy expectations for single busy wait load\n"
"Used %.1fmW, min %.1fmW, max %.1fmW, expected less than %.1fmW\n",
- phases[2].power, phases[0].power, phases[1].power,
- phases[0].power + (phases[1].power - phases[0].power) / 2);
+ phases[0].power, phases[1].power, phases[2].power,
+ phases[1].power + (phases[2].power - phases[1].power) / 2);
}
}
@@ -577,6 +619,8 @@ igt_main
/* Use drm_open_driver to verify device existence */
igt_fixture {
i915 = drm_open_driver(DRIVER_INTEL);
+ intel_allocator_multiprocess_start();
+ igt_install_exit_handler(restore_freq);
}
igt_subtest_with_dynamic("rc6-idle") {
@@ -590,13 +634,18 @@ igt_main
for_each_ctx_engine(i915, ctx, e) {
if (e->instance == 0) {
igt_dynamic_f("gt%u-%s", gt, e->name)
- rc6_idle(i915, ctx->id, e->flags, gt);
+ rc6_idle(i915, ctx, e->flags, gt);
}
}
intel_ctx_destroy(i915, ctx);
}
}
+ igt_fixture
+ {
+ intel_allocator_multiprocess_stop();
+ }
+
igt_subtest_with_dynamic("rc6-fence") {
igt_require_gem(i915);
gem_quiescent_gpu(i915);
--
2.34.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [i-g-t,v3,2/2] HAX: Add rc6-idle tests to fast feedback list
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
2025-03-06 18:59 ` [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban
@ 2025-03-06 18:59 ` Sk Anirban
2025-03-07 3:09 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev4) Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Sk Anirban @ 2025-03-06 18:59 UTC (permalink / raw)
To: igt-dev; +Cc: sk.anirban
Add pm_rc6_residency-rc6@idle to i915-fast-feedback
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..f37dbf769 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -51,6 +51,7 @@ igt@gem_tiled_fence_blits@basic
igt@gem_tiled_pread_basic
igt@gem_wait@busy@all-engines
igt@gem_wait@wait@all-engines
+igt@i915_pm_rc6_residency@rc6-idle
igt@i915_getparams_basic@basic-eu-total
igt@i915_getparams_basic@basic-subslice-total
igt@i915_hangman@error-state-basic
--
2.34.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
2025-03-06 18:59 ` [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban
2025-03-06 18:59 ` [i-g-t,v3,2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban
@ 2025-03-07 3:09 ` Patchwork
2025-03-07 3:27 ` ✗ i915.CI.BAT: failure " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-07 3:09 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 991 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
URL : https://patchwork.freedesktop.org/series/141759/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8264_BAT -> XEIGTPW_12721_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8264 -> IGTPW_12721
* Linux: xe-2769-6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3 -> xe-2770-9796125d0726448924abdb8c73077c7486e3dd3d
IGTPW_12721: 12721
IGT_8264: 8264
xe-2769-6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3: 6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3
xe-2770-9796125d0726448924abdb8c73077c7486e3dd3d: 9796125d0726448924abdb8c73077c7486e3dd3d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/index.html
[-- Attachment #2: Type: text/html, Size: 1550 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (2 preceding siblings ...)
2025-03-07 3:09 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev4) Patchwork
@ 2025-03-07 3:27 ` Patchwork
2025-03-07 14:05 ` ✗ Xe.CI.Full: " Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-07 3:27 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10978 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8264 -> IGTPW_12721
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12721 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12721, 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_12721/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-arlh-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12721:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rc6_residency@rc6-idle:
- fi-bsw-n3050: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-bsw-n3050/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-bsw-nick: NOTRUN -> [ABORT][2] +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0:
- bat-arlh-3: NOTRUN -> [FAIL][3] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-3/igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0.html
Known issues
------------
Here are the changes found in IGTPW_12721 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11346] / [i915#9318])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11345] / [i915#11346]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#11346] / [i915#1849])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#11343] / [i915#11346])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#11346] / [i915#12637]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#10206] / [i915#11346] / [i915#11724])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][12] -> [DMESG-WARN][13] ([i915#13494])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8264/bat-mtlp-9/igt@i915_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-ilk-650: NOTRUN -> [SKIP][14] +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-blb-e6850: NOTRUN -> [SKIP][15] +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-pnv-d510: NOTRUN -> [SKIP][16] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- fi-elk-e7500: NOTRUN -> [SKIP][17] +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#10209] / [i915#11346] / [i915#11681])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-twl-2: [PASS][19] -> [INCOMPLETE][20] ([i915#12445] / [i915#13776])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8264/bat-twl-2/igt@i915_selftest@live.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@perf:
- bat-twl-2: [PASS][21] -> [INCOMPLETE][22] ([i915#12445])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8264/bat-twl-2/igt@i915_selftest@live@perf.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-twl-2/igt@i915_selftest@live@perf.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][25] ([i915#11346]) +32 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#10208] / [i915#11346] / [i915#8809])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][27] ([i915#10212] / [i915#11346] / [i915#11726])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#10214] / [i915#11346] / [i915#11726])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][29] ([i915#10216] / [i915#11346] / [i915#11723])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- bat-twl-2: [DMESG-WARN][30] ([i915#13736]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8264/bat-twl-2/igt@i915_module_load@reload.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-twl-2/igt@i915_module_load@reload.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][32] ([i915#12061]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8264/bat-arls-5/igt@i915_selftest@live@workarounds.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13736]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736
[i915#13776]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13776
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8264 -> IGTPW_12721
* Linux: CI_DRM_16237 -> CI_DRM_16238
CI-20190529: 20190529
CI_DRM_16237: 6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16238: 9796125d0726448924abdb8c73077c7486e3dd3d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12721: 12721
IGT_8264: 8264
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12721/index.html
[-- Attachment #2: Type: text/html, Size: 13655 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (3 preceding siblings ...)
2025-03-07 3:27 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-03-07 14:05 ` Patchwork
2025-03-07 22:31 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-07 14:05 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 102703 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev4)
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8264_full -> XEIGTPW_12721_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12721_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12721_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12721_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_ccs@suspend-resume:
- shard-lnl: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_ccs@suspend-resume.html
Known issues
------------
Here are the changes found in XEIGTPW_12721_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1465])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_3d.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#3767]) +15 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#2550] / [Intel XE#3767]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3279])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +10 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#607]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#607]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1477]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +16 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2191])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1512])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +30 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +22 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +58 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2669]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][31] ([Intel XE#3862]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#3432])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +199 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4418])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4417]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#4417]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#306])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +19 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#1178])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#307]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#307])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2390]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2341])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1188]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_content_protection@uevent.html
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3278]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2320]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2321]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2286]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2291]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#323])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4302])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4302])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#4354])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@kms_dp_link_training@non-uhbr-sst.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4354]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4354]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#4356]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#4331])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_dp_linktrain_fallback@dp-fallback.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2244]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2244])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4422])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4422])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4422])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#701])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2375])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2374])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_feature_discovery@psr2.html
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1135])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1421]) +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#310]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_flip@2x-dpms-vs-vblank-race.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2316]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301]) +3 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#310]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#301]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#2049] / [Intel XE#2597])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][93] ([Intel XE#2049] / [Intel XE#2597])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][94] ([Intel XE#2049])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#886]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#2882]) +2 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1397]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2380]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#352]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#651]) +19 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#651]) +29 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2311]) +44 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#656]) +9 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4141]) +20 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#656]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#656]) +56 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2313]) +42 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2352])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#4439])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4439])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2312]) +27 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#653]) +40 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#605])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2340])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#346])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#346])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#346])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2934])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2925])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#4090])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2486])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: NOTRUN -> [DMESG-FAIL][130] ([Intel XE#324]) +2 other tests dmesg-fail
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- shard-lnl: NOTRUN -> [DMESG-WARN][131] ([Intel XE#324]) +3 other tests dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#616]) +3 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][133] -> [INCOMPLETE][134] ([Intel XE#4089] / [Intel XE#4392])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_plane_lowres@tiling-x.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][135] ([Intel XE#4089] / [Intel XE#4392])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@kms_plane_lowres@tiling-x@pipe-a-dp-2.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2493])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#309]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [ABORT][139] ([Intel XE#2705])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [ABORT][140] ([Intel XE#4502])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +17 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +9 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2763]) +24 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2938])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#870]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#870]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1122]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1131])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][150] ([Intel XE#1430])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2392])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1129])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#836])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1439] / [Intel XE#3141])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1489]) +9 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2893]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1489]) +16 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1128])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2387])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1406]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2414])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2939])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rmfb@close-fd@pipe-a-edp-1:
- shard-lnl: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#324])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@kms_rmfb@close-fd@pipe-a-edp-1.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_rmfb@close-fd@pipe-a-edp-1.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2330])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1127]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1127])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#3414])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#3414] / [Intel XE#3904])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2413])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][175] -> [FAIL][176] ([Intel XE#2883]) +2 other tests fail
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@kms_setmode@basic.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1435])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2-set2: [PASS][178] -> [SKIP][179] ([Intel XE#455])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@kms_setmode@clone-exclusive-crtc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#455]) +17 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2168]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2168]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#1499]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1499]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#756]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#756])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#756]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#1091] / [Intel XE#2849])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#1091] / [Intel XE#2849])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1091] / [Intel XE#2849])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [DMESG-WARN][191] ([Intel XE#3876]) +1 other test dmesg-warn
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#1123])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_eu_stall@unprivileged-access:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#4497])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#2905]) +12 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#3889])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#3889]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2905]) +18 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#688]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2322]) +16 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-dg2-set2: [PASS][201] -> [SKIP][202] ([Intel XE#1392]) +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#1392]) +13 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#1392])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#288]) +33 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#2360])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#2905]) +11 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#255])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2833])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2229])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#2229])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236]) -> ([PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [SKIP][261], [PASS][262]) ([Intel XE#378])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-7/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-7/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-7/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-5/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-5/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-5/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-5/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-8/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-4/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-1/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-8/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-4/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-6/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280]) -> ([PASS][281], [PASS][282], [PASS][283], [SKIP][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300]) ([Intel XE#2457])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325]) -> ([PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [SKIP][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350]) ([Intel XE#378])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_module_load@load.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][351] ([Intel XE#2248])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][352] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@syncs-syncobj-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][353] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_oa@syncs-syncobj-wait-cfg.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][354] ([Intel XE#977])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][355] ([Intel XE#2236])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][356] ([Intel XE#1061])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_peer2peer@write.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][357] ([Intel XE#1173]) +1 other test fail
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][358] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][359] ([Intel XE#2284] / [Intel XE#366])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][360] ([Intel XE#2284])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][361] ([Intel XE#2284])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][362] ([Intel XE#2284]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][363] ([Intel XE#584]) +3 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-mocs:
- shard-bmg: NOTRUN -> [ABORT][364] ([Intel XE#4268]) +2 other tests abort
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_pm@s4-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][365] ([Intel XE#579])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-lnl: NOTRUN -> [SKIP][366] ([Intel XE#944])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-4/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][367] ([Intel XE#944]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][368] ([Intel XE#4130])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][369] ([Intel XE#4130])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-3/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: NOTRUN -> [SKIP][370] ([Intel XE#4130]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-bmg: NOTRUN -> [SKIP][371] ([Intel XE#4351])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][372] ([Intel XE#911]) -> [PASS][373] +3 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: [SKIP][374] ([Intel XE#2191]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][376] ([Intel XE#2291]) -> [PASS][377] +3 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-dg2-set2: [SKIP][378] ([Intel XE#309]) -> [PASS][379] +3 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][380] ([Intel XE#2316]) -> [PASS][381] +3 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg2-set2: [SKIP][382] ([Intel XE#310]) -> [PASS][383] +1 other test pass
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-433/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: [FAIL][384] ([Intel XE#301]) -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-bmg: [INCOMPLETE][386] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [FAIL][388] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][389] +1 other test pass
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][390] ([Intel XE#656]) -> [PASS][391] +3 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: [FAIL][392] ([Intel XE#616]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_plane_cursor@overlay.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@kms_plane_cursor@overlay.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][394] ([Intel XE#718]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][396] ([Intel XE#836]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][400] ([Intel XE#1435]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [SKIP][402] ([Intel XE#1392]) -> [PASS][403] +5 other tests pass
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_threads@threads-bal-mixed-userptr-rebind:
- shard-dg2-set2: [INCOMPLETE][404] ([Intel XE#1169]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-lnl: [DMESG-WARN][406] -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-lnl-3/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-lnl-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
- shard-bmg: [DMESG-WARN][408] -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][410] ([Intel XE#455] / [Intel XE#787]) -> [INCOMPLETE][411] ([Intel XE#2594])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][412] ([Intel XE#787]) -> [SKIP][413] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][414] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][415] ([Intel XE#787]) +8 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [SKIP][416] ([Intel XE#455]) -> [FAIL][417] ([Intel XE#1178])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_content_protection@atomic.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][418] ([Intel XE#1178]) -> [SKIP][419] ([Intel XE#455])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][420] ([Intel XE#3321]) -> [SKIP][421] ([Intel XE#2316])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][422] ([Intel XE#651]) -> [SKIP][423] ([Intel XE#656]) +12 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][424] ([Intel XE#2312]) -> [SKIP][425] ([Intel XE#2311]) +4 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][426] ([Intel XE#4141]) -> [SKIP][427] ([Intel XE#2312]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][428] ([Intel XE#2312]) -> [SKIP][429] ([Intel XE#4141]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][430] ([Intel XE#656]) -> [SKIP][431] ([Intel XE#651]) +7 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][432] ([Intel XE#2311]) -> [SKIP][433] ([Intel XE#2312]) +7 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][434] ([Intel XE#2312]) -> [SKIP][435] ([Intel XE#2313]) +5 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][436] ([Intel XE#653]) -> [SKIP][437] ([Intel XE#656]) +13 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][438] ([Intel XE#656]) -> [SKIP][439] ([Intel XE#653]) +10 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][440] ([Intel XE#2313]) -> [SKIP][441] ([Intel XE#2312]) +6 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [INCOMPLETE][442] ([Intel XE#2566]) -> [SKIP][443] ([Intel XE#2763] / [Intel XE#455])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: [INCOMPLETE][444] ([Intel XE#2566]) -> [SKIP][445] ([Intel XE#2763])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][446] ([Intel XE#362]) -> [SKIP][447] ([Intel XE#1500])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8264/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4089
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4392
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4439
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4502
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8264 -> IGTPW_12721
* Linux: xe-2769-6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3 -> xe-2770-9796125d0726448924abdb8c73077c7486e3dd3d
IGTPW_12721: 12721
IGT_8264: 8264
xe-2769-6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3: 6f2e5afc45e3ca8bf46427ae21a9c1029ea6cdb3
xe-2770-9796125d0726448924abdb8c73077c7486e3dd3d: 9796125d0726448924abdb8c73077c7486e3dd3d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12721/index.html
[-- Attachment #2: Type: text/html, Size: 118844 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (4 preceding siblings ...)
2025-03-07 14:05 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-07 22:31 ` Patchwork
2025-03-07 22:53 ` ✗ i915.CI.BAT: failure " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-07 22:31 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2542 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
URL : https://patchwork.freedesktop.org/series/141759/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8265_BAT -> XEIGTPW_12725_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12725_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_mmap@vram:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#1008])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/bat-adlp-vf/igt@xe_mmap@vram.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2468])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-adlp-vf: NOTRUN -> [SKIP][3] ([Intel XE#3342])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/bat-adlp-vf/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-one-partial:
- bat-adlp-vf: NOTRUN -> [ABORT][4] ([Intel XE#4491])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/bat-adlp-vf/igt@xe_vm@munmap-style-unbind-one-partial.html
#### Possible fixes ####
* igt@xe_intel_bb@render@render-xmajor-256:
- bat-adlp-vf: [ABORT][5] ([Intel XE#4491]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/bat-adlp-vf/igt@xe_intel_bb@render@render-xmajor-256.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/bat-adlp-vf/igt@xe_intel_bb@render@render-xmajor-256.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#4491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4491
Build changes
-------------
* IGT: IGT_8265 -> IGTPW_12725
IGTPW_12725: 12725
IGT_8265: bfefe166535d69ca10d32e6ba0093260df21ee3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2778-f811577f424491a57b1e8669bde62998227d6907: f811577f424491a57b1e8669bde62998227d6907
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/index.html
[-- Attachment #2: Type: text/html, Size: 3282 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (5 preceding siblings ...)
2025-03-07 22:31 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5) Patchwork
@ 2025-03-07 22:53 ` Patchwork
2025-03-09 5:28 ` ✗ Xe.CI.Full: " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-07 22:53 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5743 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8265 -> IGTPW_12725
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12725 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12725, 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_12725/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12725:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rc6_residency@rc6-idle:
- fi-bsw-n3050: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-bsw-n3050/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-bsw-nick: NOTRUN -> [ABORT][2] +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-apl-1: NOTRUN -> [ABORT][3] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-apl-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
Known issues
------------
Here are the changes found in IGTPW_12725 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][4] -> [DMESG-WARN][5] ([i915#13494])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-9/igt@i915_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rc6_residency@rc6-idle:
- fi-tgl-1115g4: NOTRUN -> [WARN][6] ([i915#13790] / [i915#2681]) +4 other tests warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-tgl-1115g4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-ilk-650: NOTRUN -> [SKIP][7] +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-blb-e6850: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-pnv-d510: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- fi-elk-e7500: NOTRUN -> [SKIP][10] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@workarounds:
- bat-adlp-6: [PASS][11] -> [ABORT][12] ([i915#13696]) +1 other test abort
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-adlp-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-adlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-arls-5/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8265 -> IGTPW_12725
CI-20190529: 20190529
CI_DRM_16246: f811577f424491a57b1e8669bde62998227d6907 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12725: 12725
IGT_8265: bfefe166535d69ca10d32e6ba0093260df21ee3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/index.html
[-- Attachment #2: Type: text/html, Size: 6835 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (6 preceding siblings ...)
2025-03-07 22:53 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-03-09 5:28 ` Patchwork
2025-03-11 14:21 ` ✓ i915.CI.BAT: success " Patchwork
2025-03-12 9:30 ` ✓ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-09 5:28 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 78590 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8265_full -> XEIGTPW_12725_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12725_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12725_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12725_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
Known issues
------------
Here are the changes found in XEIGTPW_12725_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][2] -> [FAIL][3] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#3701] / [Intel XE#827])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#3767]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3279])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2370])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3658])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#607])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +10 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +15 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2191]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#2191])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1512]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +10 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2669]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +22 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +113 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +19 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
- shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#3124])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#3124])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#1727] / [Intel XE#3113]) +1 other test dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4418])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#4417]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#306])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#373]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2390])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3278]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +3 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2341])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2320]) +7 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2321]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2291]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#309]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2286]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#309]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4210])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#4354])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4354])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4331])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2244]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2244]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4422])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4156])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#776])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2373])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1138])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2374])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#310]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1421]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#2882]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2316]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][89] -> [FAIL][90] ([Intel XE#3321]) +3 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][91] ([Intel XE#3321]) +4 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#310]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_flip@2x-plain-flip.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [TIMEOUT][94] ([Intel XE#1504]) +1 other test timeout
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][95] ([Intel XE#301]) +3 other tests fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#301])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#301] / [Intel XE#3149])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2380]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-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-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1401]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#352])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +44 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) +20 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#656]) +27 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#4141]) +22 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#656]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-lnl: [PASS][112] -> [DMESG-WARN][113] ([Intel XE#2932])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#658])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2352])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#651]) +20 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#651]) +15 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1469]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#653]) +19 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2313]) +39 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#656]) +35 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2340])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_getfb@getfb2-accept-ccs.html
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2340])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1470])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3544])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1503]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1450] / [Intel XE#2568])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1450]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#4328])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#4298])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2927])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2927])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#346])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2934])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2501])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#356])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#356])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2486])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][140] ([Intel XE#616]) +2 other tests fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2493])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#309]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][143] ([Intel XE#2566])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2763]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-dg2-set2: [PASS][145] -> [INCOMPLETE][146] ([Intel XE#2566]) +1 other test incomplete
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#870])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2391])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#836])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#836])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1439] / [Intel XE#836])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#836])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-432/igt@kms_pm_rpm@dpms-non-lpsp.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#1489]) +10 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1489]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2893]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1128]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1122]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2387]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1406]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-5/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2234])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#3414]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#3414] / [Intel XE#3904])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2330])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2413])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1435])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2426])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#362])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#362])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#455]) +16 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#1499]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2-set2: [PASS][176] -> [SKIP][177] ([Intel XE#455])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_vrr@negative-basic.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#756])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#756]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#1091] / [Intel XE#2849])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#1091] / [Intel XE#2849])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#1447])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1123])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2905]) +12 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@multigpu-basic-client-many:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#2905]) +8 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@xe_eudebug@multigpu-basic-client-many.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2905]) +13 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-large-external:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#688]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@xe_evict@evict-large-external.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2322]) +12 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1392]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#288]) +29 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2459] / [Intel XE#2596])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#512])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-5/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#2457])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#378])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_module_load@force-load.html
- shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#378])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-8/igt@xe_module_load@force-load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#4501])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_oa@buffer-size.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-syncobj-none:
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_oa@syncs-syncobj-none.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#1337])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#1420])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2284]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-3/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: NOTRUN -> [ABORT][205] ([Intel XE#4268])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][206] ([Intel XE#4268])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: NOTRUN -> [ABORT][207] ([Intel XE#4268]) +1 other test abort
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#579])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#584])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@xe_pm_residency@cpg-basic.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#944])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#944]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#944])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#4130]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#4130]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-6/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#4130]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-8/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#4273])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#4273])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#4351]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][219] ([Intel XE#911]) -> [PASS][220] +3 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][221] ([Intel XE#2191]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][223] ([Intel XE#2291]) -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-set2: [SKIP][225] ([Intel XE#309]) -> [PASS][226] +3 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-set2: [SKIP][227] ([Intel XE#4331]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][229] ([Intel XE#2373]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][231] ([Intel XE#2316]) -> [PASS][232] +1 other test pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2-set2: [SKIP][233] ([Intel XE#310]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][235] ([Intel XE#301]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [FAIL][237] ([Intel XE#301]) -> [PASS][238] +2 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [FAIL][239] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp2:
- shard-bmg: [FAIL][241] ([Intel XE#3321]) -> [PASS][242] +2 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-lnl: [FAIL][243] ([Intel XE#886]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][245] ([Intel XE#656]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][247] ([Intel XE#616]) -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_plane_cursor@viewport.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_plane_cursor@viewport.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1392]) -> [PASS][250] +3 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][251] ([Intel XE#787]) -> [SKIP][252] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][253] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][254] ([Intel XE#787]) +7 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][255] ([Intel XE#1727] / [Intel XE#2705]) -> [INCOMPLETE][256] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][257] ([Intel XE#4418]) -> [SKIP][258] ([Intel XE#4440])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][259] ([Intel XE#301]) -> [FAIL][260] ([Intel XE#301] / [Intel XE#3149])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][261] ([Intel XE#651]) -> [SKIP][262] ([Intel XE#656]) +16 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][263] ([Intel XE#2311]) -> [SKIP][264] ([Intel XE#2312]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][265] ([Intel XE#4141]) -> [SKIP][266] ([Intel XE#2312]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][267] ([Intel XE#2312]) -> [SKIP][268] ([Intel XE#4141]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][269] ([Intel XE#2312]) -> [SKIP][270] ([Intel XE#2311]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][271] ([Intel XE#656]) -> [SKIP][272] ([Intel XE#651]) +5 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][273] ([Intel XE#656]) -> [SKIP][274] ([Intel XE#653]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][275] ([Intel XE#2313]) -> [SKIP][276] ([Intel XE#2312]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][277] ([Intel XE#653]) -> [SKIP][278] ([Intel XE#656]) +16 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][279] ([Intel XE#2312]) -> [SKIP][280] ([Intel XE#2313]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8265/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4440
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8265 -> IGTPW_12725
IGTPW_12725: 12725
IGT_8265: bfefe166535d69ca10d32e6ba0093260df21ee3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2778-f811577f424491a57b1e8669bde62998227d6907: f811577f424491a57b1e8669bde62998227d6907
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12725/index.html
[-- Attachment #2: Type: text/html, Size: 92309 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (7 preceding siblings ...)
2025-03-09 5:28 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-11 14:21 ` Patchwork
2025-03-12 9:30 ` ✓ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-11 14:21 UTC (permalink / raw)
To: Sk Anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5269 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
URL : https://patchwork.freedesktop.org/series/141759/
State : success
== Summary ==
CI Bug Log - changes from IGT_8265 -> IGTPW_12725
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12725 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rc6_residency@rc6-idle:
- fi-tgl-1115g4: NOTRUN -> [WARN][3] ([i915#13790] / [i915#2681]) +4 other tests warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-tgl-1115g4/igt@i915_pm_rc6_residency@rc6-idle.html
- fi-bsw-n3050: NOTRUN -> [ABORT][4] ([i915#13895]) +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-bsw-n3050/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-ilk-650: NOTRUN -> [SKIP][5] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-blb-e6850: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-bsw-nick: NOTRUN -> [ABORT][7] ([i915#13895]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-pnv-d510: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-apl-1: NOTRUN -> [ABORT][9] ([i915#13895]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-apl-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- fi-elk-e7500: NOTRUN -> [SKIP][10] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@workarounds:
- bat-adlp-6: [PASS][11] -> [ABORT][12] ([i915#13696]) +1 other test abort
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-adlp-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-adlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-arls-5/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13696]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13696
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13895]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13895
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8265 -> IGTPW_12725
CI-20190529: 20190529
CI_DRM_16246: f811577f424491a57b1e8669bde62998227d6907 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12725: 12725
IGT_8265: bfefe166535d69ca10d32e6ba0093260df21ee3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/index.html
[-- Attachment #2: Type: text/html, Size: 6439 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.Full: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
` (8 preceding siblings ...)
2025-03-11 14:21 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-03-12 9:30 ` Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-03-12 9:30 UTC (permalink / raw)
To: Anirban, Sk; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 41783 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with (rev5)
URL : https://patchwork.freedesktop.org/series/141759/
State : success
== Summary ==
CI Bug Log - changes from IGT_8265_full -> IGTPW_12725_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/index.html
Participating hosts (10 -> 12)
------------------------------
Additional (2): shard-snb-0 shard-dg2-set2
Known issues
------------
Here are the changes found in IGTPW_12725_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- shard-snb: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) -> ([SKIP][26], [SKIP][27], [SKIP][28], [SKIP][29], [SKIP][30], [SKIP][31], [SKIP][32], [SKIP][33], [SKIP][34], [SKIP][35], [SKIP][36], [SKIP][37], [SKIP][38], [SKIP][39], [SKIP][40], [SKIP][41], [SKIP][42], [SKIP][43], [SKIP][44], [SKIP][45], [SKIP][46], [SKIP][47], [SKIP][48], [SKIP][49], [SKIP][50])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb2/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb7/igt@i915_module_load@load.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb7/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb7/igt@i915_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb7/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb7/igt@i915_module_load@load.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb6/igt@i915_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb6/igt@i915_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb6/igt@i915_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb6/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb2/igt@i915_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb6/igt@i915_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb2/igt@i915_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb5/igt@i915_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb2/igt@i915_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb5/igt@i915_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb2/igt@i915_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb5/igt@i915_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb4/igt@i915_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb5/igt@i915_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb5/igt@i915_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb4/igt@i915_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb4/igt@i915_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb4/igt@i915_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-snb4/igt@i915_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb7/igt@i915_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb5/igt@i915_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-snb6/igt@i915_module_load@load.html
- shard-tglu-1: ([PASS][51], [PASS][52], [PASS][53]) -> ([SKIP][54], [SKIP][55], [SKIP][56]) ([i915#13896])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-1/igt@i915_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-1/igt@i915_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-1/igt@i915_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-1/igt@i915_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-1/igt@i915_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-1/igt@i915_module_load@load.html
- shard-dg1: ([PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81]) -> ([SKIP][82], [SKIP][83], [SKIP][84], [SKIP][85], [SKIP][86], [SKIP][87], [SKIP][88], [SKIP][89], [SKIP][90], [SKIP][91], [SKIP][92], [SKIP][93], [SKIP][94], [SKIP][95], [SKIP][96], [SKIP][97], [SKIP][98], [SKIP][99], [SKIP][100], [SKIP][101], [SKIP][102], [SKIP][103], [SKIP][104], [SKIP][105], [SKIP][106]) ([i915#13896])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-14/igt@i915_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-16/igt@i915_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-16/igt@i915_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-13/igt@i915_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-14/igt@i915_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-16/igt@i915_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-13/igt@i915_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-15/igt@i915_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-17/igt@i915_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-14/igt@i915_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-13/igt@i915_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-17/igt@i915_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-15/igt@i915_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-12/igt@i915_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-19/igt@i915_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-19/igt@i915_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-12/igt@i915_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-19/igt@i915_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-17/igt@i915_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-15/igt@i915_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-18/igt@i915_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-12/igt@i915_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-12/igt@i915_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-18/igt@i915_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg1-18/igt@i915_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-16/igt@i915_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-19/igt@i915_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-19/igt@i915_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-19/igt@i915_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-19/igt@i915_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-18/igt@i915_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-18/igt@i915_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-18/igt@i915_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-18/igt@i915_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-17/igt@i915_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-17/igt@i915_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-17/igt@i915_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-16/igt@i915_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-16/igt@i915_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-15/igt@i915_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-15/igt@i915_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-15/igt@i915_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-13/igt@i915_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-12/igt@i915_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-13/igt@i915_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-12/igt@i915_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-12/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-13/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-13/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg1-12/igt@i915_module_load@load.html
- shard-tglu: ([PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128]) -> ([SKIP][129], [SKIP][130], [SKIP][131], [SKIP][132], [SKIP][133], [SKIP][134], [SKIP][135], [SKIP][136], [SKIP][137], [SKIP][138], [SKIP][139], [SKIP][140], [SKIP][141], [SKIP][142], [SKIP][143], [SKIP][144], [SKIP][145], [SKIP][146], [SKIP][147], [SKIP][148], [SKIP][149], [SKIP][150]) ([i915#13896])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-8/igt@i915_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-7/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-10/igt@i915_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-8/igt@i915_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-6/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-9/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-2/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-7/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-2/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-3/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-9/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-6/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-3/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-8/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-3/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-5/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-4/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-4/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-4/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-7/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-5/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-tglu-5/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-4/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-3/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-2/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-9/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-2/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-7/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-2/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-7/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-3/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-9/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-10/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-10/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-10/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-3/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-7/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-6/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-8/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-5/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-4/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-5/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-9/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-tglu-4/igt@i915_module_load@load.html
- shard-glk: ([PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172]) -> ([SKIP][173], [SKIP][174], [SKIP][175], [SKIP][176], [SKIP][177], [SKIP][178], [SKIP][179], [SKIP][180], [SKIP][181], [SKIP][182], [SKIP][183], [SKIP][184], [SKIP][185], [SKIP][186], [SKIP][187], [SKIP][188], [SKIP][189], [SKIP][190], [SKIP][191], [SKIP][192], [SKIP][193], [SKIP][194], [SKIP][195], [SKIP][196], [SKIP][197])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk9/igt@i915_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk9/igt@i915_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk9/igt@i915_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk8/igt@i915_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk8/igt@i915_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk8/igt@i915_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk7/igt@i915_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk7/igt@i915_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk6/igt@i915_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk6/igt@i915_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk5/igt@i915_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk5/igt@i915_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk5/igt@i915_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk3/igt@i915_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk3/igt@i915_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk1/igt@i915_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk3/igt@i915_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk1/igt@i915_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk2/igt@i915_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk2/igt@i915_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk1/igt@i915_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-glk1/igt@i915_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk1/igt@i915_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk1/igt@i915_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk1/igt@i915_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk1/igt@i915_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk3/igt@i915_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk3/igt@i915_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk3/igt@i915_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk3/igt@i915_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk4/igt@i915_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk4/igt@i915_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk4/igt@i915_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk5/igt@i915_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk5/igt@i915_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk5/igt@i915_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk6/igt@i915_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk6/igt@i915_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk6/igt@i915_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk6/igt@i915_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk8/igt@i915_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk8/igt@i915_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk8/igt@i915_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk9/igt@i915_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk9/igt@i915_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk9/igt@i915_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-glk9/igt@i915_module_load@load.html
- shard-mtlp: ([PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222]) -> ([SKIP][223], [SKIP][224], [SKIP][225], [SKIP][226], [SKIP][227], [SKIP][228], [SKIP][229], [SKIP][230], [SKIP][231], [SKIP][232], [SKIP][233], [SKIP][234], [SKIP][235], [SKIP][236], [SKIP][237], [SKIP][238], [SKIP][239], [SKIP][240], [SKIP][241], [SKIP][242], [SKIP][243], [SKIP][244], [SKIP][245], [SKIP][246]) ([i915#13896])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-1/igt@i915_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-1/igt@i915_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-1/igt@i915_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-2/igt@i915_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-2/igt@i915_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-2/igt@i915_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-3/igt@i915_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-3/igt@i915_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-3/igt@i915_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-4/igt@i915_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-4/igt@i915_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-5/igt@i915_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-5/igt@i915_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-5/igt@i915_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-6/igt@i915_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-6/igt@i915_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-6/igt@i915_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-7/igt@i915_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-7/igt@i915_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-7/igt@i915_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-7/igt@i915_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-7/igt@i915_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-8/igt@i915_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-8/igt@i915_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-mtlp-8/igt@i915_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-1/igt@i915_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-1/igt@i915_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-1/igt@i915_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-1/igt@i915_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-1/igt@i915_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-3/igt@i915_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-4/igt@i915_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-4/igt@i915_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-4/igt@i915_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-4/igt@i915_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-4/igt@i915_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-5/igt@i915_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-6/igt@i915_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-6/igt@i915_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-6/igt@i915_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-6/igt@i915_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-7/igt@i915_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-7/igt@i915_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-7/igt@i915_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-8/igt@i915_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-8/igt@i915_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-8/igt@i915_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-8/igt@i915_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-mtlp-8/igt@i915_module_load@load.html
- shard-dg2-9: ([PASS][247], [PASS][248]) -> [SKIP][249] ([i915#13896])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-9/igt@i915_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-9/igt@i915_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-9/igt@i915_module_load@load.html
- shard-dg2: ([PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272]) -> ([SKIP][273], [SKIP][274], [SKIP][275], [SKIP][276], [SKIP][277], [SKIP][278], [SKIP][279], [SKIP][280], [SKIP][281], [SKIP][282], [SKIP][283], [SKIP][284], [SKIP][285], [SKIP][286], [SKIP][287], [SKIP][288], [SKIP][289], [SKIP][290], [SKIP][291], [SKIP][292], [SKIP][293], [SKIP][294], [SKIP][295], [SKIP][296]) ([i915#13896])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-6/igt@i915_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-5/igt@i915_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-5/igt@i915_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-6/igt@i915_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-4/igt@i915_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-7/igt@i915_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-4/igt@i915_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-7/igt@i915_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-3/igt@i915_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-3/igt@i915_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-7/igt@i915_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-3/igt@i915_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-2/igt@i915_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-8/igt@i915_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-2/igt@i915_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-8/igt@i915_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-1/igt@i915_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-1/igt@i915_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-1/igt@i915_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-11/igt@i915_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-11/igt@i915_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-10/igt@i915_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-dg2-10/igt@i915_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-10/igt@i915_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-10/igt@i915_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-10/igt@i915_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-11/igt@i915_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-1/igt@i915_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-1/igt@i915_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-1/igt@i915_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-2/igt@i915_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-2/igt@i915_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-3/igt@i915_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-3/igt@i915_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-3/igt@i915_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-4/igt@i915_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-4/igt@i915_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-4/igt@i915_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-5/igt@i915_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-6/igt@i915_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-6/igt@i915_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-6/igt@i915_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-7/igt@i915_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-7/igt@i915_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-8/igt@i915_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-8/igt@i915_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-dg2-8/igt@i915_module_load@load.html
- shard-rkl: ([PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320]) -> ([SKIP][321], [SKIP][322], [SKIP][323], [SKIP][324], [SKIP][325], [SKIP][326], [SKIP][327], [SKIP][328], [SKIP][329], [SKIP][330], [SKIP][331], [SKIP][332], [SKIP][333], [SKIP][334], [SKIP][335], [SKIP][336], [SKIP][337], [SKIP][338], [SKIP][339], [SKIP][340], [SKIP][341], [SKIP][342], [SKIP][343]) ([i915#13896])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-7/igt@i915_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-7/igt@i915_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-7/igt@i915_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-6/igt@i915_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-8/igt@i915_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-6/igt@i915_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-8/igt@i915_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-6/igt@i915_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-5/igt@i915_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-8/igt@i915_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-5/igt@i915_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-5/igt@i915_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-8/igt@i915_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-4/igt@i915_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-4/igt@i915_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-4/igt@i915_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-3/igt@i915_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-3/igt@i915_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-3/igt@i915_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-2/igt@i915_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-2/igt@i915_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-1/igt@i915_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-1/igt@i915_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8265/shard-rkl-1/igt@i915_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-7/igt@i915_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-6/igt@i915_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-7/igt@i915_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-6/igt@i915_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-7/igt@i915_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-5/igt@i915_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-5/igt@i915_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-8/igt@i915_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-5/igt@i915_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-5/igt@i915_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-3/igt@i915_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-3/igt@i915_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-3/igt@i915_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-3/igt@i915_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-1/igt@i915_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-8/igt@i915_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-7/igt@i915_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-1/igt@i915_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-1/igt@i915_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-1/igt@i915_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-1/igt@i915_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-8/igt@i915_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/shard-rkl-8/igt@i915_module_load@load.html
[i915#13896]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13896
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8265 -> IGTPW_12725
CI-20190529: 20190529
CI_DRM_16246: f811577f424491a57b1e8669bde62998227d6907 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12725: 12725
IGT_8265: bfefe166535d69ca10d32e6ba0093260df21ee3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12725/index.html
[-- Attachment #2: Type: text/html, Size: 42107 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
2025-03-06 18:59 ` [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban
@ 2025-03-20 5:29 ` Riana Tauro
2025-04-08 15:32 ` Anirban, Sk
0 siblings, 1 reply; 13+ messages in thread
From: Riana Tauro @ 2025-03-20 5:29 UTC (permalink / raw)
To: Sk Anirban, igt-dev
Hi Anirban
On 3/7/2025 12:29 AM, Sk Anirban wrote:
> Leverage IGT spinner to trigger frequency scaling and
> set RPS minimum frequency to RP0 for achieving peak frequency.
> This method replaces the existing waitboost mechanism used
> to reach maximum frequency.
Can you specify the reason for the change? How is it helping the test?
>
> v2:
> - Disable power consumption check for dgfx
>
> v3:
> - Implement igt exit handler
>
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
> tests/intel/i915_pm_rc6_residency.c | 127 +++++++++++++++++++---------
> 1 file changed, 88 insertions(+), 39 deletions(-)
>
> diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
> index c9128481d..7d31e2cc0 100644
> --- a/tests/intel/i915_pm_rc6_residency.c
> +++ b/tests/intel/i915_pm_rc6_residency.c
> @@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd)
> return false;
> }
>
> -static uint32_t batch_create(int fd)
> -{
> - const uint32_t bbe = MI_BATCH_BUFFER_END;
> - uint32_t handle;
> -
> - handle = gem_create(fd, 4096);
> - gem_write(fd, handle, 0, &bbe, sizeof(bbe));
> -
> - return handle;
> -}
> -
> static int open_pmu(int i915, uint64_t config)
> {
> int fd;
> @@ -286,45 +275,85 @@ static int open_pmu(int i915, uint64_t config)
> return fd;
> }
>
> -#define WAITBOOST 0x1
> +#define FREQUENT_BOOST 0x1
FREQUENT ?> #define ONCE 0x2
>
> static void sighandler(int sig)
> {
> }
>
> -static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl)
> +static uint32_t get_freq(int dirfd, uint8_t id)
> +{
> + uint32_t val;
> +
> + igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1);
> +
> + return val;
> +}
> +
> +static int set_freq(int dirfd, uint8_t id, uint32_t val)
> +{
> + return igt_sysfs_rps_printf(dirfd, id, "%u", val);
> +}
> +
> +uint32_t *stash_min;
> +
> +static void restore_freq(int sig)
> +{
> + int i915 = -1;
> + int gt_num;
> + int dirfd;
> +
> + i915 = drm_open_driver(DRIVER_INTEL);
Why reopen again? Doesn't it exist when exit handler is called?> +
for_each_sysfs_gt_dirfd(i915, dirfd, gt_num) {
> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min[gt_num]));
> + }
> + close(dirfd);
unnecessary for_each_sysfs_gt_dirfd is already doing that> +}
> +
> +static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd, uint64_t engine_flags,
> + unsigned int flags, unsigned long *ctl, unsigned int gt)
> {
> const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8;
> - struct drm_i915_gem_exec_object2 obj = {
> - .handle = batch_create(i915),
> - };
> - struct drm_i915_gem_execbuffer2 execbuf = {
> - .buffers_ptr = to_user_pointer(&obj),
> - .buffer_count = 1,
> - .flags = engine_flags,
> - .rsvd1 = ctx_id,
> - };
> struct sigaction act = {
> .sa_handler = sighandler
> };
> + int64_t timeout = 1;
> + uint64_t ahnd;
> + int rp0;
>
> + ahnd = get_reloc_ahnd(i915, ctx->id);
> + rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ);
> sigaction(SIGINT, &act, NULL);
> do {
> uint64_t submit, wait, elapsed;
> struct timespec tv = {};
> + igt_spin_t *spin;
>
> igt_nsec_elapsed(&tv);
> -
> - gem_execbuf(i915, &execbuf);
> + spin = igt_spin_new(i915,
> + .ahnd = ahnd,
> + .ctx = ctx,
> + .engine = engine_flags);
> submit = igt_nsec_elapsed(&tv);
> - if (flags & WAITBOOST) {
> - gem_sync(i915, obj.handle);
> + if (flags & FREQUENT_BOOST) {
> + /* Set MIN freq to RP0 to achieve the peak freq */
> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0));
> + igt_assert(gem_bo_busy(i915, spin->handle));
> + gem_wait(i915, spin->handle, &timeout);
> +
> + /* Restore the MIN freq back to default */
> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, stash_min[gt]));
> + igt_spin_end(spin);
> + igt_spin_free(i915, spin);
> + gem_quiescent_gpu(i915);
> if (flags & ONCE)
> - flags &= ~WAITBOOST;
> + flags &= ~FREQUENT_BOOST;
> } else {
> - while (gem_bo_busy(i915, obj.handle))
> - usleep(0);
> + igt_assert(gem_bo_busy(i915, spin->handle));
> + igt_spin_end(spin);
> + igt_spin_free(i915, spin);
> + gem_quiescent_gpu(i915);
> }
> wait = igt_nsec_elapsed(&tv);
>
> @@ -350,6 +379,7 @@ static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned i
> /* aim for ~1% busy */
> usleep(min_t(elapsed, elapsed / 10, 50 * 1000));
> } while (!READ_ONCE(*ctl));
> + put_ahnd(ahnd);
> }
>
> static void kill_children(int sig)
> @@ -361,25 +391,29 @@ static void kill_children(int sig)
> signal(sig, old);
> }
>
> -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
> +static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t flags, unsigned int gt)
> {
> - const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
> + const int64_t duration_ns = 2 * SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
> const int tolerance = 20; /* Some RC6 is better than none! */
> const unsigned int gen = intel_gen(intel_get_drm_devid(i915));
> + int num_gts = igt_sysfs_get_num_gt(i915);
> struct {
> const char *name;
> unsigned int flags;
> double power;
> } phases[] = {
> + { "once", FREQUENT_BOOST | ONCE },
> { "normal", 0 },
> - { "boost", WAITBOOST },
> - { "once", WAITBOOST | ONCE },
> + { "boost", FREQUENT_BOOST }
> };
> + int dirfd = igt_sysfs_gt_open(i915, gt);
> struct power_sample sample[2];
> unsigned long slept, cycles;
> unsigned long *done;
> uint64_t rc6, ts[2];
> struct igt_power gpu;
> + int sysfs_dirfd;
> + int gt_num;
> int fd;
>
> fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
> @@ -409,10 +443,16 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
>
> done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>
> + stash_min = (uint32_t *)malloc(sizeof(uint32_t) * num_gts);
> + for_each_sysfs_gt_dirfd(i915, sysfs_dirfd, gt_num) {
> + stash_min[gt_num] = get_freq(sysfs_dirfd, RPS_MIN_FREQ_MHZ);
> + igt_pm_ignore_slpc_efficient_freq(i915, sysfs_dirfd, true);
> + }
> +
> for (int p = 0; p < ARRAY_SIZE(phases); p++) {
> memset(done, 0, 2 * sizeof(*done));
> igt_fork(child, 1) /* Setup up a very light load */
> - bg_load(i915, ctx_id, flags, phases[p].flags, done);
> + bg_load(i915, ctx, dirfd, flags, phases[p].flags, done, gt);
>
> igt_power_get_energy(&gpu, &sample[0]);
> cycles = -READ_ONCE(done[1]);
> @@ -451,15 +491,17 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
>
> munmap(done, 4096);
> close(fd);
> + close(dirfd);
> + close(sysfs_dirfd);
>
> igt_power_close(&gpu);
>
> - if (phases[1].power - phases[0].power > 10) {
> - igt_assert_f(2 * phases[2].power - phases[0].power <= phases[1].power,
> + if (phases[2].power - phases[1].power > 20 && !gt && !gem_has_lmem(i915)) {
Why 20%? and why gt check?
> + igt_assert_f(2 * phases[0].power - phases[1].power <= phases[2].power,
> "Exceeded energy expectations for single busy wait load\n"
> "Used %.1fmW, min %.1fmW, max %.1fmW, expected less than %.1fmW\n",
> - phases[2].power, phases[0].power, phases[1].power,
> - phases[0].power + (phases[1].power - phases[0].power) / 2);
> + phases[0].power, phases[1].power, phases[2].power,
> + phases[1].power + (phases[2].power - phases[1].power) / 2);
> }
> }
>
> @@ -577,6 +619,8 @@ igt_main
> /* Use drm_open_driver to verify device existence */
> igt_fixture {
> i915 = drm_open_driver(DRIVER_INTEL);
> + intel_allocator_multiprocess_start();
> + igt_install_exit_handler(restore_freq);
> }
>
> igt_subtest_with_dynamic("rc6-idle") {
> @@ -590,13 +634,18 @@ igt_main
> for_each_ctx_engine(i915, ctx, e) {
> if (e->instance == 0) {
> igt_dynamic_f("gt%u-%s", gt, e->name)
> - rc6_idle(i915, ctx->id, e->flags, gt);
> + rc6_idle(i915, ctx, e->flags, gt);
> }
> }
> intel_ctx_destroy(i915, ctx);
> }
> }
>
> + igt_fixture
> + {
> + intel_allocator_multiprocess_stop();
> + }
unnecessary {}
Thanks
Riana > +
> igt_subtest_with_dynamic("rc6-fence") {
> igt_require_gem(i915);
> gem_quiescent_gpu(i915);
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency
2025-03-20 5:29 ` Riana Tauro
@ 2025-04-08 15:32 ` Anirban, Sk
0 siblings, 0 replies; 13+ messages in thread
From: Anirban, Sk @ 2025-04-08 15:32 UTC (permalink / raw)
To: Riana Tauro, igt-dev
Hi Riana,
On 20-03-2025 10:59, Riana Tauro wrote:
> Hi Anirban
>
> On 3/7/2025 12:29 AM, Sk Anirban wrote:
>> Leverage IGT spinner to trigger frequency scaling and
>> set RPS minimum frequency to RP0 for achieving peak frequency.
>> This method replaces the existing waitboost mechanism used
>> to reach maximum frequency.
> Can you specify the reason for the change? How is it helping the test?
Utilizing sysfs enables us to reach the maximum frequency swiftly,
ensuring rapid transitions to peak power for short durations.
This will be beneficial when handling multiple phases in the IGT test.
>
>>
>> v2:
>> - Disable power consumption check for dgfx
>>
>> v3:
>> - Implement igt exit handler
>>
>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>> ---
>> tests/intel/i915_pm_rc6_residency.c | 127 +++++++++++++++++++---------
>> 1 file changed, 88 insertions(+), 39 deletions(-)
>>
>> diff --git a/tests/intel/i915_pm_rc6_residency.c
>> b/tests/intel/i915_pm_rc6_residency.c
>> index c9128481d..7d31e2cc0 100644
>> --- a/tests/intel/i915_pm_rc6_residency.c
>> +++ b/tests/intel/i915_pm_rc6_residency.c
>> @@ -264,17 +264,6 @@ static bool __pmu_wait_for_rc6(int fd)
>> return false;
>> }
>> -static uint32_t batch_create(int fd)
>> -{
>> - const uint32_t bbe = MI_BATCH_BUFFER_END;
>> - uint32_t handle;
>> -
>> - handle = gem_create(fd, 4096);
>> - gem_write(fd, handle, 0, &bbe, sizeof(bbe));
>> -
>> - return handle;
>> -}
>> -
>> static int open_pmu(int i915, uint64_t config)
>> {
>> int fd;
>> @@ -286,45 +275,85 @@ static int open_pmu(int i915, uint64_t config)
>> return fd;
>> }
>> -#define WAITBOOST 0x1
>> +#define FREQUENT_BOOST 0x1
> FREQUENT ?> #define ONCE 0x2
yes, as part of 3rd phase of the test we are boosting the freq to max
multiple times, so instead of wait-boosting I have updated the macro
name to related one.
>> static void sighandler(int sig)
>> {
>> }
>> -static void bg_load(int i915, uint32_t ctx_id, uint64_t
>> engine_flags, unsigned int flags, unsigned long *ctl)
>> +static uint32_t get_freq(int dirfd, uint8_t id)
>> +{
>> + uint32_t val;
>> +
>> + igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1);
>> +
>> + return val;
>> +}
>> +
>> +static int set_freq(int dirfd, uint8_t id, uint32_t val)
>> +{
>> + return igt_sysfs_rps_printf(dirfd, id, "%u", val);
>> +}
>> +
>> +uint32_t *stash_min;
>> +
>> +static void restore_freq(int sig)
>> +{
>> + int i915 = -1;
>> + int gt_num;
>> + int dirfd;
>> +
>> + i915 = drm_open_driver(DRIVER_INTEL);
> Why reopen again? Doesn't it exist when exit handler is called?> +
> for_each_sysfs_gt_dirfd(i915, dirfd, gt_num) {
I will fix this.
>> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ,
>> stash_min[gt_num]));
>> + }
>> + close(dirfd);
> unnecessary for_each_sysfs_gt_dirfd is already doing that> +}
I will remove this.
>> +
>> +static void bg_load(int i915, const intel_ctx_t *ctx, int dirfd,
>> uint64_t engine_flags,
>> + unsigned int flags, unsigned long *ctl, unsigned int gt)
>> {
>> const bool has_execlists = intel_gen(intel_get_drm_devid(i915))
>> >= 8;
>> - struct drm_i915_gem_exec_object2 obj = {
>> - .handle = batch_create(i915),
>> - };
>> - struct drm_i915_gem_execbuffer2 execbuf = {
>> - .buffers_ptr = to_user_pointer(&obj),
>> - .buffer_count = 1,
>> - .flags = engine_flags,
>> - .rsvd1 = ctx_id,
>> - };
>> struct sigaction act = {
>> .sa_handler = sighandler
>> };
>> + int64_t timeout = 1;
>> + uint64_t ahnd;
>> + int rp0;
>> + ahnd = get_reloc_ahnd(i915, ctx->id);
>> + rp0 = get_freq(dirfd, RPS_RP0_FREQ_MHZ);
>> sigaction(SIGINT, &act, NULL);
>> do {
>> uint64_t submit, wait, elapsed;
>> struct timespec tv = {};
>> + igt_spin_t *spin;
>> igt_nsec_elapsed(&tv);
>> -
>> - gem_execbuf(i915, &execbuf);
>> + spin = igt_spin_new(i915,
>> + .ahnd = ahnd,
>> + .ctx = ctx,
>> + .engine = engine_flags);
>> submit = igt_nsec_elapsed(&tv);
>> - if (flags & WAITBOOST) {
>> - gem_sync(i915, obj.handle);
>> + if (flags & FREQUENT_BOOST) {
>> + /* Set MIN freq to RP0 to achieve the peak freq */
>> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ, rp0));
>> + igt_assert(gem_bo_busy(i915, spin->handle));
>> + gem_wait(i915, spin->handle, &timeout);
>> +
>> + /* Restore the MIN freq back to default */
>> + igt_assert_lt(0, set_freq(dirfd, RPS_MIN_FREQ_MHZ,
>> stash_min[gt]));
>> + igt_spin_end(spin);
>> + igt_spin_free(i915, spin);
>> + gem_quiescent_gpu(i915);
>> if (flags & ONCE)
>> - flags &= ~WAITBOOST;
>> + flags &= ~FREQUENT_BOOST;
>> } else {
>> - while (gem_bo_busy(i915, obj.handle))
>> - usleep(0);
>> + igt_assert(gem_bo_busy(i915, spin->handle));
>> + igt_spin_end(spin);
>> + igt_spin_free(i915, spin);
>> + gem_quiescent_gpu(i915);
>> }
>> wait = igt_nsec_elapsed(&tv);
>> @@ -350,6 +379,7 @@ static void bg_load(int i915, uint32_t ctx_id,
>> uint64_t engine_flags, unsigned i
>> /* aim for ~1% busy */
>> usleep(min_t(elapsed, elapsed / 10, 50 * 1000));
>> } while (!READ_ONCE(*ctl));
>> + put_ahnd(ahnd);
>> }
>> static void kill_children(int sig)
>> @@ -361,25 +391,29 @@ static void kill_children(int sig)
>> signal(sig, old);
>> }
>> -static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags,
>> unsigned int gt)
>> +static void rc6_idle(int i915, const intel_ctx_t *ctx, uint64_t
>> flags, unsigned int gt)
>> {
>> - const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
>> + const int64_t duration_ns = 2 * SLEEP_DURATION *
>> (int64_t)NSEC_PER_SEC;
>> const int tolerance = 20; /* Some RC6 is better than none! */
>> const unsigned int gen = intel_gen(intel_get_drm_devid(i915));
>> + int num_gts = igt_sysfs_get_num_gt(i915);
>> struct {
>> const char *name;
>> unsigned int flags;
>> double power;
>> } phases[] = {
>> + { "once", FREQUENT_BOOST | ONCE },
>> { "normal", 0 },
>> - { "boost", WAITBOOST },
>> - { "once", WAITBOOST | ONCE },
>> + { "boost", FREQUENT_BOOST }
>> };
>> + int dirfd = igt_sysfs_gt_open(i915, gt);
>> struct power_sample sample[2];
>> unsigned long slept, cycles;
>> unsigned long *done;
>> uint64_t rc6, ts[2];
>> struct igt_power gpu;
>> + int sysfs_dirfd;
>> + int gt_num;
>> int fd;
>> fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
>> @@ -409,10 +443,16 @@ static void rc6_idle(int i915, uint32_t ctx_id,
>> uint64_t flags, unsigned int gt)
>> done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>> + stash_min = (uint32_t *)malloc(sizeof(uint32_t) * num_gts);
>> + for_each_sysfs_gt_dirfd(i915, sysfs_dirfd, gt_num) {
>> + stash_min[gt_num] = get_freq(sysfs_dirfd, RPS_MIN_FREQ_MHZ);
>> + igt_pm_ignore_slpc_efficient_freq(i915, sysfs_dirfd, true);
>> + }
>> +
>> for (int p = 0; p < ARRAY_SIZE(phases); p++) {
>> memset(done, 0, 2 * sizeof(*done));
>> igt_fork(child, 1) /* Setup up a very light load */
>> - bg_load(i915, ctx_id, flags, phases[p].flags, done);
>> + bg_load(i915, ctx, dirfd, flags, phases[p].flags, done,
>> gt);
>> igt_power_get_energy(&gpu, &sample[0]);
>> cycles = -READ_ONCE(done[1]);
>> @@ -451,15 +491,17 @@ static void rc6_idle(int i915, uint32_t ctx_id,
>> uint64_t flags, unsigned int gt)
>> munmap(done, 4096);
>> close(fd);
>> + close(dirfd);
>> + close(sysfs_dirfd);
>> igt_power_close(&gpu);
>> - if (phases[1].power - phases[0].power > 10) {
>> - igt_assert_f(2 * phases[2].power - phases[0].power <=
>> phases[1].power,
>> + if (phases[2].power - phases[1].power > 20 && !gt &&
>> !gem_has_lmem(i915)) {
> Why 20%? and why gt check?
So as the time taken for each phase has been increased, I have updated
the threshold also. In a multi-GT system, running a workload on GT1 can
inadvertently cause GT0 to wake up. Since the tests calculate total GPU
power, this unintended wake-up of GT0 can skew the power measurements
for a single GT. Therefore, I have disabled GT1 for this evaluation.
>> + igt_assert_f(2 * phases[0].power - phases[1].power <=
>> phases[2].power,
>> "Exceeded energy expectations for single busy wait
>> load\n"
>> "Used %.1fmW, min %.1fmW, max %.1fmW, expected
>> less than %.1fmW\n",
>> - phases[2].power, phases[0].power, phases[1].power,
>> - phases[0].power + (phases[1].power -
>> phases[0].power) / 2);
>> + phases[0].power, phases[1].power, phases[2].power,
>> + phases[1].power + (phases[2].power -
>> phases[1].power) / 2);
>> }
>> }
>> @@ -577,6 +619,8 @@ igt_main
>> /* Use drm_open_driver to verify device existence */
>> igt_fixture {
>> i915 = drm_open_driver(DRIVER_INTEL);
>> + intel_allocator_multiprocess_start();
>> + igt_install_exit_handler(restore_freq);
>> }
>> igt_subtest_with_dynamic("rc6-idle") {
>> @@ -590,13 +634,18 @@ igt_main
>> for_each_ctx_engine(i915, ctx, e) {
>> if (e->instance == 0) {
>> igt_dynamic_f("gt%u-%s", gt, e->name)
>> - rc6_idle(i915, ctx->id, e->flags, gt);
>> + rc6_idle(i915, ctx, e->flags, gt);
>> }
>> }
>> intel_ctx_destroy(i915, ctx);
>> }
>> }
>> + igt_fixture
>> + {
>> + intel_allocator_multiprocess_stop();
>> + }
> unnecessary {}
I will fix this.
>
> Thanks
> Riana > +
>> igt_subtest_with_dynamic("rc6-fence") {
>> igt_require_gem(i915);
>> gem_quiescent_gpu(i915);
>
Thanks,
Anirban
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-04-08 15:32 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-06 18:59 [i-g-t,v3,0/2] tests/i915/pm_rc6_residency: Replace waitboost with Sk Anirban
2025-03-06 18:59 ` [i-g-t, v3, 1/2] tests/i915/pm_rc6_residency: Use sysfs to achieve peak frequency Sk Anirban
2025-03-20 5:29 ` Riana Tauro
2025-04-08 15:32 ` Anirban, Sk
2025-03-06 18:59 ` [i-g-t,v3,2/2] HAX: Add rc6-idle tests to fast feedback list Sk Anirban
2025-03-07 3:09 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev4) Patchwork
2025-03-07 3:27 ` ✗ i915.CI.BAT: failure " Patchwork
2025-03-07 14:05 ` ✗ Xe.CI.Full: " Patchwork
2025-03-07 22:31 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with (rev5) Patchwork
2025-03-07 22:53 ` ✗ i915.CI.BAT: failure " Patchwork
2025-03-09 5:28 ` ✗ Xe.CI.Full: " Patchwork
2025-03-11 14:21 ` ✓ i915.CI.BAT: success " Patchwork
2025-03-12 9:30 ` ✓ 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