* [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical()
@ 2024-10-02 10:45 Ville Syrjala
2024-10-02 10:45 ` [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks Ville Syrjala
` (11 more replies)
0 siblings, 12 replies; 19+ messages in thread
From: Ville Syrjala @ 2024-10-02 10:45 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Extract a small helper that can determine if MI_STORE_DWORD
operates with physical addresses or not.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_gt.c | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/lib/igt_gt.c b/lib/igt_gt.c
index 9641a6610bf2..331783e49acf 100644
--- a/lib/igt_gt.c
+++ b/lib/igt_gt.c
@@ -655,21 +655,27 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd)
return missed;
}
+static bool gem_store_dword_needs_physical(const struct intel_device_info *info)
+{
+ switch (info->graphics_ver) {
+ case 2:
+ return true;
+ case 3:
+ return info->is_grantsdale || info->is_alviso;
+ default:
+ return false;
+ }
+}
+
bool gem_class_can_store_dword(int fd, int class)
{
uint16_t devid = intel_get_drm_devid(fd);
const struct intel_device_info *info = intel_get_device_info(devid);
const int ver = info->graphics_ver;
- if (ver == 0) /* unknown, assume it just works */
- return true;
-
- if (ver <= 2) /* requires physical addresses */
+ if (gem_store_dword_needs_physical(info))
return false;
- if (ver == 3 && (info->is_grantsdale || info->is_alviso))
- return false; /* only supports physical addresses */
-
if (ver == 6 && class == I915_ENGINE_CLASS_VIDEO)
return false; /* broken, unbelievably broken */
--
2.45.2
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala @ 2024-10-02 10:45 ` Ville Syrjala 2024-10-02 14:43 ` Kamil Konieczny 2024-10-02 10:45 ` [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 Ville Syrjala ` (10 subsequent siblings) 11 siblings, 1 reply; 19+ messages in thread From: Ville Syrjala @ 2024-10-02 10:45 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> A bunch of tests use a 'gen<6' check to determine if MI_STORE_DWORD needs a secure batch or not. Other places have a more correct check written in different styles. Unify all of it to use a common helper. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/igt_dummyload.c | 2 +- lib/igt_gt.c | 20 ++++++++++++++++++++ lib/igt_gt.h | 1 + lib/igt_store.c | 2 +- tests/intel/gem_ctx_shared.c | 4 ++-- tests/intel/gem_exec_async.c | 2 +- tests/intel/gem_exec_capture.c | 9 +++------ tests/intel/gem_exec_fence.c | 4 ++-- tests/intel/gem_exec_flush.c | 4 ++-- tests/intel/gem_exec_gttfill.c | 2 +- tests/intel/gem_exec_nop.c | 4 ++-- tests/intel/gem_exec_parallel.c | 2 +- tests/intel/gem_exec_params.c | 2 +- tests/intel/gem_exec_reloc.c | 8 +++++--- tests/intel/gem_exec_schedule.c | 4 ++-- tests/intel/gem_exec_store.c | 16 ++++++---------- tests/intel/gem_exec_suspend.c | 2 +- tests/intel/gem_exec_whisper.c | 2 +- tests/intel/gem_ringfill.c | 2 +- tests/intel/gem_softpin.c | 4 ++-- tests/intel/gem_sync.c | 8 ++++---- tests/intel/gem_userptr_blits.c | 4 ++-- tests/intel/i915_module_load.c | 2 +- tests/prime_vgem.c | 2 +- 24 files changed, 64 insertions(+), 48 deletions(-) diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c index a9a2de077698..3cf80b762921 100644 --- a/lib/igt_dummyload.c +++ b/lib/igt_dummyload.c @@ -217,7 +217,7 @@ emit_recursive_batch(igt_spin_t *spin, } else if (opts->flags & IGT_SPIN_POLL_RUN) { igt_assert(!opts->dependency); - if (gen == 4 || gen == 5) { + if (gem_store_dword_needs_secure(fd)) { execbuf->flags |= I915_EXEC_SECURE; igt_require(__igt_device_set_master(fd) == 0); } diff --git a/lib/igt_gt.c b/lib/igt_gt.c index 331783e49acf..a1075e8bbed1 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -691,6 +691,26 @@ bool gem_can_store_dword(int fd, unsigned int engine) gem_execbuf_flags_to_engine_class(engine)); } +/** + * gem_store_dword_needs_secure: + * @fd: open i915 drm file descriptor + * + * Does the MI_STORE_DWORD need to be executed from a secure batch? + */ +bool gem_store_dword_needs_secure(int fd) +{ + const struct intel_device_info *info = + intel_get_device_info(intel_get_drm_devid(fd)); + + switch (info->graphics_ver) { + case 4: + case 5: + return true; + default: + return false; + } +} + const struct intel_execution_engine2 intel_execution_engines2[] = { { "rcs0", I915_ENGINE_CLASS_RENDER, 0, I915_EXEC_RENDER }, { "bcs0", I915_ENGINE_CLASS_COPY, 0, I915_EXEC_BLT }, diff --git a/lib/igt_gt.h b/lib/igt_gt.h index 4a67cd9f038e..d3213123d6ac 100644 --- a/lib/igt_gt.h +++ b/lib/igt_gt.h @@ -76,6 +76,7 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd); bool gem_can_store_dword(int fd, unsigned int engine); bool gem_class_can_store_dword(int fd, int class); +bool gem_store_dword_needs_secure(int fd); extern const struct intel_execution_engine2 { char name[16]; diff --git a/lib/igt_store.c b/lib/igt_store.c index 538405e7f594..42ffdc5cdbe4 100644 --- a/lib/igt_store.c +++ b/lib/igt_store.c @@ -48,7 +48,7 @@ void igt_store_word(int fd, uint64_t ahnd, const intel_ctx_t *ctx, execbuf.flags |= I915_EXEC_FENCE_IN; execbuf.rsvd2 = fence; } - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; memset(obj, 0, sizeof(obj)); diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c index de06f2d54876..4b9d604f6732 100644 --- a/tests/intel/gem_ctx_shared.c +++ b/tests/intel/gem_ctx_shared.c @@ -366,7 +366,7 @@ static void exec_shared_gtt(int i915, const intel_ctx_cfg_t *cfg, obj.handle = batch; obj.offset += 8192; /* make sure we don't cause an eviction! */ execbuf.rsvd1 = ctx[1]->id; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; gem_execbuf(i915, &execbuf); @@ -567,7 +567,7 @@ static void store_dword(int i915, uint64_t ahnd, const intel_ctx_t *ctx, execbuf.buffers_ptr = to_user_pointer(obj + !cork); execbuf.buffer_count = 2 + !!cork; execbuf.flags = ring; - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_exec_async.c b/tests/intel/gem_exec_async.c index 573157add648..6d739307cfe6 100644 --- a/tests/intel/gem_exec_async.c +++ b/tests/intel/gem_exec_async.c @@ -56,7 +56,7 @@ static void store_dword(int fd, int id, const intel_ctx_t *ctx, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; execbuf.flags = ring; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_exec_capture.c b/tests/intel/gem_exec_capture.c index 2340ad49520e..37c1f7255046 100644 --- a/tests/intel/gem_exec_capture.c +++ b/tests/intel/gem_exec_capture.c @@ -396,7 +396,7 @@ static void __capture1(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, execbuf.buffers_ptr = (uintptr_t)obj; execbuf.buffer_count = ARRAY_SIZE(obj); execbuf.flags = e->flags; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.flags |= I915_EXEC_FENCE_OUT; execbuf.rsvd1 = ctx->id; @@ -586,7 +586,7 @@ __captureN(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, execbuf.buffers_ptr = (uintptr_t)obj; execbuf.buffer_count = count + 2; execbuf.flags = e->flags; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.flags |= I915_EXEC_FENCE_OUT; execbuf.rsvd1 = ctx->id; @@ -968,12 +968,9 @@ igt_main uint32_t region; igt_fixture { - int gen; - fd = drm_open_driver(DRIVER_INTEL); - gen = intel_gen(intel_get_drm_devid(fd)); - if (gen > 3 && gen < 6) /* ctg and ilk need secure batches */ + if (gem_store_dword_needs_secure(fd)) igt_device_set_master(fd); igt_require_gem(fd); diff --git a/tests/intel/gem_exec_fence.c b/tests/intel/gem_exec_fence.c index 7f39c73d72fa..c3c462b77dc4 100644 --- a/tests/intel/gem_exec_fence.c +++ b/tests/intel/gem_exec_fence.c @@ -796,7 +796,7 @@ static void test_parallel(int i915, const intel_ctx_t *ctx, batch[++i] = MI_BATCH_BUFFER_END; gem_write(i915, obj[1].handle, 0, batch, sizeof(batch)); - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; gem_execbuf(i915, &execbuf); @@ -919,7 +919,7 @@ static void test_concurrent(int i915, const intel_ctx_t *ctx, tmp_ctx = intel_ctx_create(i915, &ctx->cfg); execbuf.rsvd1 = tmp_ctx->id; execbuf.rsvd2 = spin->out_fence; - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; gem_execbuf(i915, &execbuf); diff --git a/tests/intel/gem_exec_flush.c b/tests/intel/gem_exec_flush.c index 795be929c2e2..027510424b06 100644 --- a/tests/intel/gem_exec_flush.c +++ b/tests/intel/gem_exec_flush.c @@ -1668,7 +1668,7 @@ static void run(int fd, unsigned ring, int nchild, int timeout, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 3; execbuf.flags = ring | (1 << 12); - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; obj[1].handle = gem_create(fd, 1024*64); @@ -1915,7 +1915,7 @@ static void batch(int fd, unsigned ring, int nchild, int timeout, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; execbuf.flags = ring | (1 << 12); - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; obj[1].handle = gem_create(fd, 64<<10); diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c index 3f05017772af..59a3679fec07 100644 --- a/tests/intel/gem_exec_gttfill.c +++ b/tests/intel/gem_exec_gttfill.c @@ -187,7 +187,7 @@ static void fillgtt(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout) memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffer_count = 1; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_exec_nop.c b/tests/intel/gem_exec_nop.c index 1b20cc870187..652f8deffc3d 100644 --- a/tests/intel/gem_exec_nop.c +++ b/tests/intel/gem_exec_nop.c @@ -165,7 +165,7 @@ static void poll_ring(int fd, const intel_ctx_t *ctx, uint64_t elapsed; flags = I915_EXEC_NO_RELOC; - if (gen == 4 || gen == 5) + if (gem_store_dword_needs_secure(fd)) flags |= I915_EXEC_SECURE; igt_require(gem_class_can_store_dword(fd, e->class)); @@ -278,7 +278,7 @@ static void poll_sequential(int fd, const intel_ctx_t *ctx, bool cached; flags = I915_EXEC_NO_RELOC; - if (gen == 4 || gen == 5) + if (gem_store_dword_needs_secure(fd)) flags |= I915_EXEC_SECURE; nengine = 0; diff --git a/tests/intel/gem_exec_parallel.c b/tests/intel/gem_exec_parallel.c index 90c46bf0cb17..9817bcd0ff33 100644 --- a/tests/intel/gem_exec_parallel.c +++ b/tests/intel/gem_exec_parallel.c @@ -147,7 +147,7 @@ static void *thread(void *data) execbuf.flags = t->engine; execbuf.flags |= I915_EXEC_HANDLE_LUT; execbuf.flags |= I915_EXEC_NO_RELOC; - if (t->gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; if (t->flags & (CONTEXTS | FDS)) { tmp_ctx = intel_ctx_create(fd, &t->ctx->cfg); diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c index d0260d5f1ae6..382d4f6dc39d 100644 --- a/tests/intel/gem_exec_params.c +++ b/tests/intel/gem_exec_params.c @@ -248,7 +248,7 @@ static void test_batch_first(int fd) memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = ARRAY_SIZE(obj); - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; /* Normal mode */ diff --git a/tests/intel/gem_exec_reloc.c b/tests/intel/gem_exec_reloc.c index 44c09c3e2941..d9afbe23a337 100644 --- a/tests/intel/gem_exec_reloc.c +++ b/tests/intel/gem_exec_reloc.c @@ -903,7 +903,7 @@ static void active(int fd, const intel_ctx_t *ctx, unsigned engine) memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -1310,14 +1310,13 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, uint32_t *common, int num_common, int in, int out) { - const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); int idx = flags_to_index(e); uint64_t relocs = concurrent_relocs(i915, idx, CONCURRENT); struct drm_i915_gem_exec_object2 obj[num_common + 2]; struct drm_i915_gem_execbuffer2 execbuf = { .buffers_ptr = to_user_pointer(obj), .buffer_count = ARRAY_SIZE(obj), - .flags = e->flags | I915_EXEC_HANDLE_LUT | (gen < 6 ? I915_EXEC_SECURE : 0), + .flags = e->flags | I915_EXEC_HANDLE_LUT, .rsvd1 = ctx->id, }; uint32_t *batch = &obj[num_common + 1].handle; @@ -1325,6 +1324,9 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, uint32_t *x; int err = 0; + if (gem_store_dword_needs_secure(i915)) + execbuf.flags |= I915_EXEC_SECURE; + memset(obj, 0, sizeof(obj)); obj[0].handle = gem_create(i915, 64 * CONCURRENT * 4); diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c index fdb7ebd702cd..84219b4cf5a9 100644 --- a/tests/intel/gem_exec_schedule.c +++ b/tests/intel/gem_exec_schedule.c @@ -187,7 +187,7 @@ static uint32_t __store_dword(int fd, uint64_t ahnd, const intel_ctx_t *ctx, execbuf.buffers_ptr = to_user_pointer(obj + !cork); execbuf.buffer_count = 2 + !!cork; execbuf.flags = ring; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -2342,7 +2342,7 @@ static void reorder_wide(int fd, const intel_ctx_cfg_t *cfg, unsigned ring) execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = ARRAY_SIZE(obj); execbuf.flags = ring; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.flags |= I915_EXEC_FENCE_IN; diff --git a/tests/intel/gem_exec_store.c b/tests/intel/gem_exec_store.c index 3b1319519107..d64cdeb6d435 100644 --- a/tests/intel/gem_exec_store.c +++ b/tests/intel/gem_exec_store.c @@ -84,7 +84,7 @@ static void store_dword(int fd, const intel_ctx_t *ctx, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; execbuf.flags = e->flags; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -169,7 +169,7 @@ static void store_cachelines(int fd, const intel_ctx_t *ctx, memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffer_count = flags & PAGES ? NCACHELINES + 1 : 2; execbuf.flags = e->flags; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -281,7 +281,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -414,7 +414,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) free(reloc); } -static int print_welcome(int fd) +static void print_welcome(int fd) { uint16_t devid = intel_get_drm_devid(fd); const struct intel_device_info *info = intel_get_device_info(devid); @@ -430,8 +430,6 @@ static int print_welcome(int fd) err = -errno; igt_info("GPU operation? %s [errno=%d]\n", err == 0 ? "yes" : "no", err); - - return info->graphics_ver; } #define test_each_engine(T, i915, ctx, e) \ @@ -446,12 +444,10 @@ igt_main int fd; igt_fixture { - int gen; - fd = drm_open_driver(DRIVER_INTEL); - gen = print_welcome(fd); - if (gen > 3 && gen < 6) /* ctg and ilk need secure batches */ + print_welcome(fd); + if (gem_store_dword_needs_secure(fd)) igt_device_set_master(fd); igt_require_gem(fd); diff --git a/tests/intel/gem_exec_suspend.c b/tests/intel/gem_exec_suspend.c index 0d08e8e4428f..646c219588e4 100644 --- a/tests/intel/gem_exec_suspend.c +++ b/tests/intel/gem_exec_suspend.c @@ -176,7 +176,7 @@ static void run_test(int fd, const intel_ctx_t *ctx, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = 2; execbuf.flags = 1 << 11; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_exec_whisper.c b/tests/intel/gem_exec_whisper.c index 8d39fc0af3b6..32f7ccb2d468 100644 --- a/tests/intel/gem_exec_whisper.c +++ b/tests/intel/gem_exec_whisper.c @@ -405,7 +405,7 @@ static void whisper(int fd, const intel_ctx_t *ctx, execbuf.buffer_count = 2; execbuf.flags = I915_EXEC_HANDLE_LUT; execbuf.flags |= I915_EXEC_NO_RELOC; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_ringfill.c b/tests/intel/gem_ringfill.c index 298ed9c672c4..a8b9dc19cbc0 100644 --- a/tests/intel/gem_ringfill.c +++ b/tests/intel/gem_ringfill.c @@ -220,7 +220,7 @@ static void setup_execbuf(int fd, const intel_ctx_t *ctx, execbuf->buffers_ptr = to_user_pointer(obj); execbuf->flags = ring | I915_EXEC_NO_RELOC | I915_EXEC_HANDLE_LUT; - if (gen > 3 && gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf->flags |= I915_EXEC_SECURE; execbuf->rsvd1 = ctx->id; diff --git a/tests/intel/gem_softpin.c b/tests/intel/gem_softpin.c index d8b99a2ae0c5..98c751439bfc 100644 --- a/tests/intel/gem_softpin.c +++ b/tests/intel/gem_softpin.c @@ -712,7 +712,7 @@ static void test_noreloc(int fd, enum sleep sleep, unsigned flags) memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(object); execbuf.buffer_count = 1; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; gem_execbuf(fd, &execbuf); gem_close(fd, object[0].handle); @@ -1072,7 +1072,7 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx, memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffer_count = 1; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_sync.c b/tests/intel/gem_sync.c index 21180012c7a3..0861f41d75b1 100644 --- a/tests/intel/gem_sync.c +++ b/tests/intel/gem_sync.c @@ -720,7 +720,7 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.flags = ied_flags(&ied, child); execbuf.flags |= I915_EXEC_NO_RELOC; execbuf.flags |= I915_EXEC_HANDLE_LUT; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -829,7 +829,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, c->execbuf.flags = ied_flags(&ied, child); c->execbuf.flags |= I915_EXEC_NO_RELOC; c->execbuf.flags |= I915_EXEC_HANDLE_LUT; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) c->execbuf.flags |= I915_EXEC_SECURE; c->ctx = intel_ctx_create(fd, &ctx->cfg); @@ -997,7 +997,7 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.flags = ring; execbuf.flags |= I915_EXEC_NO_RELOC; execbuf.flags |= I915_EXEC_HANDLE_LUT; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; @@ -1212,7 +1212,7 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) execbuf.buffers_ptr = to_user_pointer(object); execbuf.flags |= I915_EXEC_NO_RELOC; execbuf.flags |= I915_EXEC_HANDLE_LUT; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; diff --git a/tests/intel/gem_userptr_blits.c b/tests/intel/gem_userptr_blits.c index 67283c182647..ff076dc649b5 100644 --- a/tests/intel/gem_userptr_blits.c +++ b/tests/intel/gem_userptr_blits.c @@ -463,7 +463,7 @@ static void store_dword(int fd, uint32_t target, execbuf.buffers_ptr = to_user_pointer(obj); execbuf.buffer_count = ARRAY_SIZE(obj); execbuf.flags = 0; - if (gen < 6) + if (gem_store_dword_needs_secure(fd)) execbuf.flags |= I915_EXEC_SECURE; memset(obj, 0, sizeof(obj)); @@ -1446,7 +1446,7 @@ static void store_dword_rand(int i915, const intel_ctx_t *ctx, exec.buffer_count = 2; exec.buffers_ptr = to_user_pointer(obj); exec.flags = engine; - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) exec.flags |= I915_EXEC_SECURE; exec.rsvd1 = ctx->id; diff --git a/tests/intel/i915_module_load.c b/tests/intel/i915_module_load.c index cd1ee6d10e84..b3752a19c89c 100644 --- a/tests/intel/i915_module_load.c +++ b/tests/intel/i915_module_load.c @@ -157,7 +157,7 @@ static void store_all(int i915) batch[value] = nengine; execbuf.flags = e->flags; - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; execbuf.flags |= I915_EXEC_NO_RELOC | I915_EXEC_HANDLE_LUT; execbuf.rsvd1 = ctx->id; diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c index 932058d2cd97..d15ea906ff7b 100644 --- a/tests/prime_vgem.c +++ b/tests/prime_vgem.c @@ -622,7 +622,7 @@ static void work(int i915, uint64_t ahnd, uint64_t scratch_offset, int dmabuf, execbuf.buffers_ptr = (uintptr_t)obj; execbuf.buffer_count = 2; execbuf.flags = ring; - if (gen < 6) + if (gem_store_dword_needs_secure(i915)) execbuf.flags |= I915_EXEC_SECURE; execbuf.rsvd1 = ctx->id; -- 2.45.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks 2024-10-02 10:45 ` [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks Ville Syrjala @ 2024-10-02 14:43 ` Kamil Konieczny 2024-10-08 21:27 ` Ville Syrjälä 0 siblings, 1 reply; 19+ messages in thread From: Kamil Konieczny @ 2024-10-02 14:43 UTC (permalink / raw) To: igt-dev; +Cc: Ville Syrjala Hi Ville, On 2024-10-02 at 13:45:13 +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > A bunch of tests use a 'gen<6' check to determine if > MI_STORE_DWORD needs a secure batch or not. Other places > have a more correct check written in different styles. > Unify all of it to use a common helper. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/igt_dummyload.c | 2 +- > lib/igt_gt.c | 20 ++++++++++++++++++++ > lib/igt_gt.h | 1 + > lib/igt_store.c | 2 +- > tests/intel/gem_ctx_shared.c | 4 ++-- > tests/intel/gem_exec_async.c | 2 +- > tests/intel/gem_exec_capture.c | 9 +++------ > tests/intel/gem_exec_fence.c | 4 ++-- > tests/intel/gem_exec_flush.c | 4 ++-- > tests/intel/gem_exec_gttfill.c | 2 +- > tests/intel/gem_exec_nop.c | 4 ++-- > tests/intel/gem_exec_parallel.c | 2 +- > tests/intel/gem_exec_params.c | 2 +- > tests/intel/gem_exec_reloc.c | 8 +++++--- > tests/intel/gem_exec_schedule.c | 4 ++-- > tests/intel/gem_exec_store.c | 16 ++++++---------- > tests/intel/gem_exec_suspend.c | 2 +- > tests/intel/gem_exec_whisper.c | 2 +- > tests/intel/gem_ringfill.c | 2 +- > tests/intel/gem_softpin.c | 4 ++-- > tests/intel/gem_sync.c | 8 ++++---- > tests/intel/gem_userptr_blits.c | 4 ++-- > tests/intel/i915_module_load.c | 2 +- > tests/prime_vgem.c | 2 +- > 24 files changed, 64 insertions(+), 48 deletions(-) > > diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c > index a9a2de077698..3cf80b762921 100644 > --- a/lib/igt_dummyload.c > +++ b/lib/igt_dummyload.c > @@ -217,7 +217,7 @@ emit_recursive_batch(igt_spin_t *spin, > } else if (opts->flags & IGT_SPIN_POLL_RUN) { > igt_assert(!opts->dependency); > > - if (gen == 4 || gen == 5) { > + if (gem_store_dword_needs_secure(fd)) { > execbuf->flags |= I915_EXEC_SECURE; > igt_require(__igt_device_set_master(fd) == 0); > } > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > index 331783e49acf..a1075e8bbed1 100644 > --- a/lib/igt_gt.c > +++ b/lib/igt_gt.c > @@ -691,6 +691,26 @@ bool gem_can_store_dword(int fd, unsigned int engine) > gem_execbuf_flags_to_engine_class(engine)); > } > > +/** > + * gem_store_dword_needs_secure: > + * @fd: open i915 drm file descriptor > + * > + * Does the MI_STORE_DWORD need to be executed from a secure batch? Imho better write a statement, not a question, so: * True if the MI_STORE_DWORD needs to be executed from a secure batch > + */ > +bool gem_store_dword_needs_secure(int fd) > +{ > + const struct intel_device_info *info = > + intel_get_device_info(intel_get_drm_devid(fd)); > + > + switch (info->graphics_ver) { > + case 4: > + case 5: > + return true; > + default: > + return false; > + } > +} > + > const struct intel_execution_engine2 intel_execution_engines2[] = { > { "rcs0", I915_ENGINE_CLASS_RENDER, 0, I915_EXEC_RENDER }, > { "bcs0", I915_ENGINE_CLASS_COPY, 0, I915_EXEC_BLT }, > diff --git a/lib/igt_gt.h b/lib/igt_gt.h > index 4a67cd9f038e..d3213123d6ac 100644 > --- a/lib/igt_gt.h > +++ b/lib/igt_gt.h > @@ -76,6 +76,7 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd); > > bool gem_can_store_dword(int fd, unsigned int engine); > bool gem_class_can_store_dword(int fd, int class); > +bool gem_store_dword_needs_secure(int fd); > > extern const struct intel_execution_engine2 { > char name[16]; > diff --git a/lib/igt_store.c b/lib/igt_store.c > index 538405e7f594..42ffdc5cdbe4 100644 > --- a/lib/igt_store.c > +++ b/lib/igt_store.c > @@ -48,7 +48,7 @@ void igt_store_word(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > execbuf.flags |= I915_EXEC_FENCE_IN; > execbuf.rsvd2 = fence; > } > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; What about just one function returning this flag or zero? So it would be used like: execbuf.flags |= gem_store_dword_secure_batch(fd); Even less code. > > memset(obj, 0, sizeof(obj)); > diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c > index de06f2d54876..4b9d604f6732 100644 > --- a/tests/intel/gem_ctx_shared.c > +++ b/tests/intel/gem_ctx_shared.c > @@ -366,7 +366,7 @@ static void exec_shared_gtt(int i915, const intel_ctx_cfg_t *cfg, > obj.handle = batch; > obj.offset += 8192; /* make sure we don't cause an eviction! */ > execbuf.rsvd1 = ctx[1]->id; > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > gem_execbuf(i915, &execbuf); > > @@ -567,7 +567,7 @@ static void store_dword(int i915, uint64_t ahnd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = to_user_pointer(obj + !cork); > execbuf.buffer_count = 2 + !!cork; > execbuf.flags = ring; > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_exec_async.c b/tests/intel/gem_exec_async.c > index 573157add648..6d739307cfe6 100644 > --- a/tests/intel/gem_exec_async.c > +++ b/tests/intel/gem_exec_async.c > @@ -56,7 +56,7 @@ static void store_dword(int fd, int id, const intel_ctx_t *ctx, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > execbuf.flags = ring; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_exec_capture.c b/tests/intel/gem_exec_capture.c > index 2340ad49520e..37c1f7255046 100644 > --- a/tests/intel/gem_exec_capture.c > +++ b/tests/intel/gem_exec_capture.c > @@ -396,7 +396,7 @@ static void __capture1(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = (uintptr_t)obj; > execbuf.buffer_count = ARRAY_SIZE(obj); > execbuf.flags = e->flags; > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.flags |= I915_EXEC_FENCE_OUT; > execbuf.rsvd1 = ctx->id; > @@ -586,7 +586,7 @@ __captureN(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = (uintptr_t)obj; > execbuf.buffer_count = count + 2; > execbuf.flags = e->flags; > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.flags |= I915_EXEC_FENCE_OUT; > execbuf.rsvd1 = ctx->id; > @@ -968,12 +968,9 @@ igt_main > uint32_t region; > > igt_fixture { > - int gen; > - > fd = drm_open_driver(DRIVER_INTEL); > > - gen = intel_gen(intel_get_drm_devid(fd)); > - if (gen > 3 && gen < 6) /* ctg and ilk need secure batches */ > + if (gem_store_dword_needs_secure(fd)) > igt_device_set_master(fd); > > igt_require_gem(fd); > diff --git a/tests/intel/gem_exec_fence.c b/tests/intel/gem_exec_fence.c > index 7f39c73d72fa..c3c462b77dc4 100644 > --- a/tests/intel/gem_exec_fence.c > +++ b/tests/intel/gem_exec_fence.c > @@ -796,7 +796,7 @@ static void test_parallel(int i915, const intel_ctx_t *ctx, > batch[++i] = MI_BATCH_BUFFER_END; > gem_write(i915, obj[1].handle, 0, batch, sizeof(batch)); > > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > > gem_execbuf(i915, &execbuf); > @@ -919,7 +919,7 @@ static void test_concurrent(int i915, const intel_ctx_t *ctx, > tmp_ctx = intel_ctx_create(i915, &ctx->cfg); > execbuf.rsvd1 = tmp_ctx->id; > execbuf.rsvd2 = spin->out_fence; > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > > gem_execbuf(i915, &execbuf); > diff --git a/tests/intel/gem_exec_flush.c b/tests/intel/gem_exec_flush.c > index 795be929c2e2..027510424b06 100644 > --- a/tests/intel/gem_exec_flush.c > +++ b/tests/intel/gem_exec_flush.c > @@ -1668,7 +1668,7 @@ static void run(int fd, unsigned ring, int nchild, int timeout, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 3; > execbuf.flags = ring | (1 << 12); > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > obj[1].handle = gem_create(fd, 1024*64); > @@ -1915,7 +1915,7 @@ static void batch(int fd, unsigned ring, int nchild, int timeout, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > execbuf.flags = ring | (1 << 12); > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > obj[1].handle = gem_create(fd, 64<<10); > diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c > index 3f05017772af..59a3679fec07 100644 > --- a/tests/intel/gem_exec_gttfill.c > +++ b/tests/intel/gem_exec_gttfill.c > @@ -187,7 +187,7 @@ static void fillgtt(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout) > > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffer_count = 1; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_exec_nop.c b/tests/intel/gem_exec_nop.c > index 1b20cc870187..652f8deffc3d 100644 > --- a/tests/intel/gem_exec_nop.c > +++ b/tests/intel/gem_exec_nop.c > @@ -165,7 +165,7 @@ static void poll_ring(int fd, const intel_ctx_t *ctx, > uint64_t elapsed; > > flags = I915_EXEC_NO_RELOC; > - if (gen == 4 || gen == 5) > + if (gem_store_dword_needs_secure(fd)) > flags |= I915_EXEC_SECURE; > > igt_require(gem_class_can_store_dword(fd, e->class)); > @@ -278,7 +278,7 @@ static void poll_sequential(int fd, const intel_ctx_t *ctx, > bool cached; > > flags = I915_EXEC_NO_RELOC; > - if (gen == 4 || gen == 5) > + if (gem_store_dword_needs_secure(fd)) > flags |= I915_EXEC_SECURE; > > nengine = 0; > diff --git a/tests/intel/gem_exec_parallel.c b/tests/intel/gem_exec_parallel.c > index 90c46bf0cb17..9817bcd0ff33 100644 > --- a/tests/intel/gem_exec_parallel.c > +++ b/tests/intel/gem_exec_parallel.c > @@ -147,7 +147,7 @@ static void *thread(void *data) > execbuf.flags = t->engine; > execbuf.flags |= I915_EXEC_HANDLE_LUT; > execbuf.flags |= I915_EXEC_NO_RELOC; > - if (t->gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > if (t->flags & (CONTEXTS | FDS)) { > tmp_ctx = intel_ctx_create(fd, &t->ctx->cfg); > diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c > index d0260d5f1ae6..382d4f6dc39d 100644 > --- a/tests/intel/gem_exec_params.c > +++ b/tests/intel/gem_exec_params.c > @@ -248,7 +248,7 @@ static void test_batch_first(int fd) > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = ARRAY_SIZE(obj); > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > /* Normal mode */ > diff --git a/tests/intel/gem_exec_reloc.c b/tests/intel/gem_exec_reloc.c > index 44c09c3e2941..d9afbe23a337 100644 > --- a/tests/intel/gem_exec_reloc.c > +++ b/tests/intel/gem_exec_reloc.c > @@ -903,7 +903,7 @@ static void active(int fd, const intel_ctx_t *ctx, unsigned engine) > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -1310,14 +1310,13 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, > uint32_t *common, int num_common, > int in, int out) > { > - const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); > int idx = flags_to_index(e); > uint64_t relocs = concurrent_relocs(i915, idx, CONCURRENT); > struct drm_i915_gem_exec_object2 obj[num_common + 2]; > struct drm_i915_gem_execbuffer2 execbuf = { > .buffers_ptr = to_user_pointer(obj), > .buffer_count = ARRAY_SIZE(obj), > - .flags = e->flags | I915_EXEC_HANDLE_LUT | (gen < 6 ? I915_EXEC_SECURE : 0), > + .flags = e->flags | I915_EXEC_HANDLE_LUT, > .rsvd1 = ctx->id, > }; > uint32_t *batch = &obj[num_common + 1].handle; > @@ -1325,6 +1324,9 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, > uint32_t *x; > int err = 0; > > + if (gem_store_dword_needs_secure(i915)) > + execbuf.flags |= I915_EXEC_SECURE; > + > memset(obj, 0, sizeof(obj)); > obj[0].handle = gem_create(i915, 64 * CONCURRENT * 4); > > diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c > index fdb7ebd702cd..84219b4cf5a9 100644 > --- a/tests/intel/gem_exec_schedule.c > +++ b/tests/intel/gem_exec_schedule.c > @@ -187,7 +187,7 @@ static uint32_t __store_dword(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = to_user_pointer(obj + !cork); > execbuf.buffer_count = 2 + !!cork; > execbuf.flags = ring; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -2342,7 +2342,7 @@ static void reorder_wide(int fd, const intel_ctx_cfg_t *cfg, unsigned ring) > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = ARRAY_SIZE(obj); > execbuf.flags = ring; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.flags |= I915_EXEC_FENCE_IN; > diff --git a/tests/intel/gem_exec_store.c b/tests/intel/gem_exec_store.c > index 3b1319519107..d64cdeb6d435 100644 > --- a/tests/intel/gem_exec_store.c > +++ b/tests/intel/gem_exec_store.c > @@ -84,7 +84,7 @@ static void store_dword(int fd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > execbuf.flags = e->flags; > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -169,7 +169,7 @@ static void store_cachelines(int fd, const intel_ctx_t *ctx, > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffer_count = flags & PAGES ? NCACHELINES + 1 : 2; > execbuf.flags = e->flags; > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -281,7 +281,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -414,7 +414,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) > free(reloc); > } > > -static int print_welcome(int fd) > +static void print_welcome(int fd) > { > uint16_t devid = intel_get_drm_devid(fd); > const struct intel_device_info *info = intel_get_device_info(devid); > @@ -430,8 +430,6 @@ static int print_welcome(int fd) > err = -errno; > igt_info("GPU operation? %s [errno=%d]\n", > err == 0 ? "yes" : "no", err); > - > - return info->graphics_ver; > } Why do you changed this? Seems unrelated. > > #define test_each_engine(T, i915, ctx, e) \ > @@ -446,12 +444,10 @@ igt_main > int fd; > > igt_fixture { > - int gen; > - > fd = drm_open_driver(DRIVER_INTEL); > > - gen = print_welcome(fd); Even if you do not need it here it will look cleaner in a follow up patch. Rest looks ok. Regards, Kamil > - if (gen > 3 && gen < 6) /* ctg and ilk need secure batches */ > + print_welcome(fd); > + if (gem_store_dword_needs_secure(fd)) > igt_device_set_master(fd); > > igt_require_gem(fd); > diff --git a/tests/intel/gem_exec_suspend.c b/tests/intel/gem_exec_suspend.c > index 0d08e8e4428f..646c219588e4 100644 > --- a/tests/intel/gem_exec_suspend.c > +++ b/tests/intel/gem_exec_suspend.c > @@ -176,7 +176,7 @@ static void run_test(int fd, const intel_ctx_t *ctx, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = 2; > execbuf.flags = 1 << 11; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_exec_whisper.c b/tests/intel/gem_exec_whisper.c > index 8d39fc0af3b6..32f7ccb2d468 100644 > --- a/tests/intel/gem_exec_whisper.c > +++ b/tests/intel/gem_exec_whisper.c > @@ -405,7 +405,7 @@ static void whisper(int fd, const intel_ctx_t *ctx, > execbuf.buffer_count = 2; > execbuf.flags = I915_EXEC_HANDLE_LUT; > execbuf.flags |= I915_EXEC_NO_RELOC; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > diff --git a/tests/intel/gem_ringfill.c b/tests/intel/gem_ringfill.c > index 298ed9c672c4..a8b9dc19cbc0 100644 > --- a/tests/intel/gem_ringfill.c > +++ b/tests/intel/gem_ringfill.c > @@ -220,7 +220,7 @@ static void setup_execbuf(int fd, const intel_ctx_t *ctx, > execbuf->buffers_ptr = to_user_pointer(obj); > execbuf->flags = ring | I915_EXEC_NO_RELOC | I915_EXEC_HANDLE_LUT; > > - if (gen > 3 && gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf->flags |= I915_EXEC_SECURE; > > execbuf->rsvd1 = ctx->id; > diff --git a/tests/intel/gem_softpin.c b/tests/intel/gem_softpin.c > index d8b99a2ae0c5..98c751439bfc 100644 > --- a/tests/intel/gem_softpin.c > +++ b/tests/intel/gem_softpin.c > @@ -712,7 +712,7 @@ static void test_noreloc(int fd, enum sleep sleep, unsigned flags) > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffers_ptr = to_user_pointer(object); > execbuf.buffer_count = 1; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > gem_execbuf(fd, &execbuf); > gem_close(fd, object[0].handle); > @@ -1072,7 +1072,7 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx, > > memset(&execbuf, 0, sizeof(execbuf)); > execbuf.buffer_count = 1; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_sync.c b/tests/intel/gem_sync.c > index 21180012c7a3..0861f41d75b1 100644 > --- a/tests/intel/gem_sync.c > +++ b/tests/intel/gem_sync.c > @@ -720,7 +720,7 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > execbuf.flags = ied_flags(&ied, child); > execbuf.flags |= I915_EXEC_NO_RELOC; > execbuf.flags |= I915_EXEC_HANDLE_LUT; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -829,7 +829,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > c->execbuf.flags = ied_flags(&ied, child); > c->execbuf.flags |= I915_EXEC_NO_RELOC; > c->execbuf.flags |= I915_EXEC_HANDLE_LUT; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > c->execbuf.flags |= I915_EXEC_SECURE; > > c->ctx = intel_ctx_create(fd, &ctx->cfg); > @@ -997,7 +997,7 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, > execbuf.flags = ring; > execbuf.flags |= I915_EXEC_NO_RELOC; > execbuf.flags |= I915_EXEC_HANDLE_LUT; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > @@ -1212,7 +1212,7 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) > execbuf.buffers_ptr = to_user_pointer(object); > execbuf.flags |= I915_EXEC_NO_RELOC; > execbuf.flags |= I915_EXEC_HANDLE_LUT; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > diff --git a/tests/intel/gem_userptr_blits.c b/tests/intel/gem_userptr_blits.c > index 67283c182647..ff076dc649b5 100644 > --- a/tests/intel/gem_userptr_blits.c > +++ b/tests/intel/gem_userptr_blits.c > @@ -463,7 +463,7 @@ static void store_dword(int fd, uint32_t target, > execbuf.buffers_ptr = to_user_pointer(obj); > execbuf.buffer_count = ARRAY_SIZE(obj); > execbuf.flags = 0; > - if (gen < 6) > + if (gem_store_dword_needs_secure(fd)) > execbuf.flags |= I915_EXEC_SECURE; > > memset(obj, 0, sizeof(obj)); > @@ -1446,7 +1446,7 @@ static void store_dword_rand(int i915, const intel_ctx_t *ctx, > exec.buffer_count = 2; > exec.buffers_ptr = to_user_pointer(obj); > exec.flags = engine; > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > exec.flags |= I915_EXEC_SECURE; > exec.rsvd1 = ctx->id; > > diff --git a/tests/intel/i915_module_load.c b/tests/intel/i915_module_load.c > index cd1ee6d10e84..b3752a19c89c 100644 > --- a/tests/intel/i915_module_load.c > +++ b/tests/intel/i915_module_load.c > @@ -157,7 +157,7 @@ static void store_all(int i915) > batch[value] = nengine; > > execbuf.flags = e->flags; > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.flags |= I915_EXEC_NO_RELOC | I915_EXEC_HANDLE_LUT; > execbuf.rsvd1 = ctx->id; > diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c > index 932058d2cd97..d15ea906ff7b 100644 > --- a/tests/prime_vgem.c > +++ b/tests/prime_vgem.c > @@ -622,7 +622,7 @@ static void work(int i915, uint64_t ahnd, uint64_t scratch_offset, int dmabuf, > execbuf.buffers_ptr = (uintptr_t)obj; > execbuf.buffer_count = 2; > execbuf.flags = ring; > - if (gen < 6) > + if (gem_store_dword_needs_secure(i915)) > execbuf.flags |= I915_EXEC_SECURE; > execbuf.rsvd1 = ctx->id; > > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks 2024-10-02 14:43 ` Kamil Konieczny @ 2024-10-08 21:27 ` Ville Syrjälä 2024-10-10 18:49 ` Ville Syrjälä 0 siblings, 1 reply; 19+ messages in thread From: Ville Syrjälä @ 2024-10-08 21:27 UTC (permalink / raw) To: Kamil Konieczny, igt-dev On Wed, Oct 02, 2024 at 04:43:48PM +0200, Kamil Konieczny wrote: > Hi Ville, > On 2024-10-02 at 13:45:13 +0300, Ville Syrjala wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > A bunch of tests use a 'gen<6' check to determine if > > MI_STORE_DWORD needs a secure batch or not. Other places > > have a more correct check written in different styles. > > Unify all of it to use a common helper. > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > --- > > lib/igt_dummyload.c | 2 +- > > lib/igt_gt.c | 20 ++++++++++++++++++++ > > lib/igt_gt.h | 1 + > > lib/igt_store.c | 2 +- > > tests/intel/gem_ctx_shared.c | 4 ++-- > > tests/intel/gem_exec_async.c | 2 +- > > tests/intel/gem_exec_capture.c | 9 +++------ > > tests/intel/gem_exec_fence.c | 4 ++-- > > tests/intel/gem_exec_flush.c | 4 ++-- > > tests/intel/gem_exec_gttfill.c | 2 +- > > tests/intel/gem_exec_nop.c | 4 ++-- > > tests/intel/gem_exec_parallel.c | 2 +- > > tests/intel/gem_exec_params.c | 2 +- > > tests/intel/gem_exec_reloc.c | 8 +++++--- > > tests/intel/gem_exec_schedule.c | 4 ++-- > > tests/intel/gem_exec_store.c | 16 ++++++---------- > > tests/intel/gem_exec_suspend.c | 2 +- > > tests/intel/gem_exec_whisper.c | 2 +- > > tests/intel/gem_ringfill.c | 2 +- > > tests/intel/gem_softpin.c | 4 ++-- > > tests/intel/gem_sync.c | 8 ++++---- > > tests/intel/gem_userptr_blits.c | 4 ++-- > > tests/intel/i915_module_load.c | 2 +- > > tests/prime_vgem.c | 2 +- > > 24 files changed, 64 insertions(+), 48 deletions(-) > > > > diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c > > index a9a2de077698..3cf80b762921 100644 > > --- a/lib/igt_dummyload.c > > +++ b/lib/igt_dummyload.c > > @@ -217,7 +217,7 @@ emit_recursive_batch(igt_spin_t *spin, > > } else if (opts->flags & IGT_SPIN_POLL_RUN) { > > igt_assert(!opts->dependency); > > > > - if (gen == 4 || gen == 5) { > > + if (gem_store_dword_needs_secure(fd)) { > > execbuf->flags |= I915_EXEC_SECURE; > > igt_require(__igt_device_set_master(fd) == 0); > > } > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > > index 331783e49acf..a1075e8bbed1 100644 > > --- a/lib/igt_gt.c > > +++ b/lib/igt_gt.c > > @@ -691,6 +691,26 @@ bool gem_can_store_dword(int fd, unsigned int engine) > > gem_execbuf_flags_to_engine_class(engine)); > > } > > > > +/** > > + * gem_store_dword_needs_secure: > > + * @fd: open i915 drm file descriptor > > + * > > + * Does the MI_STORE_DWORD need to be executed from a secure batch? > > Imho better write a statement, not a question, so: > > * True if the MI_STORE_DWORD needs to be executed from a secure batch > > > + */ > > +bool gem_store_dword_needs_secure(int fd) > > +{ > > + const struct intel_device_info *info = > > + intel_get_device_info(intel_get_drm_devid(fd)); > > + > > + switch (info->graphics_ver) { > > + case 4: > > + case 5: > > + return true; > > + default: > > + return false; > > + } > > +} > > + > > const struct intel_execution_engine2 intel_execution_engines2[] = { > > { "rcs0", I915_ENGINE_CLASS_RENDER, 0, I915_EXEC_RENDER }, > > { "bcs0", I915_ENGINE_CLASS_COPY, 0, I915_EXEC_BLT }, > > diff --git a/lib/igt_gt.h b/lib/igt_gt.h > > index 4a67cd9f038e..d3213123d6ac 100644 > > --- a/lib/igt_gt.h > > +++ b/lib/igt_gt.h > > @@ -76,6 +76,7 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd); > > > > bool gem_can_store_dword(int fd, unsigned int engine); > > bool gem_class_can_store_dword(int fd, int class); > > +bool gem_store_dword_needs_secure(int fd); > > > > extern const struct intel_execution_engine2 { > > char name[16]; > > diff --git a/lib/igt_store.c b/lib/igt_store.c > > index 538405e7f594..42ffdc5cdbe4 100644 > > --- a/lib/igt_store.c > > +++ b/lib/igt_store.c > > @@ -48,7 +48,7 @@ void igt_store_word(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > > execbuf.flags |= I915_EXEC_FENCE_IN; > > execbuf.rsvd2 = fence; > > } > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > What about just one function returning this flag or zero? > So it would be used like: > > execbuf.flags |= gem_store_dword_secure_batch(fd); > > Even less code. I suppose that'd work. Thought the name would probably need more work. gem_store_dword_exec_secure() or maybe even gem_store_dword_execbuf_flags()... > > > > > memset(obj, 0, sizeof(obj)); > > diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c > > index de06f2d54876..4b9d604f6732 100644 > > --- a/tests/intel/gem_ctx_shared.c > > +++ b/tests/intel/gem_ctx_shared.c > > @@ -366,7 +366,7 @@ static void exec_shared_gtt(int i915, const intel_ctx_cfg_t *cfg, > > obj.handle = batch; > > obj.offset += 8192; /* make sure we don't cause an eviction! */ > > execbuf.rsvd1 = ctx[1]->id; > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(i915)) > > execbuf.flags |= I915_EXEC_SECURE; > > gem_execbuf(i915, &execbuf); > > > > @@ -567,7 +567,7 @@ static void store_dword(int i915, uint64_t ahnd, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = to_user_pointer(obj + !cork); > > execbuf.buffer_count = 2 + !!cork; > > execbuf.flags = ring; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(i915)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > diff --git a/tests/intel/gem_exec_async.c b/tests/intel/gem_exec_async.c > > index 573157add648..6d739307cfe6 100644 > > --- a/tests/intel/gem_exec_async.c > > +++ b/tests/intel/gem_exec_async.c > > @@ -56,7 +56,7 @@ static void store_dword(int fd, int id, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 2; > > execbuf.flags = ring; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > diff --git a/tests/intel/gem_exec_capture.c b/tests/intel/gem_exec_capture.c > > index 2340ad49520e..37c1f7255046 100644 > > --- a/tests/intel/gem_exec_capture.c > > +++ b/tests/intel/gem_exec_capture.c > > @@ -396,7 +396,7 @@ static void __capture1(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = (uintptr_t)obj; > > execbuf.buffer_count = ARRAY_SIZE(obj); > > execbuf.flags = e->flags; > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.flags |= I915_EXEC_FENCE_OUT; > > execbuf.rsvd1 = ctx->id; > > @@ -586,7 +586,7 @@ __captureN(int fd, int dir, uint64_t ahnd, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = (uintptr_t)obj; > > execbuf.buffer_count = count + 2; > > execbuf.flags = e->flags; > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.flags |= I915_EXEC_FENCE_OUT; > > execbuf.rsvd1 = ctx->id; > > @@ -968,12 +968,9 @@ igt_main > > uint32_t region; > > > > igt_fixture { > > - int gen; > > - > > fd = drm_open_driver(DRIVER_INTEL); > > > > - gen = intel_gen(intel_get_drm_devid(fd)); > > - if (gen > 3 && gen < 6) /* ctg and ilk need secure batches */ > > + if (gem_store_dword_needs_secure(fd)) > > igt_device_set_master(fd); > > > > igt_require_gem(fd); > > diff --git a/tests/intel/gem_exec_fence.c b/tests/intel/gem_exec_fence.c > > index 7f39c73d72fa..c3c462b77dc4 100644 > > --- a/tests/intel/gem_exec_fence.c > > +++ b/tests/intel/gem_exec_fence.c > > @@ -796,7 +796,7 @@ static void test_parallel(int i915, const intel_ctx_t *ctx, > > batch[++i] = MI_BATCH_BUFFER_END; > > gem_write(i915, obj[1].handle, 0, batch, sizeof(batch)); > > > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(i915)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > gem_execbuf(i915, &execbuf); > > @@ -919,7 +919,7 @@ static void test_concurrent(int i915, const intel_ctx_t *ctx, > > tmp_ctx = intel_ctx_create(i915, &ctx->cfg); > > execbuf.rsvd1 = tmp_ctx->id; > > execbuf.rsvd2 = spin->out_fence; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(i915)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > gem_execbuf(i915, &execbuf); > > diff --git a/tests/intel/gem_exec_flush.c b/tests/intel/gem_exec_flush.c > > index 795be929c2e2..027510424b06 100644 > > --- a/tests/intel/gem_exec_flush.c > > +++ b/tests/intel/gem_exec_flush.c > > @@ -1668,7 +1668,7 @@ static void run(int fd, unsigned ring, int nchild, int timeout, > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 3; > > execbuf.flags = ring | (1 << 12); > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > obj[1].handle = gem_create(fd, 1024*64); > > @@ -1915,7 +1915,7 @@ static void batch(int fd, unsigned ring, int nchild, int timeout, > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 2; > > execbuf.flags = ring | (1 << 12); > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > obj[1].handle = gem_create(fd, 64<<10); > > diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c > > index 3f05017772af..59a3679fec07 100644 > > --- a/tests/intel/gem_exec_gttfill.c > > +++ b/tests/intel/gem_exec_gttfill.c > > @@ -187,7 +187,7 @@ static void fillgtt(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout) > > > > memset(&execbuf, 0, sizeof(execbuf)); > > execbuf.buffer_count = 1; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > diff --git a/tests/intel/gem_exec_nop.c b/tests/intel/gem_exec_nop.c > > index 1b20cc870187..652f8deffc3d 100644 > > --- a/tests/intel/gem_exec_nop.c > > +++ b/tests/intel/gem_exec_nop.c > > @@ -165,7 +165,7 @@ static void poll_ring(int fd, const intel_ctx_t *ctx, > > uint64_t elapsed; > > > > flags = I915_EXEC_NO_RELOC; > > - if (gen == 4 || gen == 5) > > + if (gem_store_dword_needs_secure(fd)) > > flags |= I915_EXEC_SECURE; > > > > igt_require(gem_class_can_store_dword(fd, e->class)); > > @@ -278,7 +278,7 @@ static void poll_sequential(int fd, const intel_ctx_t *ctx, > > bool cached; > > > > flags = I915_EXEC_NO_RELOC; > > - if (gen == 4 || gen == 5) > > + if (gem_store_dword_needs_secure(fd)) > > flags |= I915_EXEC_SECURE; > > > > nengine = 0; > > diff --git a/tests/intel/gem_exec_parallel.c b/tests/intel/gem_exec_parallel.c > > index 90c46bf0cb17..9817bcd0ff33 100644 > > --- a/tests/intel/gem_exec_parallel.c > > +++ b/tests/intel/gem_exec_parallel.c > > @@ -147,7 +147,7 @@ static void *thread(void *data) > > execbuf.flags = t->engine; > > execbuf.flags |= I915_EXEC_HANDLE_LUT; > > execbuf.flags |= I915_EXEC_NO_RELOC; > > - if (t->gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > if (t->flags & (CONTEXTS | FDS)) { > > tmp_ctx = intel_ctx_create(fd, &t->ctx->cfg); > > diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c > > index d0260d5f1ae6..382d4f6dc39d 100644 > > --- a/tests/intel/gem_exec_params.c > > +++ b/tests/intel/gem_exec_params.c > > @@ -248,7 +248,7 @@ static void test_batch_first(int fd) > > memset(&execbuf, 0, sizeof(execbuf)); > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = ARRAY_SIZE(obj); > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > /* Normal mode */ > > diff --git a/tests/intel/gem_exec_reloc.c b/tests/intel/gem_exec_reloc.c > > index 44c09c3e2941..d9afbe23a337 100644 > > --- a/tests/intel/gem_exec_reloc.c > > +++ b/tests/intel/gem_exec_reloc.c > > @@ -903,7 +903,7 @@ static void active(int fd, const intel_ctx_t *ctx, unsigned engine) > > memset(&execbuf, 0, sizeof(execbuf)); > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 2; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > @@ -1310,14 +1310,13 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, > > uint32_t *common, int num_common, > > int in, int out) > > { > > - const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); > > int idx = flags_to_index(e); > > uint64_t relocs = concurrent_relocs(i915, idx, CONCURRENT); > > struct drm_i915_gem_exec_object2 obj[num_common + 2]; > > struct drm_i915_gem_execbuffer2 execbuf = { > > .buffers_ptr = to_user_pointer(obj), > > .buffer_count = ARRAY_SIZE(obj), > > - .flags = e->flags | I915_EXEC_HANDLE_LUT | (gen < 6 ? I915_EXEC_SECURE : 0), > > + .flags = e->flags | I915_EXEC_HANDLE_LUT, > > .rsvd1 = ctx->id, > > }; > > uint32_t *batch = &obj[num_common + 1].handle; > > @@ -1325,6 +1324,9 @@ static void concurrent_child(int i915, const intel_ctx_t *ctx, > > uint32_t *x; > > int err = 0; > > > > + if (gem_store_dword_needs_secure(i915)) > > + execbuf.flags |= I915_EXEC_SECURE; > > + > > memset(obj, 0, sizeof(obj)); > > obj[0].handle = gem_create(i915, 64 * CONCURRENT * 4); > > > > diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c > > index fdb7ebd702cd..84219b4cf5a9 100644 > > --- a/tests/intel/gem_exec_schedule.c > > +++ b/tests/intel/gem_exec_schedule.c > > @@ -187,7 +187,7 @@ static uint32_t __store_dword(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = to_user_pointer(obj + !cork); > > execbuf.buffer_count = 2 + !!cork; > > execbuf.flags = ring; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > @@ -2342,7 +2342,7 @@ static void reorder_wide(int fd, const intel_ctx_cfg_t *cfg, unsigned ring) > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = ARRAY_SIZE(obj); > > execbuf.flags = ring; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > > > execbuf.flags |= I915_EXEC_FENCE_IN; > > diff --git a/tests/intel/gem_exec_store.c b/tests/intel/gem_exec_store.c > > index 3b1319519107..d64cdeb6d435 100644 > > --- a/tests/intel/gem_exec_store.c > > +++ b/tests/intel/gem_exec_store.c > > @@ -84,7 +84,7 @@ static void store_dword(int fd, const intel_ctx_t *ctx, > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 2; > > execbuf.flags = e->flags; > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > @@ -169,7 +169,7 @@ static void store_cachelines(int fd, const intel_ctx_t *ctx, > > memset(&execbuf, 0, sizeof(execbuf)); > > execbuf.buffer_count = flags & PAGES ? NCACHELINES + 1 : 2; > > execbuf.flags = e->flags; > > - if (gen > 3 && gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > @@ -281,7 +281,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) > > memset(&execbuf, 0, sizeof(execbuf)); > > execbuf.buffers_ptr = to_user_pointer(obj); > > execbuf.buffer_count = 2; > > - if (gen < 6) > > + if (gem_store_dword_needs_secure(fd)) > > execbuf.flags |= I915_EXEC_SECURE; > > execbuf.rsvd1 = ctx->id; > > > > @@ -414,7 +414,7 @@ static void store_all(int fd, const intel_ctx_t *ctx) > > free(reloc); > > } > > > > -static int print_welcome(int fd) > > +static void print_welcome(int fd) > > { > > uint16_t devid = intel_get_drm_devid(fd); > > const struct intel_device_info *info = intel_get_device_info(devid); > > @@ -430,8 +430,6 @@ static int print_welcome(int fd) > > err = -errno; > > igt_info("GPU operation? %s [errno=%d]\n", > > err == 0 ? "yes" : "no", err); > > - > > - return info->graphics_ver; > > } > > Why do you changed this? Seems unrelated. > > > > > #define test_each_engine(T, i915, ctx, e) \ > > @@ -446,12 +444,10 @@ igt_main > > int fd; > > > > igt_fixture { > > - int gen; > > - > > fd = drm_open_driver(DRIVER_INTEL); > > > > - gen = print_welcome(fd); > > Even if you do not need it here it will look cleaner > in a follow up patch. The compiler isn't happy about the unused variable. If we want to split this part it'd have to be a prep patch. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks 2024-10-08 21:27 ` Ville Syrjälä @ 2024-10-10 18:49 ` Ville Syrjälä 2024-10-11 8:42 ` Kamil Konieczny 0 siblings, 1 reply; 19+ messages in thread From: Ville Syrjälä @ 2024-10-10 18:49 UTC (permalink / raw) To: Kamil Konieczny, igt-dev On Wed, Oct 09, 2024 at 12:27:46AM +0300, Ville Syrjälä wrote: > On Wed, Oct 02, 2024 at 04:43:48PM +0200, Kamil Konieczny wrote: > > Hi Ville, > > On 2024-10-02 at 13:45:13 +0300, Ville Syrjala wrote: > > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > A bunch of tests use a 'gen<6' check to determine if > > > MI_STORE_DWORD needs a secure batch or not. Other places > > > have a more correct check written in different styles. > > > Unify all of it to use a common helper. > > > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > --- > > > lib/igt_dummyload.c | 2 +- > > > lib/igt_gt.c | 20 ++++++++++++++++++++ > > > lib/igt_gt.h | 1 + > > > lib/igt_store.c | 2 +- > > > tests/intel/gem_ctx_shared.c | 4 ++-- > > > tests/intel/gem_exec_async.c | 2 +- > > > tests/intel/gem_exec_capture.c | 9 +++------ > > > tests/intel/gem_exec_fence.c | 4 ++-- > > > tests/intel/gem_exec_flush.c | 4 ++-- > > > tests/intel/gem_exec_gttfill.c | 2 +- > > > tests/intel/gem_exec_nop.c | 4 ++-- > > > tests/intel/gem_exec_parallel.c | 2 +- > > > tests/intel/gem_exec_params.c | 2 +- > > > tests/intel/gem_exec_reloc.c | 8 +++++--- > > > tests/intel/gem_exec_schedule.c | 4 ++-- > > > tests/intel/gem_exec_store.c | 16 ++++++---------- > > > tests/intel/gem_exec_suspend.c | 2 +- > > > tests/intel/gem_exec_whisper.c | 2 +- > > > tests/intel/gem_ringfill.c | 2 +- > > > tests/intel/gem_softpin.c | 4 ++-- > > > tests/intel/gem_sync.c | 8 ++++---- > > > tests/intel/gem_userptr_blits.c | 4 ++-- > > > tests/intel/i915_module_load.c | 2 +- > > > tests/prime_vgem.c | 2 +- > > > 24 files changed, 64 insertions(+), 48 deletions(-) > > > > > > diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c > > > index a9a2de077698..3cf80b762921 100644 > > > --- a/lib/igt_dummyload.c > > > +++ b/lib/igt_dummyload.c > > > @@ -217,7 +217,7 @@ emit_recursive_batch(igt_spin_t *spin, > > > } else if (opts->flags & IGT_SPIN_POLL_RUN) { > > > igt_assert(!opts->dependency); > > > > > > - if (gen == 4 || gen == 5) { > > > + if (gem_store_dword_needs_secure(fd)) { > > > execbuf->flags |= I915_EXEC_SECURE; > > > igt_require(__igt_device_set_master(fd) == 0); > > > } > > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > > > index 331783e49acf..a1075e8bbed1 100644 > > > --- a/lib/igt_gt.c > > > +++ b/lib/igt_gt.c > > > @@ -691,6 +691,26 @@ bool gem_can_store_dword(int fd, unsigned int engine) > > > gem_execbuf_flags_to_engine_class(engine)); > > > } > > > > > > +/** > > > + * gem_store_dword_needs_secure: > > > + * @fd: open i915 drm file descriptor > > > + * > > > + * Does the MI_STORE_DWORD need to be executed from a secure batch? > > > > Imho better write a statement, not a question, so: > > > > * True if the MI_STORE_DWORD needs to be executed from a secure batch > > > > > + */ > > > +bool gem_store_dword_needs_secure(int fd) > > > +{ > > > + const struct intel_device_info *info = > > > + intel_get_device_info(intel_get_drm_devid(fd)); > > > + > > > + switch (info->graphics_ver) { > > > + case 4: > > > + case 5: > > > + return true; > > > + default: > > > + return false; > > > + } > > > +} > > > + > > > const struct intel_execution_engine2 intel_execution_engines2[] = { > > > { "rcs0", I915_ENGINE_CLASS_RENDER, 0, I915_EXEC_RENDER }, > > > { "bcs0", I915_ENGINE_CLASS_COPY, 0, I915_EXEC_BLT }, > > > diff --git a/lib/igt_gt.h b/lib/igt_gt.h > > > index 4a67cd9f038e..d3213123d6ac 100644 > > > --- a/lib/igt_gt.h > > > +++ b/lib/igt_gt.h > > > @@ -76,6 +76,7 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd); > > > > > > bool gem_can_store_dword(int fd, unsigned int engine); > > > bool gem_class_can_store_dword(int fd, int class); > > > +bool gem_store_dword_needs_secure(int fd); > > > > > > extern const struct intel_execution_engine2 { > > > char name[16]; > > > diff --git a/lib/igt_store.c b/lib/igt_store.c > > > index 538405e7f594..42ffdc5cdbe4 100644 > > > --- a/lib/igt_store.c > > > +++ b/lib/igt_store.c > > > @@ -48,7 +48,7 @@ void igt_store_word(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > > > execbuf.flags |= I915_EXEC_FENCE_IN; > > > execbuf.rsvd2 = fence; > > > } > > > - if (gen < 6) > > > + if (gem_store_dword_needs_secure(fd)) > > > execbuf.flags |= I915_EXEC_SECURE; > > > > What about just one function returning this flag or zero? > > So it would be used like: > > > > execbuf.flags |= gem_store_dword_secure_batch(fd); > > > > Even less code. > > I suppose that'd work. Thought the name would probably need > more work. gem_store_dword_exec_secure() or maybe even > gem_store_dword_execbuf_flags()... Actually it might be a bit more awkward for the cases where we do other stuff based on the result. So I think we should just go with the straightforward conversion for now, and maybe think more about further simplifications afterwards. -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks 2024-10-10 18:49 ` Ville Syrjälä @ 2024-10-11 8:42 ` Kamil Konieczny 0 siblings, 0 replies; 19+ messages in thread From: Kamil Konieczny @ 2024-10-11 8:42 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev Hi Ville, On 2024-10-10 at 21:49:55 +0300, Ville Syrjälä wrote: > On Wed, Oct 09, 2024 at 12:27:46AM +0300, Ville Syrjälä wrote: > > On Wed, Oct 02, 2024 at 04:43:48PM +0200, Kamil Konieczny wrote: > > > Hi Ville, > > > On 2024-10-02 at 13:45:13 +0300, Ville Syrjala wrote: > > > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > > > > > A bunch of tests use a 'gen<6' check to determine if > > > > MI_STORE_DWORD needs a secure batch or not. Other places > > > > have a more correct check written in different styles. > > > > Unify all of it to use a common helper. > > > > > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > --- > > > > lib/igt_dummyload.c | 2 +- > > > > lib/igt_gt.c | 20 ++++++++++++++++++++ > > > > lib/igt_gt.h | 1 + > > > > lib/igt_store.c | 2 +- > > > > tests/intel/gem_ctx_shared.c | 4 ++-- > > > > tests/intel/gem_exec_async.c | 2 +- > > > > tests/intel/gem_exec_capture.c | 9 +++------ > > > > tests/intel/gem_exec_fence.c | 4 ++-- > > > > tests/intel/gem_exec_flush.c | 4 ++-- > > > > tests/intel/gem_exec_gttfill.c | 2 +- > > > > tests/intel/gem_exec_nop.c | 4 ++-- > > > > tests/intel/gem_exec_parallel.c | 2 +- > > > > tests/intel/gem_exec_params.c | 2 +- > > > > tests/intel/gem_exec_reloc.c | 8 +++++--- > > > > tests/intel/gem_exec_schedule.c | 4 ++-- > > > > tests/intel/gem_exec_store.c | 16 ++++++---------- > > > > tests/intel/gem_exec_suspend.c | 2 +- > > > > tests/intel/gem_exec_whisper.c | 2 +- > > > > tests/intel/gem_ringfill.c | 2 +- > > > > tests/intel/gem_softpin.c | 4 ++-- > > > > tests/intel/gem_sync.c | 8 ++++---- > > > > tests/intel/gem_userptr_blits.c | 4 ++-- > > > > tests/intel/i915_module_load.c | 2 +- > > > > tests/prime_vgem.c | 2 +- > > > > 24 files changed, 64 insertions(+), 48 deletions(-) > > > > > > > > diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c > > > > index a9a2de077698..3cf80b762921 100644 > > > > --- a/lib/igt_dummyload.c > > > > +++ b/lib/igt_dummyload.c > > > > @@ -217,7 +217,7 @@ emit_recursive_batch(igt_spin_t *spin, > > > > } else if (opts->flags & IGT_SPIN_POLL_RUN) { > > > > igt_assert(!opts->dependency); > > > > > > > > - if (gen == 4 || gen == 5) { > > > > + if (gem_store_dword_needs_secure(fd)) { > > > > execbuf->flags |= I915_EXEC_SECURE; > > > > igt_require(__igt_device_set_master(fd) == 0); > > > > } > > > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > > > > index 331783e49acf..a1075e8bbed1 100644 > > > > --- a/lib/igt_gt.c > > > > +++ b/lib/igt_gt.c > > > > @@ -691,6 +691,26 @@ bool gem_can_store_dword(int fd, unsigned int engine) > > > > gem_execbuf_flags_to_engine_class(engine)); > > > > } > > > > > > > > +/** > > > > + * gem_store_dword_needs_secure: > > > > + * @fd: open i915 drm file descriptor > > > > + * > > > > + * Does the MI_STORE_DWORD need to be executed from a secure batch? > > > > > > Imho better write a statement, not a question, so: > > > > > > * True if the MI_STORE_DWORD needs to be executed from a secure batch > > > > > > > + */ > > > > +bool gem_store_dword_needs_secure(int fd) > > > > +{ > > > > + const struct intel_device_info *info = > > > > + intel_get_device_info(intel_get_drm_devid(fd)); > > > > + > > > > + switch (info->graphics_ver) { > > > > + case 4: > > > > + case 5: > > > > + return true; > > > > + default: > > > > + return false; > > > > + } > > > > +} > > > > + > > > > const struct intel_execution_engine2 intel_execution_engines2[] = { > > > > { "rcs0", I915_ENGINE_CLASS_RENDER, 0, I915_EXEC_RENDER }, > > > > { "bcs0", I915_ENGINE_CLASS_COPY, 0, I915_EXEC_BLT }, > > > > diff --git a/lib/igt_gt.h b/lib/igt_gt.h > > > > index 4a67cd9f038e..d3213123d6ac 100644 > > > > --- a/lib/igt_gt.h > > > > +++ b/lib/igt_gt.h > > > > @@ -76,6 +76,7 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd); > > > > > > > > bool gem_can_store_dword(int fd, unsigned int engine); > > > > bool gem_class_can_store_dword(int fd, int class); > > > > +bool gem_store_dword_needs_secure(int fd); > > > > > > > > extern const struct intel_execution_engine2 { > > > > char name[16]; > > > > diff --git a/lib/igt_store.c b/lib/igt_store.c > > > > index 538405e7f594..42ffdc5cdbe4 100644 > > > > --- a/lib/igt_store.c > > > > +++ b/lib/igt_store.c > > > > @@ -48,7 +48,7 @@ void igt_store_word(int fd, uint64_t ahnd, const intel_ctx_t *ctx, > > > > execbuf.flags |= I915_EXEC_FENCE_IN; > > > > execbuf.rsvd2 = fence; > > > > } > > > > - if (gen < 6) > > > > + if (gem_store_dword_needs_secure(fd)) > > > > execbuf.flags |= I915_EXEC_SECURE; > > > > > > What about just one function returning this flag or zero? > > > So it would be used like: > > > > > > execbuf.flags |= gem_store_dword_secure_batch(fd); > > > > > > Even less code. > > > > I suppose that'd work. Thought the name would probably need > > more work. gem_store_dword_exec_secure() or maybe even > > gem_store_dword_execbuf_flags()... > > Actually it might be a bit more awkward for the cases where we > do other stuff based on the result. So I think we should just go > with the straightforward conversion for now, and maybe think more > about further simplifications afterwards. I agree, this is not a blocker, with a fix in description Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > -- > Ville Syrjälä > Intel ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala 2024-10-02 10:45 ` [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks Ville Syrjala @ 2024-10-02 10:45 ` Ville Syrjala 2024-10-11 8:46 ` Kamil Konieczny 2024-10-02 10:45 ` [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() Ville Syrjala ` (9 subsequent siblings) 11 siblings, 1 reply; 19+ messages in thread From: Ville Syrjala @ 2024-10-02 10:45 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> Limit the MI_STORE_DWORD secure batch usage to just g4x and ilk. i965 does not need this. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/igt_gt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index a1075e8bbed1..b8faf2b7bd09 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -704,6 +704,7 @@ bool gem_store_dword_needs_secure(int fd) switch (info->graphics_ver) { case 4: + return info->is_eaglelake || info->is_cantiga; case 5: return true; default: -- 2.45.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 2024-10-02 10:45 ` [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 Ville Syrjala @ 2024-10-11 8:46 ` Kamil Konieczny 0 siblings, 0 replies; 19+ messages in thread From: Kamil Konieczny @ 2024-10-11 8:46 UTC (permalink / raw) To: igt-dev; +Cc: Ville Syrjala Hi Ville, On 2024-10-02 at 13:45:14 +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Limit the MI_STORE_DWORD secure batch usage to just g4x and ilk. > i965 does not need this. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_gt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > index a1075e8bbed1..b8faf2b7bd09 100644 > --- a/lib/igt_gt.c > +++ b/lib/igt_gt.c > @@ -704,6 +704,7 @@ bool gem_store_dword_needs_secure(int fd) > > switch (info->graphics_ver) { > case 4: > + return info->is_eaglelake || info->is_cantiga; > case 5: > return true; > default: > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala 2024-10-02 10:45 ` [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks Ville Syrjala 2024-10-02 10:45 ` [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 Ville Syrjala @ 2024-10-02 10:45 ` Ville Syrjala 2024-10-11 8:48 ` Kamil Konieczny 2024-10-02 12:00 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() Patchwork ` (8 subsequent siblings) 11 siblings, 1 reply; 19+ messages in thread From: Ville Syrjala @ 2024-10-02 10:45 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> Add basic docs for gem_class_can_store_dword() and gem_can_store_dword(). Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/igt_gt.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index b8faf2b7bd09..a8f7f4431d1c 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -667,6 +667,13 @@ static bool gem_store_dword_needs_physical(const struct intel_device_info *info) } } +/** + * gem_class_can_store_dword: + * @fd: open i915 drm file descriptor + * @class: engine class + * + * Is the MI_STORE_DWORD instruction actually usable? + */ bool gem_class_can_store_dword(int fd, int class) { uint16_t devid = intel_get_drm_devid(fd); @@ -685,6 +692,13 @@ bool gem_class_can_store_dword(int fd, int class) return true; } +/** + * gem_can_store_dword: + * @fd: open i915 drm file descriptor + * @engine: engine + * + * Is the MI_STORE_DWORD instruction actually usable? + */ bool gem_can_store_dword(int fd, unsigned int engine) { return gem_class_can_store_dword(fd, -- 2.45.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() 2024-10-02 10:45 ` [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() Ville Syrjala @ 2024-10-11 8:48 ` Kamil Konieczny 0 siblings, 0 replies; 19+ messages in thread From: Kamil Konieczny @ 2024-10-11 8:48 UTC (permalink / raw) To: igt-dev; +Cc: Ville Syrjala Hi Ville, On 2024-10-02 at 13:45:15 +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Add basic docs for gem_class_can_store_dword() and > gem_can_store_dword(). > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/igt_gt.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > index b8faf2b7bd09..a8f7f4431d1c 100644 > --- a/lib/igt_gt.c > +++ b/lib/igt_gt.c > @@ -667,6 +667,13 @@ static bool gem_store_dword_needs_physical(const struct intel_device_info *info) > } > } > > +/** > + * gem_class_can_store_dword: > + * @fd: open i915 drm file descriptor > + * @class: engine class > + * > + * Is the MI_STORE_DWORD instruction actually usable? Same here, instead of a question just write: True if ... or Returns true if ... > + */ > bool gem_class_can_store_dword(int fd, int class) > { > uint16_t devid = intel_get_drm_devid(fd); > @@ -685,6 +692,13 @@ bool gem_class_can_store_dword(int fd, int class) > return true; > } > > +/** > + * gem_can_store_dword: > + * @fd: open i915 drm file descriptor > + * @engine: engine > + * > + * Is the MI_STORE_DWORD instruction actually usable? Same here. With this Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > + */ > bool gem_can_store_dword(int fd, unsigned int engine) > { > return gem_class_can_store_dword(fd, > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (2 preceding siblings ...) 2024-10-02 10:45 ` [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() Ville Syrjala @ 2024-10-02 12:00 ` Patchwork 2024-10-02 12:12 ` ✓ CI.xeBAT: success " Patchwork ` (7 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-02 12:00 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6874 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() URL : https://patchwork.freedesktop.org/series/139414/ State : failure == Summary == CI Bug Log - changes from IGT_8048 -> IGTPW_11854 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11854 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11854, 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_11854/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): bat-rpls-4 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11854: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@active: - fi-bsw-n3050: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/fi-bsw-n3050/igt@i915_selftest@live@active.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/fi-bsw-n3050/igt@i915_selftest@live@active.html Known issues ------------ Here are the changes found in IGTPW_11854 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-rpls-4: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-rpls-4: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@gem_tiled_pread_basic.html * igt@i915_selftest@live: - fi-bsw-n3050: [PASS][6] -> [DMESG-FAIL][7] ([i915#12172]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/fi-bsw-n3050/igt@i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/fi-bsw-n3050/igt@i915_selftest@live.html - bat-dg2-11: [PASS][8] -> [ABORT][9] ([i915#12133]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-dg2-11/igt@i915_selftest@live.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - bat-dg2-11: [PASS][10] -> [ABORT][11] ([i915#12305]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-dg2-11/igt@i915_selftest@live@active.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-dg2-11/igt@i915_selftest@live@active.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][12] -> [ABORT][13] ([i915#12216]) +1 other test abort [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-rpls-4: NOTRUN -> [SKIP][14] ([i915#4103]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-rpls-4: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#3840] / [i915#9886]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-4: NOTRUN -> [SKIP][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-rpls-4: NOTRUN -> [SKIP][17] ([i915#5354]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-rpls-4: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rpls-4: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-rpls-4: NOTRUN -> [SKIP][20] ([i915#3708]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/bat-rpls-4/igt@prime_vgem@basic-read.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12172 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8048 -> IGTPW_11854 * Linux: CI_DRM_15469 -> CI_DRM_15471 CI-20190529: 20190529 CI_DRM_15469: fcdbbdcd11d425434efc837037141c9dfb0fcdec @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15471: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11854: 55f95af91b0f3bcbdbe0668fe3dda411d53b620e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11854/index.html [-- Attachment #2: Type: text/html, Size: 7918 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (3 preceding siblings ...) 2024-10-02 12:00 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() Patchwork @ 2024-10-02 12:12 ` Patchwork 2024-10-02 13:49 ` ✗ CI.xeFULL: failure " Patchwork ` (6 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-02 12:12 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3913 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() URL : https://patchwork.freedesktop.org/series/139414/ State : success == Summary == CI Bug Log - changes from XEIGT_8048_BAT -> XEIGTPW_11854_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11854_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-2: [PASS][1] -> [FAIL][2] ([Intel XE#2754]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#2874]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][5] ([Intel XE#2871]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][7] ([Intel XE#1861]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [SKIP][9] ([Intel XE#455]) -> [PASS][10] +3 other tests pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [DMESG-FAIL][11] ([Intel XE#2871]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8048 -> IGTPW_11854 * Linux: xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec -> xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd IGTPW_11854: 55f95af91b0f3bcbdbe0668fe3dda411d53b620e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec: fcdbbdcd11d425434efc837037141c9dfb0fcdec xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/index.html [-- Attachment #2: Type: text/html, Size: 4700 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (4 preceding siblings ...) 2024-10-02 12:12 ` ✓ CI.xeBAT: success " Patchwork @ 2024-10-02 13:49 ` Patchwork 2024-10-04 10:33 ` ✗ GitLab.Pipeline: warning " Patchwork ` (5 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-02 13:49 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46936 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() URL : https://patchwork.freedesktop.org/series/139414/ State : failure == Summary == CI Bug Log - changes from XEIGT_8048_full -> XEIGTPW_11854_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11854_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11854_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_11854_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] +3 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-1/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_psr@psr2-suspend@edp-1: - shard-lnl: [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_psr@psr2-suspend@edp-1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_psr@psr2-suspend@edp-1.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system: - shard-lnl: NOTRUN -> [INCOMPLETE][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html * igt@xe_exec_reset@virtual-close-execqueues-close-fd: - shard-dg2-set2: [PASS][10] -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html * igt@xe_vm@large-split-misaligned-binds-1073741824: - shard-lnl: [PASS][12] -> [DMESG-WARN][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-3/igt@xe_vm@large-split-misaligned-binds-1073741824.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-5/igt@xe_vm@large-split-misaligned-binds-1073741824.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_joiner@basic-force-big-joiner@single: - {shard-bmg}: NOTRUN -> [FAIL][14] +2 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner@single.html * igt@xe_exec_reset@virtual-close-execqueues-close-fd: - {shard-bmg}: [PASS][15] -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-7/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-7/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html Known issues ------------ Here are the changes found in XEIGTPW_11854_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#801]) +23 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#873]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +12 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1467]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +83 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#314]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#306]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@vga-edid-read: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +10 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#307]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#307]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#599]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1188]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#308]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1413]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#1475]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [PASS][42] -> [ABORT][43] ([Intel XE#2899]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1421]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-5/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#886]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397] / [Intel XE#1745]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1401]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +32 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#651]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656]) +13 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#653]) +31 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#356]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [PASS][56] -> [DMESG-FAIL][57] ([Intel XE#324]) +1 other test dmesg-fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-hole@pipe-b-plane-2: - shard-lnl: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#324]) +1 other test dmesg-warn [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2763]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2763]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/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][62] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#870]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1122]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2893]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1489]) +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1406]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2850]) +17 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#327]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1437]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1127]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#455]) +12 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@kms_vrr@flipline.html - shard-lnl: NOTRUN -> [FAIL][73] ([Intel XE#2443]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1499] / [Intel XE#599]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#756]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1091] / [Intel XE#2849]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1123]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1062]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@xe_create@create-big-vram.html * igt@xe_eudebug_online@debugger-reopen: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2905]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2905]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][82] ([Intel XE#1473] / [Intel XE#402]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#1000]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][84] -> [TIMEOUT][85] ([Intel XE#1473]) +1 other test timeout [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#688]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#288]) +27 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#1999]) +2 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#560]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@xe_media_fill@media-fill.html * igt@xe_oa@rc6-disable: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2541]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@xe_oa@rc6-disable.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2838]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#979]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#1173]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2284]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-multiple-execs: - shard-dg2-set2: NOTRUN -> [ABORT][97] ([Intel XE#1358]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2284] / [Intel XE#366]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-mocs: - shard-lnl: [PASS][99] -> [ABORT][100] ([Intel XE#1794]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_pm@s4-mocs.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#958]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#944]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html #### Possible fixes #### * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [FAIL][104] ([Intel XE#1426]) -> [PASS][105] +1 other test pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [FAIL][106] ([Intel XE#1659]) -> [PASS][107] +2 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][108] ([Intel XE#616]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][110] ([Intel XE#1195]) -> [PASS][111] +1 other test pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - {shard-bmg}: [DMESG-WARN][112] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [FAIL][114] -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][116] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [INCOMPLETE][118] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1: - shard-lnl: [FAIL][120] ([Intel XE#886]) -> [PASS][121] +7 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html * igt@kms_plane@plane-position-covered@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][122] ([Intel XE#324]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - shard-lnl: [DMESG-FAIL][124] ([Intel XE#324]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][126] ([Intel XE#718]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [FAIL][128] -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-onoff.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-sprite-plane-move: - shard-lnl: [FAIL][130] ([Intel XE#1649]) -> [PASS][131] +1 other test pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@kms_psr@psr2-sprite-plane-move.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-1/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][132] ([Intel XE#899]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][134] ([Intel XE#2443]) -> [PASS][135] +5 other tests pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_vrr@flip-basic.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@kms_vrr@flip-basic.html * igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][136] ([Intel XE#2760]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [FAIL][138] ([Intel XE#2667]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_exec_threads@threads-mixed-rebind: - shard-lnl: [TIMEOUT][140] -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_exec_threads@threads-mixed-rebind.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@xe_exec_threads@threads-mixed-rebind.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - {shard-bmg}: [INCOMPLETE][142] -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][144] ([Intel XE#2514]) -> [PASS][145] +1 other test pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html - {shard-bmg}: [FAIL][146] ([Intel XE#2514]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-5/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: [ABORT][148] ([Intel XE#1358]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-436/igt@xe_pm@s2idle-d3hot-basic-exec.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][150] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_spin_batch@spin-batch: - {shard-bmg}: [DMESG-WARN][152] ([Intel XE#877]) -> [PASS][153] +7 other tests pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-1/igt@xe_spin_batch@spin-batch.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-1/igt@xe_spin_batch@spin-batch.html * igt@xe_waitfence@invalid-flag: - shard-lnl: [INCOMPLETE][154] -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_waitfence@invalid-flag.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-4/igt@xe_waitfence@invalid-flag.html * igt@xe_wedged@wedged-at-any-timeout: - {shard-bmg}: [FAIL][156] ([Intel XE#2780]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html - shard-lnl: [DMESG-WARN][158] ([Intel XE#1760]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html #### Warnings #### * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][160] ([Intel XE#361]) -> [SKIP][161] ([Intel XE#455]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [DMESG-FAIL][162] ([Intel XE#1620]) -> [FAIL][163] ([Intel XE#2029]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [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#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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2760 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#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#2899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2899 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#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#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8048 -> IGTPW_11854 * Linux: xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec -> xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd IGTPW_11854: 55f95af91b0f3bcbdbe0668fe3dda411d53b620e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec: fcdbbdcd11d425434efc837037141c9dfb0fcdec xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11854/index.html [-- Attachment #2: Type: text/html, Size: 49749 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (5 preceding siblings ...) 2024-10-02 13:49 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-04 10:33 ` Patchwork 2024-10-07 14:54 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) Patchwork ` (4 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-04 10:33 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() URL : https://patchwork.freedesktop.org/series/139414/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1282314 for the overview. build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/64526500): section_start:1727866374:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 55f95af9 as detached HEAD (ref is intel/IGTPW_11854)... Skipping Git submodules setup section_end:1727866380:get_sources section_start:1727866380:step_script Executing "step_script" stage of the job script Using docker image sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64:commit-55f95af91b0f3bcbdbe0668fe3dda411d53b620e with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64@sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f ... section_end:1727866383:step_script section_start:1727866383:cleanup_file_variables Cleaning up project directory and file based variables section_end:1727866386:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: container create: reading data blob size "manifest-sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f" for "7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c": size is not known (docker.go:650:1s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1282314 ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (6 preceding siblings ...) 2024-10-04 10:33 ` ✗ GitLab.Pipeline: warning " Patchwork @ 2024-10-07 14:54 ` Patchwork 2024-10-07 15:11 ` ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-07 14:54 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2388 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) URL : https://patchwork.freedesktop.org/series/139414/ State : success == Summary == CI Bug Log - changes from IGT_8054 -> IGTPW_11870 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): bat-rpls-4 Known issues ------------ Here are the changes found in IGTPW_11870 that come from known issues: ### IGT changes ### #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][1] ([i915#10341] / [i915#12133]) -> [ABORT][2] ([i915#12061] / [i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][3] ([i915#10341] / [i915#11637]) -> [ABORT][4] ([i915#12061]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8054 -> IGTPW_11870 * Linux: CI_DRM_15484 -> CI_DRM_15485 CI-20190529: 20190529 CI_DRM_15484: 92d12099cc768f36cf676ee1b014442a5c5ba965 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15485: 39a016b276ce8adac629cc6c31892d0b7d2af634 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11870: 04af752b9b7622bfe189c84e1f48b8c6909d8898 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/index.html [-- Attachment #2: Type: text/html, Size: 3239 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (7 preceding siblings ...) 2024-10-07 14:54 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) Patchwork @ 2024-10-07 15:11 ` Patchwork 2024-10-08 6:51 ` ✗ CI.xeFULL: failure " Patchwork ` (2 subsequent siblings) 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-07 15:11 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1724 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) URL : https://patchwork.freedesktop.org/series/139414/ State : success == Summary == CI Bug Log - changes from XEIGT_8054_BAT -> XEIGTPW_11870_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11870_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_gt_freq@freq_range_idle: - bat-lnl-2: [DMESG-WARN][1] ([Intel XE#1620]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11870 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634 IGTPW_11870: 04af752b9b7622bfe189c84e1f48b8c6909d8898 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/index.html [-- Attachment #2: Type: text/html, Size: 2300 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (8 preceding siblings ...) 2024-10-07 15:11 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-08 6:51 ` Patchwork 2024-10-08 12:39 ` ✗ Fi.CI.IGT: " Patchwork 2024-10-11 8:45 ` [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Kamil Konieczny 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-08 6:51 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 60991 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) URL : https://patchwork.freedesktop.org/series/139414/ State : failure == Summary == CI Bug Log - changes from XEIGT_8054_full -> XEIGTPW_11870_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11870_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11870_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_11870_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: [PASS][2] -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_legacy@torture-move@pipe-d: - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@kms_cursor_legacy@torture-move@pipe-d.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_cursor_legacy@torture-move@pipe-d.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: [PASS][7] -> [FAIL][8] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html #### Warnings #### * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][9] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][10] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][11] ([Intel XE#651]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][13] ([Intel XE#653]) -> [SKIP][14] +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][15] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-463/igt@kms_psr@pr-cursor-plane-onoff.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_psr@pr-cursor-plane-onoff.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: [SKIP][17] ([Intel XE#2833]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - {shard-bmg}: [SKIP][19] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_chamelium_hpd@dp-hpd: - {shard-bmg}: NOTRUN -> [SKIP][21] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_cursor_crc@cursor-random-512x512: - {shard-bmg}: [SKIP][22] ([Intel XE#2321]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_feature_discovery@dp-mst: - {shard-bmg}: [SKIP][24] ([Intel XE#2375]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - {shard-bmg}: NOTRUN -> [FAIL][26] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - {shard-bmg}: [PASS][27] -> [FAIL][28] [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_getfb@getfb-repeated-different-handles: - {shard-bmg}: [PASS][29] -> [SKIP][30] +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-6/igt@kms_getfb@getfb-repeated-different-handles.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-8/igt@kms_getfb@getfb-repeated-different-handles.html Known issues ------------ Here are the changes found in XEIGTPW_11870_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2134]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@fbdev@read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1466]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#316]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#1659]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#877]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-0.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1407]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +12 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2191]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1512]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#367]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +104 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#616]) +7 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#2907]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][49] ([Intel XE#1195] / [Intel XE#1727]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][50] ([Intel XE#1195]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1152]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#306]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2423] / [i915#2575]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#373]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#307]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#599]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#1188]) +1 other test fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#308]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1424]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#309]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#1475]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@torture-move: - shard-dg2-set2: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#2932]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@kms_cursor_legacy@torture-move.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_cursor_legacy@torture-move.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([i915#3804]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#776]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#703]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1138]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1138]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#1204]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#301]) +3 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1421]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [FAIL][76] ([Intel XE#886]) +4 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6: - shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#301]) +6 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#886]) +2 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +25 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +40 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#658]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1158]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +34 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1470] / [Intel XE#2853]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@zero-hdisplay: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-434/igt@kms_invalid_mode@zero-hdisplay.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#356]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-position-covered@pipe-b-plane-1: - shard-lnl: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#324]) +2 other tests dmesg-warn [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#361]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1131]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1129]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#2446]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +8 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2893]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1128]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#1649]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-2/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1406]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2948]) +3 other tests fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_psr@psr2-cursor-blt@edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#327]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1127]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1127]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1437]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#899]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#2159]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#2443]) +3 other tests fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_vrr@flip-basic.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#455]) +25 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#756]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: NOTRUN -> [FAIL][124] ([Intel XE#1050]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_compute@ccs-mode-basic.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1123]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug@read-metadata: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@xe_eudebug@read-metadata.html * igt@xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-464/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][128] -> [TIMEOUT][129] ([Intel XE#1473] / [Intel XE#402]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][130] -> [FAIL][131] ([Intel XE#1000]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#1600]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][133] ([Intel XE#1473]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [PASS][134] -> [TIMEOUT][135] ([Intel XE#1473]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#688]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1392]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_compute_mode@once-basic: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1130]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_exec_compute_mode@once-basic.html * igt@xe_exec_compute_mode@once-userptr-invalidate: - shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#2754]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@xe_exec_compute_mode@once-userptr-invalidate.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@xe_exec_compute_mode@once-userptr-invalidate.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#288]) +28 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2229]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#378]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@xe_module_load@force-load.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2541]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2248]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#977]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-432/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2838] / [Intel XE#979]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#979]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][149] ([Intel XE#1173]) +1 other test fail [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-436/igt@xe_peer2peer@read.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][150] ([Intel XE#1358]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#579]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#944]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-463/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#944]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-8/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@query-uc-fw-version-huc: - shard-dg2-set2: [PASS][154] -> [SKIP][155] ([Intel XE#1130]) +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-436/igt@xe_query@query-uc-fw-version-huc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_query@query-uc-fw-version-huc.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4: - {shard-bmg}: [DMESG-WARN][156] ([Intel XE#1033]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs: - shard-lnl: [FAIL][158] ([Intel XE#1701]) -> [PASS][159] +3 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [FAIL][160] ([Intel XE#1659]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][162] ([Intel XE#1475]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - {shard-bmg}: [FAIL][164] ([Intel XE#301]) -> [PASS][165] +3 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][166] ([Intel XE#301]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][168] ([Intel XE#1204]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] +5 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-lnl: [INCOMPLETE][172] ([Intel XE#2049]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-lnl: [FAIL][174] ([Intel XE#886]) -> [PASS][175] +4 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-1: - shard-lnl: [DMESG-FAIL][176] ([Intel XE#324]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html * igt@kms_plane@plane-position-covered@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][178] ([Intel XE#324]) -> [PASS][179] +5 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [INCOMPLETE][180] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-2/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-41: - shard-lnl: [DMESG-FAIL][182] ([Intel XE#1620]) -> [PASS][183] +1 other test pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-41.html * igt@kms_psr@psr2-cursor-plane-move: - shard-lnl: [FAIL][184] ([Intel XE#2948]) -> [PASS][185] +3 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][186] ([Intel XE#899]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [DMESG-WARN][188] -> [PASS][189] +2 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vblank@accuracy-idle.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_vblank@accuracy-idle.html * igt@kms_vrr@flip-suspend@pipe-a-edp-1: - shard-lnl: [FAIL][190] ([Intel XE#2443]) -> [PASS][191] +1 other test pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-7/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html * igt@xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-lnl: [ABORT][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-3/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][194] ([Intel XE#2136]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_module_load@reload.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-433/igt@xe_module_load@reload.html - {shard-bmg}: [FAIL][196] ([Intel XE#2136]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@xe_module_load@reload.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-bmg-4/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-lnl: [INCOMPLETE][198] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][200] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-6/igt@xe_pm@s4-basic-exec.html #### Warnings #### * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][202] ([Intel XE#316]) -> [SKIP][203] ([Intel XE#2351]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][204] ([Intel XE#2191]) -> [SKIP][205] ([Intel XE#2423] / [i915#2575]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: [SKIP][206] ([Intel XE#308]) -> [SKIP][207] ([Intel XE#2423] / [i915#2575]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][208] ([Intel XE#1137]) -> [SKIP][209] ([Intel XE#2423] / [i915#2575]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][210] ([Intel XE#324]) -> [DMESG-WARN][211] ([Intel XE#324]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-lnl-1/igt@kms_plane@plane-position-covered.html * igt@xe_eudebug@attach-debug-metadata: - shard-dg2-set2: [SKIP][212] ([Intel XE#2905]) -> [SKIP][213] ([Intel XE#1130]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@xe_eudebug@attach-debug-metadata.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][214] ([Intel XE#288]) -> [SKIP][215] ([Intel XE#1130]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][216] ([Intel XE#2360]) -> [SKIP][217] ([Intel XE#1130]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [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#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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [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#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [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#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [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#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11870 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634 IGTPW_11870: 04af752b9b7622bfe189c84e1f48b8c6909d8898 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11870/index.html [-- Attachment #2: Type: text/html, Size: 65929 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (9 preceding siblings ...) 2024-10-08 6:51 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-08 12:39 ` Patchwork 2024-10-11 8:45 ` [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Kamil Konieczny 11 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-10-08 12:39 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100311 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) URL : https://patchwork.freedesktop.org/series/139414/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15485_full -> IGTPW_11870_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11870_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11870_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11870_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a4.html Known issues ------------ Here are the changes found in IGTPW_11870_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +15 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@isolation: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@drm_fdinfo@isolation.html * igt@fbdev@eof: - shard-dg2: [PASS][13] -> [SKIP][14] ([i915#2582]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@fbdev@eof.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@fbdev@eof.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][21] ([i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: [PASS][25] -> [FAIL][26] ([i915#11980]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-1/igt@gem_ctx_persistence@hostile.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6344]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-solo: - shard-tglu: NOTRUN -> [FAIL][33] ([i915#2842]) +3 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-8/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@gem_exec_reloc@basic-write-read.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@pi-ringfull@rcs0: - shard-dg1: NOTRUN -> [FAIL][43] ([i915#12296]) +5 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@gem_exec_schedule@pi-ringfull@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][48] -> [ABORT][49] ([i915#7975] / [i915#8213]) +1 other test abort [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#2190]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@gem_partial_pwrite_pread@write-snoop.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@gem_pread@snoop.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +11 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3282] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen7_exec_parse@load-register-reg: - shard-mtlp: NOTRUN -> [SKIP][89] +10 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-5/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4881]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][96] ([i915#9820]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#7091]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8436]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][100] ([i915#2681]) +1 other test warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@i915_pm_rps@thresholds.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4215]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#8709]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8709]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#6228]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6228]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#11808] / [i915#5956]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][116] -> [FAIL][117] ([i915#5138]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190] / [i915#9197]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +12 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][125] +34 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#12313]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +24 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +173 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#12313]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#12313]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#12313]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +39 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +94 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +115 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7213]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3742]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][141] +21 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#7828]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7828]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3299]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3116]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3299]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9197]) +10 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#7116]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6944]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#7162] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#6944] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11453]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#11453]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8814]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555]) +8 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3555]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#11453]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#11453]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#9809]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-snb: [PASS][169] -> [SKIP][170] +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#9067]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9723]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3804]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1257]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-5/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8812]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9053]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-dg2: [PASS][185] -> [SKIP][186] ([i915#1849]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@kms_fbcon_fbt@fbc.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#1839]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#658]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#3966]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3637]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +7 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#8381]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][196] -> [FAIL][197] ([i915#2122]) +9 other tests fail [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8381]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-dg1: [PASS][199] -> [FAIL][200] ([i915#2122]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-12/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-mtlp: [PASS][201] -> [FAIL][202] ([i915#2122]) +1 other test fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][203] ([i915#2122]) +3 other tests fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#2587] / [i915#2672]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672] / [i915#3555]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#2672]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#2672]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2: [PASS][216] -> [SKIP][217] ([i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: [PASS][224] -> [DMESG-WARN][225] ([i915#4423]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +28 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][227] +36 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1825]) +37 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite: - shard-dg2: [PASS][229] -> [SKIP][230] ([i915#5354]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5354]) +41 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#10433] / [i915#3458]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#3458]) +15 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +22 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#5439]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][236] +99 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#1825]) +11 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#8708]) +23 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3458]) +15 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#6118]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-10/igt@kms_hdr@bpc-switch.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#10656]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#10656]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#10656]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#10656]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#10656]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#6301]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#6301]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-position-hole-dpms: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#8825]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@kms_plane@plane-position-hole-dpms.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#8821]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8821]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8821]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555]) +6 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#6953]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#8152] / [i915#9423]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#8152]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#6953]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#12247]) +10 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12247]) +8 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12247]) +7 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#3555] / [i915#8152] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d: - shard-dg2: [PASS][274] -> [SKIP][275] ([i915#12247] / [i915#8152]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247] / [i915#6953]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#12247]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#8152]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12247]) +7 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-dg2: [PASS][282] -> [SKIP][283] ([i915#12247]) +11 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a: - shard-snb: NOTRUN -> [SKIP][284] +90 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb6/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#5354]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#5978]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#3361]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][288] ([i915#9295]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [PASS][289] -> [SKIP][290] ([i915#9340]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#8430]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9519]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#9519]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#9519]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][296] -> [SKIP][297] ([i915#9519]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][298] ([i915#9519]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][299] -> [SKIP][300] ([i915#3547]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-4/igt@kms_pm_rpm@system-suspend-modeset.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#6524]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#6524] / [i915#6805]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#6524]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#6524]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [PASS][305] -> [SKIP][306] ([i915#11521]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-3/igt@kms_properties@plane-properties-legacy.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#11520]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12316]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9808]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#11520]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#11520]) +7 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#9683]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +20 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9732]) +23 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9688]) +12 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#1072] / [i915#9732]) +25 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +17 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#9685]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#5289]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#11131]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][325] ([i915#12231]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_selftest@drm_framebuffer.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][326] ([IGT#2]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#8623]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2: [PASS][328] -> [SKIP][329] ([i915#9197]) +20 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-1/igt@kms_vblank@ts-continuation-dpms-suspend.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#11920]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#9906]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-14/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][333] ([i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#9906]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#2437]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#2437]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][337] ([i915#2437]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#2437] / [i915#9412]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#2437] / [i915#9412]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-15/igt@kms_writeback@writeback-pixel-formats.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#7387]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#2435]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [PASS][343] -> [FAIL][344] ([i915#11943]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][345] -> [FAIL][346] ([i915#4349]) +4 other tests fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][347] ([i915#9351]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][348] ([i915#9351]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3291] / [i915#3708]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#3708]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#3708] / [i915#4077]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#3708] / [i915#4077]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-19/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#3708] / [i915#4077]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#3708]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3708]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][356] ([i915#3708]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9917]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9917]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][359] ([i915#9781]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-18/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][360] ([i915#7297]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [FAIL][362] ([i915#12027]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@kms: - shard-dg2: [FAIL][364] ([i915#5784]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@gem_eio@kms.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][366] -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-3/igt@gem_exec_balancer@nop.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-7/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][368] ([i915#2842]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@i915_module_load@reload-no-display: - shard-snb: [ABORT][370] ([i915#11703]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@i915_module_load@reload-no-display.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb2/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][372] ([i915#9820]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@waitboost: - shard-dg2: [FAIL][374] -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@i915_pm_rps@waitboost.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@i915_pm_rps@waitboost.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][376] ([i915#5138]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: [DMESG-WARN][378] ([i915#4423]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-12/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-rkl: [ABORT][380] ([i915#10354]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [SKIP][382] -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@forked-bo: - shard-dg1: [INCOMPLETE][384] -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-13/igt@kms_cursor_legacy@forked-bo.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg1-12/igt@kms_cursor_legacy@forked-bo.html * igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][386] ([i915#2122]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-snb1/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][388] ([i915#11961] / [i915#2122]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-tglu: [FAIL][390] ([i915#2122]) -> [PASS][391] +4 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [FAIL][392] ([i915#2122]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2: - shard-rkl: [FAIL][394] ([i915#11961]) -> [PASS][395] +2 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2: [SKIP][396] ([i915#3555]) -> [PASS][397] +2 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [SKIP][398] ([i915#5354]) -> [PASS][399] +4 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - shard-dg2: [SKIP][400] ([i915#9197]) -> [PASS][401] +15 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_plane@plane-panning-top-left: - shard-dg2: [SKIP][402] ([i915#8825]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: [SKIP][404] ([i915#7294]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [SKIP][406] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-dg2: [SKIP][408] ([i915#12247]) -> [PASS][409] +8 other tests pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-dg2: [SKIP][410] ([i915#8152] / [i915#9423]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d: - shard-dg2: [SKIP][412] ([i915#8152]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [SKIP][414] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-dg2: [SKIP][416] ([i915#12247] / [i915#8152]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][418] ([i915#4281]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: [SKIP][420] ([i915#3547]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-6/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][422] ([i915#9519]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][424] ([i915#9519]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: [SKIP][426] ([i915#11521]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-8/igt@kms_properties@plane-properties-atomic.html * igt@perf@blocking: - shard-mtlp: [FAIL][428] -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-4/igt@perf@blocking.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-mtlp-3/igt@perf@blocking.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][430] ([i915#2842]) -> [FAIL][431] ([i915#2876]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: [SKIP][432] -> [SKIP][433] ([i915#9197]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][434] ([i915#9197]) -> [SKIP][435] +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2: [SKIP][436] ([i915#5190] / [i915#9197]) -> [SKIP][437] ([i915#4538] / [i915#5190]) +3 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: [SKIP][438] ([i915#4538] / [i915#5190]) -> [SKIP][439] ([i915#5190] / [i915#9197]) +4 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][440] ([i915#12313]) -> [SKIP][441] ([i915#9197]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/shard-dg2-2/igt@kms_ccs == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11870/index.html [-- Attachment #2: Type: text/html, Size: 109082 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala ` (10 preceding siblings ...) 2024-10-08 12:39 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-10-11 8:45 ` Kamil Konieczny 11 siblings, 0 replies; 19+ messages in thread From: Kamil Konieczny @ 2024-10-11 8:45 UTC (permalink / raw) To: igt-dev; +Cc: Ville Syrjala Hi Ville, On 2024-10-02 at 13:45:12 +0300, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Extract a small helper that can determine if MI_STORE_DWORD > operates with physical addresses or not. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_gt.c | 20 +++++++++++++------- > 1 file changed, 13 insertions(+), 7 deletions(-) > > diff --git a/lib/igt_gt.c b/lib/igt_gt.c > index 9641a6610bf2..331783e49acf 100644 > --- a/lib/igt_gt.c > +++ b/lib/igt_gt.c > @@ -655,21 +655,27 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd) > return missed; > } > > +static bool gem_store_dword_needs_physical(const struct intel_device_info *info) > +{ > + switch (info->graphics_ver) { > + case 2: > + return true; > + case 3: > + return info->is_grantsdale || info->is_alviso; > + default: > + return false; > + } > +} > + > bool gem_class_can_store_dword(int fd, int class) > { > uint16_t devid = intel_get_drm_devid(fd); > const struct intel_device_info *info = intel_get_device_info(devid); > const int ver = info->graphics_ver; > > - if (ver == 0) /* unknown, assume it just works */ > - return true; > - > - if (ver <= 2) /* requires physical addresses */ > + if (gem_store_dword_needs_physical(info)) > return false; > > - if (ver == 3 && (info->is_grantsdale || info->is_alviso)) > - return false; /* only supports physical addresses */ > - > if (ver == 6 && class == I915_ENGINE_CLASS_VIDEO) > return false; /* broken, unbelievably broken */ > > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-10-11 8:48 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-02 10:45 [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Ville Syrjala 2024-10-02 10:45 ` [PATCH i-g-t 2/4] lib/intel: Unify MI_STORE_DWORD secure batch checks Ville Syrjala 2024-10-02 14:43 ` Kamil Konieczny 2024-10-08 21:27 ` Ville Syrjälä 2024-10-10 18:49 ` Ville Syrjälä 2024-10-11 8:42 ` Kamil Konieczny 2024-10-02 10:45 ` [PATCH i-g-t 3/4] lib/intel: MI_STORE_DWORD doesn't need secure batches on i965 Ville Syrjala 2024-10-11 8:46 ` Kamil Konieczny 2024-10-02 10:45 ` [PATCH i-g-t 4/4] lib/intel: Documnent gem_can_store_dword() Ville Syrjala 2024-10-11 8:48 ` Kamil Konieczny 2024-10-02 12:00 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() Patchwork 2024-10-02 12:12 ` ✓ CI.xeBAT: success " Patchwork 2024-10-02 13:49 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-04 10:33 ` ✗ GitLab.Pipeline: warning " Patchwork 2024-10-07 14:54 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/4] lib/intel: Extract gem_store_dword_needs_physical() (rev2) Patchwork 2024-10-07 15:11 ` ✓ CI.xeBAT: " Patchwork 2024-10-08 6:51 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-08 12:39 ` ✗ Fi.CI.IGT: " Patchwork 2024-10-11 8:45 ` [PATCH i-g-t 1/4] lib/intel: Extract gem_store_dword_needs_physical() Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox